diff --git a/packages/turf-rectangle-grid/LICENSE b/packages/turf-rectangle-grid/LICENSE
new file mode 100644
index 0000000000..96ce51b76f
--- /dev/null
+++ b/packages/turf-rectangle-grid/LICENSE
@@ -0,0 +1,20 @@
+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.
diff --git a/packages/turf-rectangle-grid/README.md b/packages/turf-rectangle-grid/README.md
new file mode 100644
index 0000000000..a34a53a790
--- /dev/null
+++ b/packages/turf-rectangle-grid/README.md
@@ -0,0 +1,60 @@
+# @turf/rectangle-grid
+
+
+
+## rectangleGrid
+
+Creates a grid of rectangles from a bounding box, [Feature](https://tools.ietf.org/html/rfc7946#section-3.2) or [FeatureCollection](https://tools.ietf.org/html/rfc7946#section-3.3).
+
+**Parameters**
+
+- `bbox` **[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)>** extent in [minX, minY, maxX, maxY] order
+- `cellWidth` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** of each cell, in units
+- `cellHeight` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** of each cell, in units
+- `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional parameters (optional, default `{}`)
+ - `options.units` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** units ("degrees", "radians", "miles", "kilometers") that the given cellWidth
+ and cellHeight are expressed in. Converted at the southern border. (optional, default `'kilometers'`)
+ - `options.mask` **[Feature](https://tools.ietf.org/html/rfc7946#section-3.2)<([Polygon](https://tools.ietf.org/html/rfc7946#section-3.1.6) \| [MultiPolygon](https://tools.ietf.org/html/rfc7946#section-3.1.7))>?** if passed a Polygon or MultiPolygon,
+ the grid Points will be created only inside it
+ - `options.properties` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** 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](https://tools.ietf.org/html/rfc7946#section-3.3)<[Polygon](https://tools.ietf.org/html/rfc7946#section-3.1.6)>** a grid of polygons
+
+
+
+---
+
+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/rectangle-grid
+```
+
+Or install the Turf module that includes it as a function:
+
+```sh
+$ npm install @turf/turf
+```
diff --git a/packages/turf-rectangle-grid/bench.js b/packages/turf-rectangle-grid/bench.js
new file mode 100644
index 0000000000..4fb4055436
--- /dev/null
+++ b/packages/turf-rectangle-grid/bench.js
@@ -0,0 +1,25 @@
+
+const Benchmark = require('benchmark');
+const rectangleGrid = require('./').default;
+
+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)))
+ .on('complete', () => {})
+ .run();
diff --git a/packages/turf-rectangle-grid/index.d.ts b/packages/turf-rectangle-grid/index.d.ts
new file mode 100644
index 0000000000..aa82fd9494
--- /dev/null
+++ b/packages/turf-rectangle-grid/index.d.ts
@@ -0,0 +1,11 @@
+import { BBox, Feature, FeatureCollection, MultiPolygon, Polygon, Properties, Units } from "@turf/helpers";
+
+/**
+ * http://turfjs.org/docs/#rectanglegrid
+ */
+
+export default function rectangleGrid
(bbox: BBox, cellWidth: number, cellHeight: number, options?: {
+ units?: Units;
+ properties?: P;
+ mask?: Feature | Polygon | MultiPolygon;
+}): FeatureCollection;
diff --git a/packages/turf-rectangle-grid/index.js b/packages/turf-rectangle-grid/index.js
new file mode 100644
index 0000000000..5498445234
--- /dev/null
+++ b/packages/turf-rectangle-grid/index.js
@@ -0,0 +1,77 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+var boolean_intersects_1 = require("@turf/boolean-intersects");
+var distance_1 = require("@turf/distance");
+var helpers_1 = require("@turf/helpers");
+/**
+ * Creates a grid of rectangles from a bounding box, {@link Feature} or {@link FeatureCollection}.
+ *
+ * @name rectangleGrid
+ * @param {Array} bbox extent in [minX, minY, maxX, maxY] order
+ * @param {number} cellWidth of each cell, in units
+ * @param {number} cellHeight of each cell, in units
+ * @param {Object} [options={}] Optional parameters
+ * @param {string} [options.units='kilometers'] units ("degrees", "radians", "miles", "kilometers") that the given cellWidth
+ * and cellHeight are expressed in. Converted at the southern border.
+ * @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, cellWidth, cellHeight, options) {
+ if (options === void 0) { options = {}; }
+ // Containers
+ var results = [];
+ var west = bbox[0];
+ var south = bbox[1];
+ var east = bbox[2];
+ var north = bbox[3];
+ var xFraction = cellWidth / (distance_1.default([west, south], [east, south], options));
+ var cellWidthDeg = xFraction * (east - west);
+ var yFraction = cellHeight / (distance_1.default([west, south], [west, north], options));
+ var cellHeightDeg = yFraction * (north - south);
+ // rows & columns
+ var bboxWidth = (east - west);
+ var bboxHeight = (north - south);
+ var columns = Math.floor(bboxWidth / cellWidthDeg);
+ var rows = Math.floor(bboxHeight / cellHeightDeg);
+ // if the grid does not fill the bbox perfectly, center it.
+ var deltaX = (bboxWidth - columns * cellWidthDeg) / 2;
+ var deltaY = (bboxHeight - rows * cellHeightDeg) / 2;
+ // iterate over columns & rows
+ var currentX = west + deltaX;
+ for (var column = 0; column < columns; column++) {
+ var currentY = south + deltaY;
+ for (var row = 0; row < rows; row++) {
+ var cellPoly = helpers_1.polygon([[
+ [currentX, currentY],
+ [currentX, currentY + cellHeightDeg],
+ [currentX + cellWidthDeg, currentY + cellHeightDeg],
+ [currentX + cellWidthDeg, currentY],
+ [currentX, currentY],
+ ]], options.properties);
+ if (options.mask) {
+ if (boolean_intersects_1.default(options.mask, cellPoly)) {
+ results.push(cellPoly);
+ }
+ }
+ else {
+ results.push(cellPoly);
+ }
+ currentY += cellHeightDeg;
+ }
+ currentX += cellWidthDeg;
+ }
+ return helpers_1.featureCollection(results);
+}
+exports.default = rectangleGrid;
diff --git a/packages/turf-rectangle-grid/index.ts b/packages/turf-rectangle-grid/index.ts
new file mode 100644
index 0000000000..7324cf961c
--- /dev/null
+++ b/packages/turf-rectangle-grid/index.ts
@@ -0,0 +1,86 @@
+import intersect from "@turf/boolean-intersects";
+import distance from "@turf/distance";
+import {
+ BBox, Feature, featureCollection,
+ FeatureCollection, isNumber, MultiPolygon, polygon, Polygon, Properties, Units,
+} from "@turf/helpers";
+import {getType} from "@turf/invariant";
+
+/**
+ * Creates a grid of rectangles from a bounding box, {@link Feature} or {@link FeatureCollection}.
+ *
+ * @name rectangleGrid
+ * @param {Array} bbox extent in [minX, minY, maxX, maxY] order
+ * @param {number} cellWidth of each cell, in units
+ * @param {number} cellHeight of each cell, in units
+ * @param {Object} [options={}] Optional parameters
+ * @param {string} [options.units='kilometers'] units ("degrees", "radians", "miles", "kilometers") that the given cellWidth
+ * and cellHeight are expressed in. Converted at the southern border.
+ * @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 xFraction = cellWidth / (distance([west, south], [east, south], options));
+ const cellWidthDeg = xFraction * (east - west);
+ const yFraction = cellHeight / (distance([west, south], [west, north], options));
+ const cellHeightDeg = yFraction * (north - south);
+
+ // rows & columns
+ const bboxWidth = (east - west);
+ const bboxHeight = (north - south);
+ const columns = Math.floor(bboxWidth / cellWidthDeg);
+ const rows = Math.floor(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 default rectangleGrid;
\ No newline at end of file
diff --git a/packages/turf-rectangle-grid/package.json b/packages/turf-rectangle-grid/package.json
new file mode 100644
index 0000000000..3bb8fac4d0
--- /dev/null
+++ b/packages/turf-rectangle-grid/package.json
@@ -0,0 +1,54 @@
+{
+ "name": "@turf/rectangle-grid",
+ "version": "6.0.2",
+ "description": "turf rectangle-grid module",
+ "main": "index",
+ "types": "index.d.ts",
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "scripts": {
+ "prepare": "tsc",
+ "pretest": "tsc",
+ "test": "node test.js",
+ "bench": "node bench.js",
+ "docs": "node ../../scripts/generate-readmes"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/Turfjs/turf.git"
+ },
+ "keywords": [
+ "turf",
+ "grid",
+ "regular",
+ "cartesian"
+ ],
+ "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",
+ "devDependencies": {
+ "@turf/bbox-polygon": "*",
+ "@turf/truncate": "*",
+ "@std/esm": "*",
+ "benchmark": "*",
+ "rollup": "*",
+ "write-json-file": "*",
+ "load-json-file": "*",
+ "tape": "*"
+ },
+ "dependencies": {
+ "@turf/distance": "6.x",
+ "@turf/helpers": "6.x",
+ "@turf/invariant": "6.x",
+ "@turf/boolean-intersects": "6.x"
+ }
+}
diff --git a/packages/turf-rectangle-grid/test.js b/packages/turf-rectangle-grid/test.js
new file mode 100644
index 0000000000..53871707aa
--- /dev/null
+++ b/packages/turf-rectangle-grid/test.js
@@ -0,0 +1,55 @@
+
+const fs = require('fs');
+const test = require('tape');
+const path = require('path');
+const load = require('load-json-file');
+const write = require('write-json-file');
+const bboxPoly = require('@turf/bbox-polygon').default;
+const truncate = require('@turf/truncate').default;
+const rectangleGrid = require('./').default;
+
+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: load.sync(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) write.sync(directories.out + name + '.geojson', result);
+ t.deepEqual(result, load.sync(directories.out + name + '.geojson'), name);
+ }
+ t.end();
+});
diff --git a/packages/turf-rectangle-grid/test/in/10x10-1degree.json b/packages/turf-rectangle-grid/test/in/10x10-1degree.json
new file mode 100644
index 0000000000..4348bbc315
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/in/10x10-1degree.json
@@ -0,0 +1,11 @@
+{
+ "bbox": [
+ -5.1,
+ -5.1,
+ 5.1,
+ 5.1
+ ],
+ "cellWidth": 1,
+ "cellHeight": 1,
+ "units": "degrees"
+}
\ No newline at end of file
diff --git a/packages/turf-rectangle-grid/test/in/australia-mask.json b/packages/turf-rectangle-grid/test/in/australia-mask.json
new file mode 100644
index 0000000000..ce95ad273a
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/in/australia-mask.json
@@ -0,0 +1,126 @@
+{
+ "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
+ ]
+ ]
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/turf-rectangle-grid/test/in/big-bbox-500x100-miles.json b/packages/turf-rectangle-grid/test/in/big-bbox-500x100-miles.json
new file mode 100644
index 0000000000..6a49586b1e
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/in/big-bbox-500x100-miles.json
@@ -0,0 +1,11 @@
+{
+ "bbox": [
+ -220.78125,
+ -80.64703474739618,
+ -29.53125,
+ 78.34941069014629
+ ],
+ "cellWidth": 500,
+ "cellHeight": 100,
+ "units": "miles"
+}
\ No newline at end of file
diff --git a/packages/turf-rectangle-grid/test/in/fiji-10x5-miles.json b/packages/turf-rectangle-grid/test/in/fiji-10x5-miles.json
new file mode 100644
index 0000000000..9dbae63a81
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/in/fiji-10x5-miles.json
@@ -0,0 +1,11 @@
+{
+ "bbox": [
+ -180.3460693359375,
+ -17.16703442146408,
+ -179.5770263671875,
+ -16.48349760264812
+ ],
+ "cellWidth": 10,
+ "cellHeight": 5,
+ "units": "miles"
+}
\ No newline at end of file
diff --git a/packages/turf-rectangle-grid/test/in/victoria-20x100-km.json b/packages/turf-rectangle-grid/test/in/victoria-20x100-km.json
new file mode 100644
index 0000000000..8cfd44ac37
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/in/victoria-20x100-km.json
@@ -0,0 +1,11 @@
+{
+ "bbox": [
+ 141,
+ -34,
+ 150,
+ -39
+ ],
+ "cellWidth": 20,
+ "cellHeight": 100,
+ "units": "kilometers"
+}
\ No newline at end of file
diff --git a/packages/turf-rectangle-grid/test/out/10x10-1degree.geojson b/packages/turf-rectangle-grid/test/out/10x10-1degree.geojson
new file mode 100644
index 0000000000..16d36c9b6e
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/out/10x10-1degree.geojson
@@ -0,0 +1,3146 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ -5.005842
+ ],
+ [
+ -5.025791,
+ -4.004674
+ ],
+ [
+ -4.020633,
+ -4.004674
+ ],
+ [
+ -4.020633,
+ -5.005842
+ ],
+ [
+ -5.025791,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ -4.004674
+ ],
+ [
+ -5.025791,
+ -3.003505
+ ],
+ [
+ -4.020633,
+ -3.003505
+ ],
+ [
+ -4.020633,
+ -4.004674
+ ],
+ [
+ -5.025791,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ -3.003505
+ ],
+ [
+ -5.025791,
+ -2.002337
+ ],
+ [
+ -4.020633,
+ -2.002337
+ ],
+ [
+ -4.020633,
+ -3.003505
+ ],
+ [
+ -5.025791,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ -2.002337
+ ],
+ [
+ -5.025791,
+ -1.001168
+ ],
+ [
+ -4.020633,
+ -1.001168
+ ],
+ [
+ -4.020633,
+ -2.002337
+ ],
+ [
+ -5.025791,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ -1.001168
+ ],
+ [
+ -5.025791,
+ 0
+ ],
+ [
+ -4.020633,
+ 0
+ ],
+ [
+ -4.020633,
+ -1.001168
+ ],
+ [
+ -5.025791,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ 0
+ ],
+ [
+ -5.025791,
+ 1.001168
+ ],
+ [
+ -4.020633,
+ 1.001168
+ ],
+ [
+ -4.020633,
+ 0
+ ],
+ [
+ -5.025791,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ 1.001168
+ ],
+ [
+ -5.025791,
+ 2.002337
+ ],
+ [
+ -4.020633,
+ 2.002337
+ ],
+ [
+ -4.020633,
+ 1.001168
+ ],
+ [
+ -5.025791,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ 2.002337
+ ],
+ [
+ -5.025791,
+ 3.003505
+ ],
+ [
+ -4.020633,
+ 3.003505
+ ],
+ [
+ -4.020633,
+ 2.002337
+ ],
+ [
+ -5.025791,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ 3.003505
+ ],
+ [
+ -5.025791,
+ 4.004674
+ ],
+ [
+ -4.020633,
+ 4.004674
+ ],
+ [
+ -4.020633,
+ 3.003505
+ ],
+ [
+ -5.025791,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -5.025791,
+ 4.004674
+ ],
+ [
+ -5.025791,
+ 5.005842
+ ],
+ [
+ -4.020633,
+ 5.005842
+ ],
+ [
+ -4.020633,
+ 4.004674
+ ],
+ [
+ -5.025791,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ -5.005842
+ ],
+ [
+ -4.020633,
+ -4.004674
+ ],
+ [
+ -3.015475,
+ -4.004674
+ ],
+ [
+ -3.015475,
+ -5.005842
+ ],
+ [
+ -4.020633,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ -4.004674
+ ],
+ [
+ -4.020633,
+ -3.003505
+ ],
+ [
+ -3.015475,
+ -3.003505
+ ],
+ [
+ -3.015475,
+ -4.004674
+ ],
+ [
+ -4.020633,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ -3.003505
+ ],
+ [
+ -4.020633,
+ -2.002337
+ ],
+ [
+ -3.015475,
+ -2.002337
+ ],
+ [
+ -3.015475,
+ -3.003505
+ ],
+ [
+ -4.020633,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ -2.002337
+ ],
+ [
+ -4.020633,
+ -1.001168
+ ],
+ [
+ -3.015475,
+ -1.001168
+ ],
+ [
+ -3.015475,
+ -2.002337
+ ],
+ [
+ -4.020633,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ -1.001168
+ ],
+ [
+ -4.020633,
+ 0
+ ],
+ [
+ -3.015475,
+ 0
+ ],
+ [
+ -3.015475,
+ -1.001168
+ ],
+ [
+ -4.020633,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ 0
+ ],
+ [
+ -4.020633,
+ 1.001168
+ ],
+ [
+ -3.015475,
+ 1.001168
+ ],
+ [
+ -3.015475,
+ 0
+ ],
+ [
+ -4.020633,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ 1.001168
+ ],
+ [
+ -4.020633,
+ 2.002337
+ ],
+ [
+ -3.015475,
+ 2.002337
+ ],
+ [
+ -3.015475,
+ 1.001168
+ ],
+ [
+ -4.020633,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ 2.002337
+ ],
+ [
+ -4.020633,
+ 3.003505
+ ],
+ [
+ -3.015475,
+ 3.003505
+ ],
+ [
+ -3.015475,
+ 2.002337
+ ],
+ [
+ -4.020633,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ 3.003505
+ ],
+ [
+ -4.020633,
+ 4.004674
+ ],
+ [
+ -3.015475,
+ 4.004674
+ ],
+ [
+ -3.015475,
+ 3.003505
+ ],
+ [
+ -4.020633,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -4.020633,
+ 4.004674
+ ],
+ [
+ -4.020633,
+ 5.005842
+ ],
+ [
+ -3.015475,
+ 5.005842
+ ],
+ [
+ -3.015475,
+ 4.004674
+ ],
+ [
+ -4.020633,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ -5.005842
+ ],
+ [
+ -3.015475,
+ -4.004674
+ ],
+ [
+ -2.010316,
+ -4.004674
+ ],
+ [
+ -2.010316,
+ -5.005842
+ ],
+ [
+ -3.015475,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ -4.004674
+ ],
+ [
+ -3.015475,
+ -3.003505
+ ],
+ [
+ -2.010316,
+ -3.003505
+ ],
+ [
+ -2.010316,
+ -4.004674
+ ],
+ [
+ -3.015475,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ -3.003505
+ ],
+ [
+ -3.015475,
+ -2.002337
+ ],
+ [
+ -2.010316,
+ -2.002337
+ ],
+ [
+ -2.010316,
+ -3.003505
+ ],
+ [
+ -3.015475,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ -2.002337
+ ],
+ [
+ -3.015475,
+ -1.001168
+ ],
+ [
+ -2.010316,
+ -1.001168
+ ],
+ [
+ -2.010316,
+ -2.002337
+ ],
+ [
+ -3.015475,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ -1.001168
+ ],
+ [
+ -3.015475,
+ 0
+ ],
+ [
+ -2.010316,
+ 0
+ ],
+ [
+ -2.010316,
+ -1.001168
+ ],
+ [
+ -3.015475,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ 0
+ ],
+ [
+ -3.015475,
+ 1.001168
+ ],
+ [
+ -2.010316,
+ 1.001168
+ ],
+ [
+ -2.010316,
+ 0
+ ],
+ [
+ -3.015475,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ 1.001168
+ ],
+ [
+ -3.015475,
+ 2.002337
+ ],
+ [
+ -2.010316,
+ 2.002337
+ ],
+ [
+ -2.010316,
+ 1.001168
+ ],
+ [
+ -3.015475,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ 2.002337
+ ],
+ [
+ -3.015475,
+ 3.003505
+ ],
+ [
+ -2.010316,
+ 3.003505
+ ],
+ [
+ -2.010316,
+ 2.002337
+ ],
+ [
+ -3.015475,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ 3.003505
+ ],
+ [
+ -3.015475,
+ 4.004674
+ ],
+ [
+ -2.010316,
+ 4.004674
+ ],
+ [
+ -2.010316,
+ 3.003505
+ ],
+ [
+ -3.015475,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -3.015475,
+ 4.004674
+ ],
+ [
+ -3.015475,
+ 5.005842
+ ],
+ [
+ -2.010316,
+ 5.005842
+ ],
+ [
+ -2.010316,
+ 4.004674
+ ],
+ [
+ -3.015475,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ -5.005842
+ ],
+ [
+ -2.010316,
+ -4.004674
+ ],
+ [
+ -1.005158,
+ -4.004674
+ ],
+ [
+ -1.005158,
+ -5.005842
+ ],
+ [
+ -2.010316,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ -4.004674
+ ],
+ [
+ -2.010316,
+ -3.003505
+ ],
+ [
+ -1.005158,
+ -3.003505
+ ],
+ [
+ -1.005158,
+ -4.004674
+ ],
+ [
+ -2.010316,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ -3.003505
+ ],
+ [
+ -2.010316,
+ -2.002337
+ ],
+ [
+ -1.005158,
+ -2.002337
+ ],
+ [
+ -1.005158,
+ -3.003505
+ ],
+ [
+ -2.010316,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ -2.002337
+ ],
+ [
+ -2.010316,
+ -1.001168
+ ],
+ [
+ -1.005158,
+ -1.001168
+ ],
+ [
+ -1.005158,
+ -2.002337
+ ],
+ [
+ -2.010316,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ -1.001168
+ ],
+ [
+ -2.010316,
+ 0
+ ],
+ [
+ -1.005158,
+ 0
+ ],
+ [
+ -1.005158,
+ -1.001168
+ ],
+ [
+ -2.010316,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ 0
+ ],
+ [
+ -2.010316,
+ 1.001168
+ ],
+ [
+ -1.005158,
+ 1.001168
+ ],
+ [
+ -1.005158,
+ 0
+ ],
+ [
+ -2.010316,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ 1.001168
+ ],
+ [
+ -2.010316,
+ 2.002337
+ ],
+ [
+ -1.005158,
+ 2.002337
+ ],
+ [
+ -1.005158,
+ 1.001168
+ ],
+ [
+ -2.010316,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ 2.002337
+ ],
+ [
+ -2.010316,
+ 3.003505
+ ],
+ [
+ -1.005158,
+ 3.003505
+ ],
+ [
+ -1.005158,
+ 2.002337
+ ],
+ [
+ -2.010316,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ 3.003505
+ ],
+ [
+ -2.010316,
+ 4.004674
+ ],
+ [
+ -1.005158,
+ 4.004674
+ ],
+ [
+ -1.005158,
+ 3.003505
+ ],
+ [
+ -2.010316,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -2.010316,
+ 4.004674
+ ],
+ [
+ -2.010316,
+ 5.005842
+ ],
+ [
+ -1.005158,
+ 5.005842
+ ],
+ [
+ -1.005158,
+ 4.004674
+ ],
+ [
+ -2.010316,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ -5.005842
+ ],
+ [
+ -1.005158,
+ -4.004674
+ ],
+ [
+ 0,
+ -4.004674
+ ],
+ [
+ 0,
+ -5.005842
+ ],
+ [
+ -1.005158,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ -4.004674
+ ],
+ [
+ -1.005158,
+ -3.003505
+ ],
+ [
+ 0,
+ -3.003505
+ ],
+ [
+ 0,
+ -4.004674
+ ],
+ [
+ -1.005158,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ -3.003505
+ ],
+ [
+ -1.005158,
+ -2.002337
+ ],
+ [
+ 0,
+ -2.002337
+ ],
+ [
+ 0,
+ -3.003505
+ ],
+ [
+ -1.005158,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ -2.002337
+ ],
+ [
+ -1.005158,
+ -1.001168
+ ],
+ [
+ 0,
+ -1.001168
+ ],
+ [
+ 0,
+ -2.002337
+ ],
+ [
+ -1.005158,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ -1.001168
+ ],
+ [
+ -1.005158,
+ 0
+ ],
+ [
+ 0,
+ 0
+ ],
+ [
+ 0,
+ -1.001168
+ ],
+ [
+ -1.005158,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ 0
+ ],
+ [
+ -1.005158,
+ 1.001168
+ ],
+ [
+ 0,
+ 1.001168
+ ],
+ [
+ 0,
+ 0
+ ],
+ [
+ -1.005158,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ 1.001168
+ ],
+ [
+ -1.005158,
+ 2.002337
+ ],
+ [
+ 0,
+ 2.002337
+ ],
+ [
+ 0,
+ 1.001168
+ ],
+ [
+ -1.005158,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ 2.002337
+ ],
+ [
+ -1.005158,
+ 3.003505
+ ],
+ [
+ 0,
+ 3.003505
+ ],
+ [
+ 0,
+ 2.002337
+ ],
+ [
+ -1.005158,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ 3.003505
+ ],
+ [
+ -1.005158,
+ 4.004674
+ ],
+ [
+ 0,
+ 4.004674
+ ],
+ [
+ 0,
+ 3.003505
+ ],
+ [
+ -1.005158,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -1.005158,
+ 4.004674
+ ],
+ [
+ -1.005158,
+ 5.005842
+ ],
+ [
+ 0,
+ 5.005842
+ ],
+ [
+ 0,
+ 4.004674
+ ],
+ [
+ -1.005158,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ -5.005842
+ ],
+ [
+ 0,
+ -4.004674
+ ],
+ [
+ 1.005158,
+ -4.004674
+ ],
+ [
+ 1.005158,
+ -5.005842
+ ],
+ [
+ 0,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ -4.004674
+ ],
+ [
+ 0,
+ -3.003505
+ ],
+ [
+ 1.005158,
+ -3.003505
+ ],
+ [
+ 1.005158,
+ -4.004674
+ ],
+ [
+ 0,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ -3.003505
+ ],
+ [
+ 0,
+ -2.002337
+ ],
+ [
+ 1.005158,
+ -2.002337
+ ],
+ [
+ 1.005158,
+ -3.003505
+ ],
+ [
+ 0,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ -2.002337
+ ],
+ [
+ 0,
+ -1.001168
+ ],
+ [
+ 1.005158,
+ -1.001168
+ ],
+ [
+ 1.005158,
+ -2.002337
+ ],
+ [
+ 0,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ -1.001168
+ ],
+ [
+ 0,
+ 0
+ ],
+ [
+ 1.005158,
+ 0
+ ],
+ [
+ 1.005158,
+ -1.001168
+ ],
+ [
+ 0,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ 0
+ ],
+ [
+ 0,
+ 1.001168
+ ],
+ [
+ 1.005158,
+ 1.001168
+ ],
+ [
+ 1.005158,
+ 0
+ ],
+ [
+ 0,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ 1.001168
+ ],
+ [
+ 0,
+ 2.002337
+ ],
+ [
+ 1.005158,
+ 2.002337
+ ],
+ [
+ 1.005158,
+ 1.001168
+ ],
+ [
+ 0,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ 2.002337
+ ],
+ [
+ 0,
+ 3.003505
+ ],
+ [
+ 1.005158,
+ 3.003505
+ ],
+ [
+ 1.005158,
+ 2.002337
+ ],
+ [
+ 0,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ 3.003505
+ ],
+ [
+ 0,
+ 4.004674
+ ],
+ [
+ 1.005158,
+ 4.004674
+ ],
+ [
+ 1.005158,
+ 3.003505
+ ],
+ [
+ 0,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 0,
+ 4.004674
+ ],
+ [
+ 0,
+ 5.005842
+ ],
+ [
+ 1.005158,
+ 5.005842
+ ],
+ [
+ 1.005158,
+ 4.004674
+ ],
+ [
+ 0,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ -5.005842
+ ],
+ [
+ 1.005158,
+ -4.004674
+ ],
+ [
+ 2.010316,
+ -4.004674
+ ],
+ [
+ 2.010316,
+ -5.005842
+ ],
+ [
+ 1.005158,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ -4.004674
+ ],
+ [
+ 1.005158,
+ -3.003505
+ ],
+ [
+ 2.010316,
+ -3.003505
+ ],
+ [
+ 2.010316,
+ -4.004674
+ ],
+ [
+ 1.005158,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ -3.003505
+ ],
+ [
+ 1.005158,
+ -2.002337
+ ],
+ [
+ 2.010316,
+ -2.002337
+ ],
+ [
+ 2.010316,
+ -3.003505
+ ],
+ [
+ 1.005158,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ -2.002337
+ ],
+ [
+ 1.005158,
+ -1.001168
+ ],
+ [
+ 2.010316,
+ -1.001168
+ ],
+ [
+ 2.010316,
+ -2.002337
+ ],
+ [
+ 1.005158,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ -1.001168
+ ],
+ [
+ 1.005158,
+ 0
+ ],
+ [
+ 2.010316,
+ 0
+ ],
+ [
+ 2.010316,
+ -1.001168
+ ],
+ [
+ 1.005158,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ 0
+ ],
+ [
+ 1.005158,
+ 1.001168
+ ],
+ [
+ 2.010316,
+ 1.001168
+ ],
+ [
+ 2.010316,
+ 0
+ ],
+ [
+ 1.005158,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ 1.001168
+ ],
+ [
+ 1.005158,
+ 2.002337
+ ],
+ [
+ 2.010316,
+ 2.002337
+ ],
+ [
+ 2.010316,
+ 1.001168
+ ],
+ [
+ 1.005158,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ 2.002337
+ ],
+ [
+ 1.005158,
+ 3.003505
+ ],
+ [
+ 2.010316,
+ 3.003505
+ ],
+ [
+ 2.010316,
+ 2.002337
+ ],
+ [
+ 1.005158,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ 3.003505
+ ],
+ [
+ 1.005158,
+ 4.004674
+ ],
+ [
+ 2.010316,
+ 4.004674
+ ],
+ [
+ 2.010316,
+ 3.003505
+ ],
+ [
+ 1.005158,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 1.005158,
+ 4.004674
+ ],
+ [
+ 1.005158,
+ 5.005842
+ ],
+ [
+ 2.010316,
+ 5.005842
+ ],
+ [
+ 2.010316,
+ 4.004674
+ ],
+ [
+ 1.005158,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ -5.005842
+ ],
+ [
+ 2.010316,
+ -4.004674
+ ],
+ [
+ 3.015475,
+ -4.004674
+ ],
+ [
+ 3.015475,
+ -5.005842
+ ],
+ [
+ 2.010316,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ -4.004674
+ ],
+ [
+ 2.010316,
+ -3.003505
+ ],
+ [
+ 3.015475,
+ -3.003505
+ ],
+ [
+ 3.015475,
+ -4.004674
+ ],
+ [
+ 2.010316,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ -3.003505
+ ],
+ [
+ 2.010316,
+ -2.002337
+ ],
+ [
+ 3.015475,
+ -2.002337
+ ],
+ [
+ 3.015475,
+ -3.003505
+ ],
+ [
+ 2.010316,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ -2.002337
+ ],
+ [
+ 2.010316,
+ -1.001168
+ ],
+ [
+ 3.015475,
+ -1.001168
+ ],
+ [
+ 3.015475,
+ -2.002337
+ ],
+ [
+ 2.010316,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ -1.001168
+ ],
+ [
+ 2.010316,
+ 0
+ ],
+ [
+ 3.015475,
+ 0
+ ],
+ [
+ 3.015475,
+ -1.001168
+ ],
+ [
+ 2.010316,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ 0
+ ],
+ [
+ 2.010316,
+ 1.001168
+ ],
+ [
+ 3.015475,
+ 1.001168
+ ],
+ [
+ 3.015475,
+ 0
+ ],
+ [
+ 2.010316,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ 1.001168
+ ],
+ [
+ 2.010316,
+ 2.002337
+ ],
+ [
+ 3.015475,
+ 2.002337
+ ],
+ [
+ 3.015475,
+ 1.001168
+ ],
+ [
+ 2.010316,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ 2.002337
+ ],
+ [
+ 2.010316,
+ 3.003505
+ ],
+ [
+ 3.015475,
+ 3.003505
+ ],
+ [
+ 3.015475,
+ 2.002337
+ ],
+ [
+ 2.010316,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ 3.003505
+ ],
+ [
+ 2.010316,
+ 4.004674
+ ],
+ [
+ 3.015475,
+ 4.004674
+ ],
+ [
+ 3.015475,
+ 3.003505
+ ],
+ [
+ 2.010316,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 2.010316,
+ 4.004674
+ ],
+ [
+ 2.010316,
+ 5.005842
+ ],
+ [
+ 3.015475,
+ 5.005842
+ ],
+ [
+ 3.015475,
+ 4.004674
+ ],
+ [
+ 2.010316,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ -5.005842
+ ],
+ [
+ 3.015475,
+ -4.004674
+ ],
+ [
+ 4.020633,
+ -4.004674
+ ],
+ [
+ 4.020633,
+ -5.005842
+ ],
+ [
+ 3.015475,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ -4.004674
+ ],
+ [
+ 3.015475,
+ -3.003505
+ ],
+ [
+ 4.020633,
+ -3.003505
+ ],
+ [
+ 4.020633,
+ -4.004674
+ ],
+ [
+ 3.015475,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ -3.003505
+ ],
+ [
+ 3.015475,
+ -2.002337
+ ],
+ [
+ 4.020633,
+ -2.002337
+ ],
+ [
+ 4.020633,
+ -3.003505
+ ],
+ [
+ 3.015475,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ -2.002337
+ ],
+ [
+ 3.015475,
+ -1.001168
+ ],
+ [
+ 4.020633,
+ -1.001168
+ ],
+ [
+ 4.020633,
+ -2.002337
+ ],
+ [
+ 3.015475,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ -1.001168
+ ],
+ [
+ 3.015475,
+ 0
+ ],
+ [
+ 4.020633,
+ 0
+ ],
+ [
+ 4.020633,
+ -1.001168
+ ],
+ [
+ 3.015475,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ 0
+ ],
+ [
+ 3.015475,
+ 1.001168
+ ],
+ [
+ 4.020633,
+ 1.001168
+ ],
+ [
+ 4.020633,
+ 0
+ ],
+ [
+ 3.015475,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ 1.001168
+ ],
+ [
+ 3.015475,
+ 2.002337
+ ],
+ [
+ 4.020633,
+ 2.002337
+ ],
+ [
+ 4.020633,
+ 1.001168
+ ],
+ [
+ 3.015475,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ 2.002337
+ ],
+ [
+ 3.015475,
+ 3.003505
+ ],
+ [
+ 4.020633,
+ 3.003505
+ ],
+ [
+ 4.020633,
+ 2.002337
+ ],
+ [
+ 3.015475,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ 3.003505
+ ],
+ [
+ 3.015475,
+ 4.004674
+ ],
+ [
+ 4.020633,
+ 4.004674
+ ],
+ [
+ 4.020633,
+ 3.003505
+ ],
+ [
+ 3.015475,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 3.015475,
+ 4.004674
+ ],
+ [
+ 3.015475,
+ 5.005842
+ ],
+ [
+ 4.020633,
+ 5.005842
+ ],
+ [
+ 4.020633,
+ 4.004674
+ ],
+ [
+ 3.015475,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ -5.005842
+ ],
+ [
+ 4.020633,
+ -4.004674
+ ],
+ [
+ 5.025791,
+ -4.004674
+ ],
+ [
+ 5.025791,
+ -5.005842
+ ],
+ [
+ 4.020633,
+ -5.005842
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ -4.004674
+ ],
+ [
+ 4.020633,
+ -3.003505
+ ],
+ [
+ 5.025791,
+ -3.003505
+ ],
+ [
+ 5.025791,
+ -4.004674
+ ],
+ [
+ 4.020633,
+ -4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ -3.003505
+ ],
+ [
+ 4.020633,
+ -2.002337
+ ],
+ [
+ 5.025791,
+ -2.002337
+ ],
+ [
+ 5.025791,
+ -3.003505
+ ],
+ [
+ 4.020633,
+ -3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ -2.002337
+ ],
+ [
+ 4.020633,
+ -1.001168
+ ],
+ [
+ 5.025791,
+ -1.001168
+ ],
+ [
+ 5.025791,
+ -2.002337
+ ],
+ [
+ 4.020633,
+ -2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ -1.001168
+ ],
+ [
+ 4.020633,
+ 0
+ ],
+ [
+ 5.025791,
+ 0
+ ],
+ [
+ 5.025791,
+ -1.001168
+ ],
+ [
+ 4.020633,
+ -1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ 0
+ ],
+ [
+ 4.020633,
+ 1.001168
+ ],
+ [
+ 5.025791,
+ 1.001168
+ ],
+ [
+ 5.025791,
+ 0
+ ],
+ [
+ 4.020633,
+ 0
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ 1.001168
+ ],
+ [
+ 4.020633,
+ 2.002337
+ ],
+ [
+ 5.025791,
+ 2.002337
+ ],
+ [
+ 5.025791,
+ 1.001168
+ ],
+ [
+ 4.020633,
+ 1.001168
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ 2.002337
+ ],
+ [
+ 4.020633,
+ 3.003505
+ ],
+ [
+ 5.025791,
+ 3.003505
+ ],
+ [
+ 5.025791,
+ 2.002337
+ ],
+ [
+ 4.020633,
+ 2.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ 3.003505
+ ],
+ [
+ 4.020633,
+ 4.004674
+ ],
+ [
+ 5.025791,
+ 4.004674
+ ],
+ [
+ 5.025791,
+ 3.003505
+ ],
+ [
+ 4.020633,
+ 3.003505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 4.020633,
+ 4.004674
+ ],
+ [
+ 4.020633,
+ 5.005842
+ ],
+ [
+ 5.025791,
+ 5.005842
+ ],
+ [
+ 5.025791,
+ 4.004674
+ ],
+ [
+ 4.020633,
+ 4.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "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
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-rectangle-grid/test/out/australia-mask.geojson b/packages/turf-rectangle-grid/test/out/australia-mask.geojson
new file mode 100644
index 0000000000..7004711aa7
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/out/australia-mask.geojson
@@ -0,0 +1,12937 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.47488,
+ -22.997663
+ ],
+ [
+ 113.47488,
+ -25
+ ],
+ [
+ 114.476048,
+ -25
+ ],
+ [
+ 114.476048,
+ -22.997663
+ ],
+ [
+ 113.47488,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.47488,
+ -25
+ ],
+ [
+ 113.47488,
+ -27.002337
+ ],
+ [
+ 114.476048,
+ -27.002337
+ ],
+ [
+ 114.476048,
+ -25
+ ],
+ [
+ 113.47488,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.47488,
+ -27.002337
+ ],
+ [
+ 113.47488,
+ -29.004674
+ ],
+ [
+ 114.476048,
+ -29.004674
+ ],
+ [
+ 114.476048,
+ -27.002337
+ ],
+ [
+ 113.47488,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.476048,
+ -18.99299
+ ],
+ [
+ 114.476048,
+ -20.995326
+ ],
+ [
+ 115.477216,
+ -20.995326
+ ],
+ [
+ 115.477216,
+ -18.99299
+ ],
+ [
+ 114.476048,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.476048,
+ -20.995326
+ ],
+ [
+ 114.476048,
+ -22.997663
+ ],
+ [
+ 115.477216,
+ -22.997663
+ ],
+ [
+ 115.477216,
+ -20.995326
+ ],
+ [
+ 114.476048,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.476048,
+ -22.997663
+ ],
+ [
+ 114.476048,
+ -25
+ ],
+ [
+ 115.477216,
+ -25
+ ],
+ [
+ 115.477216,
+ -22.997663
+ ],
+ [
+ 114.476048,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.476048,
+ -25
+ ],
+ [
+ 114.476048,
+ -27.002337
+ ],
+ [
+ 115.477216,
+ -27.002337
+ ],
+ [
+ 115.477216,
+ -25
+ ],
+ [
+ 114.476048,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.476048,
+ -27.002337
+ ],
+ [
+ 114.476048,
+ -29.004674
+ ],
+ [
+ 115.477216,
+ -29.004674
+ ],
+ [
+ 115.477216,
+ -27.002337
+ ],
+ [
+ 114.476048,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.476048,
+ -29.004674
+ ],
+ [
+ 114.476048,
+ -31.00701
+ ],
+ [
+ 115.477216,
+ -31.00701
+ ],
+ [
+ 115.477216,
+ -29.004674
+ ],
+ [
+ 114.476048,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.476048,
+ -31.00701
+ ],
+ [
+ 114.476048,
+ -33.009347
+ ],
+ [
+ 115.477216,
+ -33.009347
+ ],
+ [
+ 115.477216,
+ -31.00701
+ ],
+ [
+ 114.476048,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 114.476048,
+ -33.009347
+ ],
+ [
+ 114.476048,
+ -35.011684
+ ],
+ [
+ 115.477216,
+ -35.011684
+ ],
+ [
+ 115.477216,
+ -33.009347
+ ],
+ [
+ 114.476048,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.477216,
+ -18.99299
+ ],
+ [
+ 115.477216,
+ -20.995326
+ ],
+ [
+ 116.478385,
+ -20.995326
+ ],
+ [
+ 116.478385,
+ -18.99299
+ ],
+ [
+ 115.477216,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.477216,
+ -20.995326
+ ],
+ [
+ 115.477216,
+ -22.997663
+ ],
+ [
+ 116.478385,
+ -22.997663
+ ],
+ [
+ 116.478385,
+ -20.995326
+ ],
+ [
+ 115.477216,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.477216,
+ -22.997663
+ ],
+ [
+ 115.477216,
+ -25
+ ],
+ [
+ 116.478385,
+ -25
+ ],
+ [
+ 116.478385,
+ -22.997663
+ ],
+ [
+ 115.477216,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.477216,
+ -25
+ ],
+ [
+ 115.477216,
+ -27.002337
+ ],
+ [
+ 116.478385,
+ -27.002337
+ ],
+ [
+ 116.478385,
+ -25
+ ],
+ [
+ 115.477216,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.477216,
+ -27.002337
+ ],
+ [
+ 115.477216,
+ -29.004674
+ ],
+ [
+ 116.478385,
+ -29.004674
+ ],
+ [
+ 116.478385,
+ -27.002337
+ ],
+ [
+ 115.477216,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.477216,
+ -29.004674
+ ],
+ [
+ 115.477216,
+ -31.00701
+ ],
+ [
+ 116.478385,
+ -31.00701
+ ],
+ [
+ 116.478385,
+ -29.004674
+ ],
+ [
+ 115.477216,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.477216,
+ -31.00701
+ ],
+ [
+ 115.477216,
+ -33.009347
+ ],
+ [
+ 116.478385,
+ -33.009347
+ ],
+ [
+ 116.478385,
+ -31.00701
+ ],
+ [
+ 115.477216,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.477216,
+ -33.009347
+ ],
+ [
+ 115.477216,
+ -35.011684
+ ],
+ [
+ 116.478385,
+ -35.011684
+ ],
+ [
+ 116.478385,
+ -33.009347
+ ],
+ [
+ 115.477216,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 115.477216,
+ -35.011684
+ ],
+ [
+ 115.477216,
+ -37.014021
+ ],
+ [
+ 116.478385,
+ -37.014021
+ ],
+ [
+ 116.478385,
+ -35.011684
+ ],
+ [
+ 115.477216,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.478385,
+ -18.99299
+ ],
+ [
+ 116.478385,
+ -20.995326
+ ],
+ [
+ 117.479553,
+ -20.995326
+ ],
+ [
+ 117.479553,
+ -18.99299
+ ],
+ [
+ 116.478385,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.478385,
+ -20.995326
+ ],
+ [
+ 116.478385,
+ -22.997663
+ ],
+ [
+ 117.479553,
+ -22.997663
+ ],
+ [
+ 117.479553,
+ -20.995326
+ ],
+ [
+ 116.478385,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.478385,
+ -22.997663
+ ],
+ [
+ 116.478385,
+ -25
+ ],
+ [
+ 117.479553,
+ -25
+ ],
+ [
+ 117.479553,
+ -22.997663
+ ],
+ [
+ 116.478385,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.478385,
+ -25
+ ],
+ [
+ 116.478385,
+ -27.002337
+ ],
+ [
+ 117.479553,
+ -27.002337
+ ],
+ [
+ 117.479553,
+ -25
+ ],
+ [
+ 116.478385,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.478385,
+ -27.002337
+ ],
+ [
+ 116.478385,
+ -29.004674
+ ],
+ [
+ 117.479553,
+ -29.004674
+ ],
+ [
+ 117.479553,
+ -27.002337
+ ],
+ [
+ 116.478385,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.478385,
+ -29.004674
+ ],
+ [
+ 116.478385,
+ -31.00701
+ ],
+ [
+ 117.479553,
+ -31.00701
+ ],
+ [
+ 117.479553,
+ -29.004674
+ ],
+ [
+ 116.478385,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.478385,
+ -31.00701
+ ],
+ [
+ 116.478385,
+ -33.009347
+ ],
+ [
+ 117.479553,
+ -33.009347
+ ],
+ [
+ 117.479553,
+ -31.00701
+ ],
+ [
+ 116.478385,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 116.478385,
+ -33.009347
+ ],
+ [
+ 116.478385,
+ -35.011684
+ ],
+ [
+ 117.479553,
+ -35.011684
+ ],
+ [
+ 117.479553,
+ -33.009347
+ ],
+ [
+ 116.478385,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.479553,
+ -18.99299
+ ],
+ [
+ 117.479553,
+ -20.995326
+ ],
+ [
+ 118.480721,
+ -20.995326
+ ],
+ [
+ 118.480721,
+ -18.99299
+ ],
+ [
+ 117.479553,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.479553,
+ -20.995326
+ ],
+ [
+ 117.479553,
+ -22.997663
+ ],
+ [
+ 118.480721,
+ -22.997663
+ ],
+ [
+ 118.480721,
+ -20.995326
+ ],
+ [
+ 117.479553,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.479553,
+ -22.997663
+ ],
+ [
+ 117.479553,
+ -25
+ ],
+ [
+ 118.480721,
+ -25
+ ],
+ [
+ 118.480721,
+ -22.997663
+ ],
+ [
+ 117.479553,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.479553,
+ -25
+ ],
+ [
+ 117.479553,
+ -27.002337
+ ],
+ [
+ 118.480721,
+ -27.002337
+ ],
+ [
+ 118.480721,
+ -25
+ ],
+ [
+ 117.479553,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.479553,
+ -27.002337
+ ],
+ [
+ 117.479553,
+ -29.004674
+ ],
+ [
+ 118.480721,
+ -29.004674
+ ],
+ [
+ 118.480721,
+ -27.002337
+ ],
+ [
+ 117.479553,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.479553,
+ -29.004674
+ ],
+ [
+ 117.479553,
+ -31.00701
+ ],
+ [
+ 118.480721,
+ -31.00701
+ ],
+ [
+ 118.480721,
+ -29.004674
+ ],
+ [
+ 117.479553,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.479553,
+ -31.00701
+ ],
+ [
+ 117.479553,
+ -33.009347
+ ],
+ [
+ 118.480721,
+ -33.009347
+ ],
+ [
+ 118.480721,
+ -31.00701
+ ],
+ [
+ 117.479553,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 117.479553,
+ -33.009347
+ ],
+ [
+ 117.479553,
+ -35.011684
+ ],
+ [
+ 118.480721,
+ -35.011684
+ ],
+ [
+ 118.480721,
+ -33.009347
+ ],
+ [
+ 117.479553,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.480721,
+ -18.99299
+ ],
+ [
+ 118.480721,
+ -20.995326
+ ],
+ [
+ 119.48189,
+ -20.995326
+ ],
+ [
+ 119.48189,
+ -18.99299
+ ],
+ [
+ 118.480721,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.480721,
+ -20.995326
+ ],
+ [
+ 118.480721,
+ -22.997663
+ ],
+ [
+ 119.48189,
+ -22.997663
+ ],
+ [
+ 119.48189,
+ -20.995326
+ ],
+ [
+ 118.480721,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.480721,
+ -22.997663
+ ],
+ [
+ 118.480721,
+ -25
+ ],
+ [
+ 119.48189,
+ -25
+ ],
+ [
+ 119.48189,
+ -22.997663
+ ],
+ [
+ 118.480721,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.480721,
+ -25
+ ],
+ [
+ 118.480721,
+ -27.002337
+ ],
+ [
+ 119.48189,
+ -27.002337
+ ],
+ [
+ 119.48189,
+ -25
+ ],
+ [
+ 118.480721,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.480721,
+ -27.002337
+ ],
+ [
+ 118.480721,
+ -29.004674
+ ],
+ [
+ 119.48189,
+ -29.004674
+ ],
+ [
+ 119.48189,
+ -27.002337
+ ],
+ [
+ 118.480721,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.480721,
+ -29.004674
+ ],
+ [
+ 118.480721,
+ -31.00701
+ ],
+ [
+ 119.48189,
+ -31.00701
+ ],
+ [
+ 119.48189,
+ -29.004674
+ ],
+ [
+ 118.480721,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.480721,
+ -31.00701
+ ],
+ [
+ 118.480721,
+ -33.009347
+ ],
+ [
+ 119.48189,
+ -33.009347
+ ],
+ [
+ 119.48189,
+ -31.00701
+ ],
+ [
+ 118.480721,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 118.480721,
+ -33.009347
+ ],
+ [
+ 118.480721,
+ -35.011684
+ ],
+ [
+ 119.48189,
+ -35.011684
+ ],
+ [
+ 119.48189,
+ -33.009347
+ ],
+ [
+ 118.480721,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.48189,
+ -18.99299
+ ],
+ [
+ 119.48189,
+ -20.995326
+ ],
+ [
+ 120.483058,
+ -20.995326
+ ],
+ [
+ 120.483058,
+ -18.99299
+ ],
+ [
+ 119.48189,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.48189,
+ -20.995326
+ ],
+ [
+ 119.48189,
+ -22.997663
+ ],
+ [
+ 120.483058,
+ -22.997663
+ ],
+ [
+ 120.483058,
+ -20.995326
+ ],
+ [
+ 119.48189,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.48189,
+ -22.997663
+ ],
+ [
+ 119.48189,
+ -25
+ ],
+ [
+ 120.483058,
+ -25
+ ],
+ [
+ 120.483058,
+ -22.997663
+ ],
+ [
+ 119.48189,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.48189,
+ -25
+ ],
+ [
+ 119.48189,
+ -27.002337
+ ],
+ [
+ 120.483058,
+ -27.002337
+ ],
+ [
+ 120.483058,
+ -25
+ ],
+ [
+ 119.48189,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.48189,
+ -27.002337
+ ],
+ [
+ 119.48189,
+ -29.004674
+ ],
+ [
+ 120.483058,
+ -29.004674
+ ],
+ [
+ 120.483058,
+ -27.002337
+ ],
+ [
+ 119.48189,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.48189,
+ -29.004674
+ ],
+ [
+ 119.48189,
+ -31.00701
+ ],
+ [
+ 120.483058,
+ -31.00701
+ ],
+ [
+ 120.483058,
+ -29.004674
+ ],
+ [
+ 119.48189,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.48189,
+ -31.00701
+ ],
+ [
+ 119.48189,
+ -33.009347
+ ],
+ [
+ 120.483058,
+ -33.009347
+ ],
+ [
+ 120.483058,
+ -31.00701
+ ],
+ [
+ 119.48189,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 119.48189,
+ -33.009347
+ ],
+ [
+ 119.48189,
+ -35.011684
+ ],
+ [
+ 120.483058,
+ -35.011684
+ ],
+ [
+ 120.483058,
+ -33.009347
+ ],
+ [
+ 119.48189,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483058,
+ -16.990653
+ ],
+ [
+ 120.483058,
+ -18.99299
+ ],
+ [
+ 121.484227,
+ -18.99299
+ ],
+ [
+ 121.484227,
+ -16.990653
+ ],
+ [
+ 120.483058,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483058,
+ -18.99299
+ ],
+ [
+ 120.483058,
+ -20.995326
+ ],
+ [
+ 121.484227,
+ -20.995326
+ ],
+ [
+ 121.484227,
+ -18.99299
+ ],
+ [
+ 120.483058,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483058,
+ -20.995326
+ ],
+ [
+ 120.483058,
+ -22.997663
+ ],
+ [
+ 121.484227,
+ -22.997663
+ ],
+ [
+ 121.484227,
+ -20.995326
+ ],
+ [
+ 120.483058,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483058,
+ -22.997663
+ ],
+ [
+ 120.483058,
+ -25
+ ],
+ [
+ 121.484227,
+ -25
+ ],
+ [
+ 121.484227,
+ -22.997663
+ ],
+ [
+ 120.483058,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483058,
+ -25
+ ],
+ [
+ 120.483058,
+ -27.002337
+ ],
+ [
+ 121.484227,
+ -27.002337
+ ],
+ [
+ 121.484227,
+ -25
+ ],
+ [
+ 120.483058,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483058,
+ -27.002337
+ ],
+ [
+ 120.483058,
+ -29.004674
+ ],
+ [
+ 121.484227,
+ -29.004674
+ ],
+ [
+ 121.484227,
+ -27.002337
+ ],
+ [
+ 120.483058,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483058,
+ -29.004674
+ ],
+ [
+ 120.483058,
+ -31.00701
+ ],
+ [
+ 121.484227,
+ -31.00701
+ ],
+ [
+ 121.484227,
+ -29.004674
+ ],
+ [
+ 120.483058,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483058,
+ -31.00701
+ ],
+ [
+ 120.483058,
+ -33.009347
+ ],
+ [
+ 121.484227,
+ -33.009347
+ ],
+ [
+ 121.484227,
+ -31.00701
+ ],
+ [
+ 120.483058,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.483058,
+ -33.009347
+ ],
+ [
+ 120.483058,
+ -35.011684
+ ],
+ [
+ 121.484227,
+ -35.011684
+ ],
+ [
+ 121.484227,
+ -33.009347
+ ],
+ [
+ 120.483058,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.484227,
+ -16.990653
+ ],
+ [
+ 121.484227,
+ -18.99299
+ ],
+ [
+ 122.485395,
+ -18.99299
+ ],
+ [
+ 122.485395,
+ -16.990653
+ ],
+ [
+ 121.484227,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.484227,
+ -18.99299
+ ],
+ [
+ 121.484227,
+ -20.995326
+ ],
+ [
+ 122.485395,
+ -20.995326
+ ],
+ [
+ 122.485395,
+ -18.99299
+ ],
+ [
+ 121.484227,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.484227,
+ -20.995326
+ ],
+ [
+ 121.484227,
+ -22.997663
+ ],
+ [
+ 122.485395,
+ -22.997663
+ ],
+ [
+ 122.485395,
+ -20.995326
+ ],
+ [
+ 121.484227,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.484227,
+ -22.997663
+ ],
+ [
+ 121.484227,
+ -25
+ ],
+ [
+ 122.485395,
+ -25
+ ],
+ [
+ 122.485395,
+ -22.997663
+ ],
+ [
+ 121.484227,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.484227,
+ -25
+ ],
+ [
+ 121.484227,
+ -27.002337
+ ],
+ [
+ 122.485395,
+ -27.002337
+ ],
+ [
+ 122.485395,
+ -25
+ ],
+ [
+ 121.484227,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.484227,
+ -27.002337
+ ],
+ [
+ 121.484227,
+ -29.004674
+ ],
+ [
+ 122.485395,
+ -29.004674
+ ],
+ [
+ 122.485395,
+ -27.002337
+ ],
+ [
+ 121.484227,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.484227,
+ -29.004674
+ ],
+ [
+ 121.484227,
+ -31.00701
+ ],
+ [
+ 122.485395,
+ -31.00701
+ ],
+ [
+ 122.485395,
+ -29.004674
+ ],
+ [
+ 121.484227,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.484227,
+ -31.00701
+ ],
+ [
+ 121.484227,
+ -33.009347
+ ],
+ [
+ 122.485395,
+ -33.009347
+ ],
+ [
+ 122.485395,
+ -31.00701
+ ],
+ [
+ 121.484227,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 121.484227,
+ -33.009347
+ ],
+ [
+ 121.484227,
+ -35.011684
+ ],
+ [
+ 122.485395,
+ -35.011684
+ ],
+ [
+ 122.485395,
+ -33.009347
+ ],
+ [
+ 121.484227,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -14.988316
+ ],
+ [
+ 122.485395,
+ -16.990653
+ ],
+ [
+ 123.486563,
+ -16.990653
+ ],
+ [
+ 123.486563,
+ -14.988316
+ ],
+ [
+ 122.485395,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -16.990653
+ ],
+ [
+ 122.485395,
+ -18.99299
+ ],
+ [
+ 123.486563,
+ -18.99299
+ ],
+ [
+ 123.486563,
+ -16.990653
+ ],
+ [
+ 122.485395,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -18.99299
+ ],
+ [
+ 122.485395,
+ -20.995326
+ ],
+ [
+ 123.486563,
+ -20.995326
+ ],
+ [
+ 123.486563,
+ -18.99299
+ ],
+ [
+ 122.485395,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -20.995326
+ ],
+ [
+ 122.485395,
+ -22.997663
+ ],
+ [
+ 123.486563,
+ -22.997663
+ ],
+ [
+ 123.486563,
+ -20.995326
+ ],
+ [
+ 122.485395,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -22.997663
+ ],
+ [
+ 122.485395,
+ -25
+ ],
+ [
+ 123.486563,
+ -25
+ ],
+ [
+ 123.486563,
+ -22.997663
+ ],
+ [
+ 122.485395,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -25
+ ],
+ [
+ 122.485395,
+ -27.002337
+ ],
+ [
+ 123.486563,
+ -27.002337
+ ],
+ [
+ 123.486563,
+ -25
+ ],
+ [
+ 122.485395,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -27.002337
+ ],
+ [
+ 122.485395,
+ -29.004674
+ ],
+ [
+ 123.486563,
+ -29.004674
+ ],
+ [
+ 123.486563,
+ -27.002337
+ ],
+ [
+ 122.485395,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -29.004674
+ ],
+ [
+ 122.485395,
+ -31.00701
+ ],
+ [
+ 123.486563,
+ -31.00701
+ ],
+ [
+ 123.486563,
+ -29.004674
+ ],
+ [
+ 122.485395,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -31.00701
+ ],
+ [
+ 122.485395,
+ -33.009347
+ ],
+ [
+ 123.486563,
+ -33.009347
+ ],
+ [
+ 123.486563,
+ -31.00701
+ ],
+ [
+ 122.485395,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 122.485395,
+ -33.009347
+ ],
+ [
+ 122.485395,
+ -35.011684
+ ],
+ [
+ 123.486563,
+ -35.011684
+ ],
+ [
+ 123.486563,
+ -33.009347
+ ],
+ [
+ 122.485395,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -14.988316
+ ],
+ [
+ 123.486563,
+ -16.990653
+ ],
+ [
+ 124.487732,
+ -16.990653
+ ],
+ [
+ 124.487732,
+ -14.988316
+ ],
+ [
+ 123.486563,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -16.990653
+ ],
+ [
+ 123.486563,
+ -18.99299
+ ],
+ [
+ 124.487732,
+ -18.99299
+ ],
+ [
+ 124.487732,
+ -16.990653
+ ],
+ [
+ 123.486563,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -18.99299
+ ],
+ [
+ 123.486563,
+ -20.995326
+ ],
+ [
+ 124.487732,
+ -20.995326
+ ],
+ [
+ 124.487732,
+ -18.99299
+ ],
+ [
+ 123.486563,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -20.995326
+ ],
+ [
+ 123.486563,
+ -22.997663
+ ],
+ [
+ 124.487732,
+ -22.997663
+ ],
+ [
+ 124.487732,
+ -20.995326
+ ],
+ [
+ 123.486563,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -22.997663
+ ],
+ [
+ 123.486563,
+ -25
+ ],
+ [
+ 124.487732,
+ -25
+ ],
+ [
+ 124.487732,
+ -22.997663
+ ],
+ [
+ 123.486563,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -25
+ ],
+ [
+ 123.486563,
+ -27.002337
+ ],
+ [
+ 124.487732,
+ -27.002337
+ ],
+ [
+ 124.487732,
+ -25
+ ],
+ [
+ 123.486563,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -27.002337
+ ],
+ [
+ 123.486563,
+ -29.004674
+ ],
+ [
+ 124.487732,
+ -29.004674
+ ],
+ [
+ 124.487732,
+ -27.002337
+ ],
+ [
+ 123.486563,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -29.004674
+ ],
+ [
+ 123.486563,
+ -31.00701
+ ],
+ [
+ 124.487732,
+ -31.00701
+ ],
+ [
+ 124.487732,
+ -29.004674
+ ],
+ [
+ 123.486563,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -31.00701
+ ],
+ [
+ 123.486563,
+ -33.009347
+ ],
+ [
+ 124.487732,
+ -33.009347
+ ],
+ [
+ 124.487732,
+ -31.00701
+ ],
+ [
+ 123.486563,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 123.486563,
+ -33.009347
+ ],
+ [
+ 123.486563,
+ -35.011684
+ ],
+ [
+ 124.487732,
+ -35.011684
+ ],
+ [
+ 124.487732,
+ -33.009347
+ ],
+ [
+ 123.486563,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -12.985979
+ ],
+ [
+ 124.487732,
+ -14.988316
+ ],
+ [
+ 125.4889,
+ -14.988316
+ ],
+ [
+ 125.4889,
+ -12.985979
+ ],
+ [
+ 124.487732,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -14.988316
+ ],
+ [
+ 124.487732,
+ -16.990653
+ ],
+ [
+ 125.4889,
+ -16.990653
+ ],
+ [
+ 125.4889,
+ -14.988316
+ ],
+ [
+ 124.487732,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -16.990653
+ ],
+ [
+ 124.487732,
+ -18.99299
+ ],
+ [
+ 125.4889,
+ -18.99299
+ ],
+ [
+ 125.4889,
+ -16.990653
+ ],
+ [
+ 124.487732,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -18.99299
+ ],
+ [
+ 124.487732,
+ -20.995326
+ ],
+ [
+ 125.4889,
+ -20.995326
+ ],
+ [
+ 125.4889,
+ -18.99299
+ ],
+ [
+ 124.487732,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -20.995326
+ ],
+ [
+ 124.487732,
+ -22.997663
+ ],
+ [
+ 125.4889,
+ -22.997663
+ ],
+ [
+ 125.4889,
+ -20.995326
+ ],
+ [
+ 124.487732,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -22.997663
+ ],
+ [
+ 124.487732,
+ -25
+ ],
+ [
+ 125.4889,
+ -25
+ ],
+ [
+ 125.4889,
+ -22.997663
+ ],
+ [
+ 124.487732,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -25
+ ],
+ [
+ 124.487732,
+ -27.002337
+ ],
+ [
+ 125.4889,
+ -27.002337
+ ],
+ [
+ 125.4889,
+ -25
+ ],
+ [
+ 124.487732,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -27.002337
+ ],
+ [
+ 124.487732,
+ -29.004674
+ ],
+ [
+ 125.4889,
+ -29.004674
+ ],
+ [
+ 125.4889,
+ -27.002337
+ ],
+ [
+ 124.487732,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -29.004674
+ ],
+ [
+ 124.487732,
+ -31.00701
+ ],
+ [
+ 125.4889,
+ -31.00701
+ ],
+ [
+ 125.4889,
+ -29.004674
+ ],
+ [
+ 124.487732,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -31.00701
+ ],
+ [
+ 124.487732,
+ -33.009347
+ ],
+ [
+ 125.4889,
+ -33.009347
+ ],
+ [
+ 125.4889,
+ -31.00701
+ ],
+ [
+ 124.487732,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 124.487732,
+ -33.009347
+ ],
+ [
+ 124.487732,
+ -35.011684
+ ],
+ [
+ 125.4889,
+ -35.011684
+ ],
+ [
+ 125.4889,
+ -33.009347
+ ],
+ [
+ 124.487732,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -12.985979
+ ],
+ [
+ 125.4889,
+ -14.988316
+ ],
+ [
+ 126.490069,
+ -14.988316
+ ],
+ [
+ 126.490069,
+ -12.985979
+ ],
+ [
+ 125.4889,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -14.988316
+ ],
+ [
+ 125.4889,
+ -16.990653
+ ],
+ [
+ 126.490069,
+ -16.990653
+ ],
+ [
+ 126.490069,
+ -14.988316
+ ],
+ [
+ 125.4889,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -16.990653
+ ],
+ [
+ 125.4889,
+ -18.99299
+ ],
+ [
+ 126.490069,
+ -18.99299
+ ],
+ [
+ 126.490069,
+ -16.990653
+ ],
+ [
+ 125.4889,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -18.99299
+ ],
+ [
+ 125.4889,
+ -20.995326
+ ],
+ [
+ 126.490069,
+ -20.995326
+ ],
+ [
+ 126.490069,
+ -18.99299
+ ],
+ [
+ 125.4889,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -20.995326
+ ],
+ [
+ 125.4889,
+ -22.997663
+ ],
+ [
+ 126.490069,
+ -22.997663
+ ],
+ [
+ 126.490069,
+ -20.995326
+ ],
+ [
+ 125.4889,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -22.997663
+ ],
+ [
+ 125.4889,
+ -25
+ ],
+ [
+ 126.490069,
+ -25
+ ],
+ [
+ 126.490069,
+ -22.997663
+ ],
+ [
+ 125.4889,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -25
+ ],
+ [
+ 125.4889,
+ -27.002337
+ ],
+ [
+ 126.490069,
+ -27.002337
+ ],
+ [
+ 126.490069,
+ -25
+ ],
+ [
+ 125.4889,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -27.002337
+ ],
+ [
+ 125.4889,
+ -29.004674
+ ],
+ [
+ 126.490069,
+ -29.004674
+ ],
+ [
+ 126.490069,
+ -27.002337
+ ],
+ [
+ 125.4889,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -29.004674
+ ],
+ [
+ 125.4889,
+ -31.00701
+ ],
+ [
+ 126.490069,
+ -31.00701
+ ],
+ [
+ 126.490069,
+ -29.004674
+ ],
+ [
+ 125.4889,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 125.4889,
+ -31.00701
+ ],
+ [
+ 125.4889,
+ -33.009347
+ ],
+ [
+ 126.490069,
+ -33.009347
+ ],
+ [
+ 126.490069,
+ -31.00701
+ ],
+ [
+ 125.4889,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -12.985979
+ ],
+ [
+ 126.490069,
+ -14.988316
+ ],
+ [
+ 127.491237,
+ -14.988316
+ ],
+ [
+ 127.491237,
+ -12.985979
+ ],
+ [
+ 126.490069,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -14.988316
+ ],
+ [
+ 126.490069,
+ -16.990653
+ ],
+ [
+ 127.491237,
+ -16.990653
+ ],
+ [
+ 127.491237,
+ -14.988316
+ ],
+ [
+ 126.490069,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -16.990653
+ ],
+ [
+ 126.490069,
+ -18.99299
+ ],
+ [
+ 127.491237,
+ -18.99299
+ ],
+ [
+ 127.491237,
+ -16.990653
+ ],
+ [
+ 126.490069,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -18.99299
+ ],
+ [
+ 126.490069,
+ -20.995326
+ ],
+ [
+ 127.491237,
+ -20.995326
+ ],
+ [
+ 127.491237,
+ -18.99299
+ ],
+ [
+ 126.490069,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -20.995326
+ ],
+ [
+ 126.490069,
+ -22.997663
+ ],
+ [
+ 127.491237,
+ -22.997663
+ ],
+ [
+ 127.491237,
+ -20.995326
+ ],
+ [
+ 126.490069,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -22.997663
+ ],
+ [
+ 126.490069,
+ -25
+ ],
+ [
+ 127.491237,
+ -25
+ ],
+ [
+ 127.491237,
+ -22.997663
+ ],
+ [
+ 126.490069,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -25
+ ],
+ [
+ 126.490069,
+ -27.002337
+ ],
+ [
+ 127.491237,
+ -27.002337
+ ],
+ [
+ 127.491237,
+ -25
+ ],
+ [
+ 126.490069,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -27.002337
+ ],
+ [
+ 126.490069,
+ -29.004674
+ ],
+ [
+ 127.491237,
+ -29.004674
+ ],
+ [
+ 127.491237,
+ -27.002337
+ ],
+ [
+ 126.490069,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -29.004674
+ ],
+ [
+ 126.490069,
+ -31.00701
+ ],
+ [
+ 127.491237,
+ -31.00701
+ ],
+ [
+ 127.491237,
+ -29.004674
+ ],
+ [
+ 126.490069,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 126.490069,
+ -31.00701
+ ],
+ [
+ 126.490069,
+ -33.009347
+ ],
+ [
+ 127.491237,
+ -33.009347
+ ],
+ [
+ 127.491237,
+ -31.00701
+ ],
+ [
+ 126.490069,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -12.985979
+ ],
+ [
+ 127.491237,
+ -14.988316
+ ],
+ [
+ 128.492405,
+ -14.988316
+ ],
+ [
+ 128.492405,
+ -12.985979
+ ],
+ [
+ 127.491237,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -14.988316
+ ],
+ [
+ 127.491237,
+ -16.990653
+ ],
+ [
+ 128.492405,
+ -16.990653
+ ],
+ [
+ 128.492405,
+ -14.988316
+ ],
+ [
+ 127.491237,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -16.990653
+ ],
+ [
+ 127.491237,
+ -18.99299
+ ],
+ [
+ 128.492405,
+ -18.99299
+ ],
+ [
+ 128.492405,
+ -16.990653
+ ],
+ [
+ 127.491237,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -18.99299
+ ],
+ [
+ 127.491237,
+ -20.995326
+ ],
+ [
+ 128.492405,
+ -20.995326
+ ],
+ [
+ 128.492405,
+ -18.99299
+ ],
+ [
+ 127.491237,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -20.995326
+ ],
+ [
+ 127.491237,
+ -22.997663
+ ],
+ [
+ 128.492405,
+ -22.997663
+ ],
+ [
+ 128.492405,
+ -20.995326
+ ],
+ [
+ 127.491237,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -22.997663
+ ],
+ [
+ 127.491237,
+ -25
+ ],
+ [
+ 128.492405,
+ -25
+ ],
+ [
+ 128.492405,
+ -22.997663
+ ],
+ [
+ 127.491237,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -25
+ ],
+ [
+ 127.491237,
+ -27.002337
+ ],
+ [
+ 128.492405,
+ -27.002337
+ ],
+ [
+ 128.492405,
+ -25
+ ],
+ [
+ 127.491237,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -27.002337
+ ],
+ [
+ 127.491237,
+ -29.004674
+ ],
+ [
+ 128.492405,
+ -29.004674
+ ],
+ [
+ 128.492405,
+ -27.002337
+ ],
+ [
+ 127.491237,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -29.004674
+ ],
+ [
+ 127.491237,
+ -31.00701
+ ],
+ [
+ 128.492405,
+ -31.00701
+ ],
+ [
+ 128.492405,
+ -29.004674
+ ],
+ [
+ 127.491237,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 127.491237,
+ -31.00701
+ ],
+ [
+ 127.491237,
+ -33.009347
+ ],
+ [
+ 128.492405,
+ -33.009347
+ ],
+ [
+ 128.492405,
+ -31.00701
+ ],
+ [
+ 127.491237,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -12.985979
+ ],
+ [
+ 128.492405,
+ -14.988316
+ ],
+ [
+ 129.493574,
+ -14.988316
+ ],
+ [
+ 129.493574,
+ -12.985979
+ ],
+ [
+ 128.492405,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -14.988316
+ ],
+ [
+ 128.492405,
+ -16.990653
+ ],
+ [
+ 129.493574,
+ -16.990653
+ ],
+ [
+ 129.493574,
+ -14.988316
+ ],
+ [
+ 128.492405,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -16.990653
+ ],
+ [
+ 128.492405,
+ -18.99299
+ ],
+ [
+ 129.493574,
+ -18.99299
+ ],
+ [
+ 129.493574,
+ -16.990653
+ ],
+ [
+ 128.492405,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -18.99299
+ ],
+ [
+ 128.492405,
+ -20.995326
+ ],
+ [
+ 129.493574,
+ -20.995326
+ ],
+ [
+ 129.493574,
+ -18.99299
+ ],
+ [
+ 128.492405,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -20.995326
+ ],
+ [
+ 128.492405,
+ -22.997663
+ ],
+ [
+ 129.493574,
+ -22.997663
+ ],
+ [
+ 129.493574,
+ -20.995326
+ ],
+ [
+ 128.492405,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -22.997663
+ ],
+ [
+ 128.492405,
+ -25
+ ],
+ [
+ 129.493574,
+ -25
+ ],
+ [
+ 129.493574,
+ -22.997663
+ ],
+ [
+ 128.492405,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -25
+ ],
+ [
+ 128.492405,
+ -27.002337
+ ],
+ [
+ 129.493574,
+ -27.002337
+ ],
+ [
+ 129.493574,
+ -25
+ ],
+ [
+ 128.492405,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -27.002337
+ ],
+ [
+ 128.492405,
+ -29.004674
+ ],
+ [
+ 129.493574,
+ -29.004674
+ ],
+ [
+ 129.493574,
+ -27.002337
+ ],
+ [
+ 128.492405,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -29.004674
+ ],
+ [
+ 128.492405,
+ -31.00701
+ ],
+ [
+ 129.493574,
+ -31.00701
+ ],
+ [
+ 129.493574,
+ -29.004674
+ ],
+ [
+ 128.492405,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 128.492405,
+ -31.00701
+ ],
+ [
+ 128.492405,
+ -33.009347
+ ],
+ [
+ 129.493574,
+ -33.009347
+ ],
+ [
+ 129.493574,
+ -31.00701
+ ],
+ [
+ 128.492405,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -10.983642
+ ],
+ [
+ 129.493574,
+ -12.985979
+ ],
+ [
+ 130.494742,
+ -12.985979
+ ],
+ [
+ 130.494742,
+ -10.983642
+ ],
+ [
+ 129.493574,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -12.985979
+ ],
+ [
+ 129.493574,
+ -14.988316
+ ],
+ [
+ 130.494742,
+ -14.988316
+ ],
+ [
+ 130.494742,
+ -12.985979
+ ],
+ [
+ 129.493574,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -14.988316
+ ],
+ [
+ 129.493574,
+ -16.990653
+ ],
+ [
+ 130.494742,
+ -16.990653
+ ],
+ [
+ 130.494742,
+ -14.988316
+ ],
+ [
+ 129.493574,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -16.990653
+ ],
+ [
+ 129.493574,
+ -18.99299
+ ],
+ [
+ 130.494742,
+ -18.99299
+ ],
+ [
+ 130.494742,
+ -16.990653
+ ],
+ [
+ 129.493574,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -18.99299
+ ],
+ [
+ 129.493574,
+ -20.995326
+ ],
+ [
+ 130.494742,
+ -20.995326
+ ],
+ [
+ 130.494742,
+ -18.99299
+ ],
+ [
+ 129.493574,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -20.995326
+ ],
+ [
+ 129.493574,
+ -22.997663
+ ],
+ [
+ 130.494742,
+ -22.997663
+ ],
+ [
+ 130.494742,
+ -20.995326
+ ],
+ [
+ 129.493574,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -22.997663
+ ],
+ [
+ 129.493574,
+ -25
+ ],
+ [
+ 130.494742,
+ -25
+ ],
+ [
+ 130.494742,
+ -22.997663
+ ],
+ [
+ 129.493574,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -25
+ ],
+ [
+ 129.493574,
+ -27.002337
+ ],
+ [
+ 130.494742,
+ -27.002337
+ ],
+ [
+ 130.494742,
+ -25
+ ],
+ [
+ 129.493574,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -27.002337
+ ],
+ [
+ 129.493574,
+ -29.004674
+ ],
+ [
+ 130.494742,
+ -29.004674
+ ],
+ [
+ 130.494742,
+ -27.002337
+ ],
+ [
+ 129.493574,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -29.004674
+ ],
+ [
+ 129.493574,
+ -31.00701
+ ],
+ [
+ 130.494742,
+ -31.00701
+ ],
+ [
+ 130.494742,
+ -29.004674
+ ],
+ [
+ 129.493574,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 129.493574,
+ -31.00701
+ ],
+ [
+ 129.493574,
+ -33.009347
+ ],
+ [
+ 130.494742,
+ -33.009347
+ ],
+ [
+ 130.494742,
+ -31.00701
+ ],
+ [
+ 129.493574,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -10.983642
+ ],
+ [
+ 130.494742,
+ -12.985979
+ ],
+ [
+ 131.495911,
+ -12.985979
+ ],
+ [
+ 131.495911,
+ -10.983642
+ ],
+ [
+ 130.494742,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -12.985979
+ ],
+ [
+ 130.494742,
+ -14.988316
+ ],
+ [
+ 131.495911,
+ -14.988316
+ ],
+ [
+ 131.495911,
+ -12.985979
+ ],
+ [
+ 130.494742,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -14.988316
+ ],
+ [
+ 130.494742,
+ -16.990653
+ ],
+ [
+ 131.495911,
+ -16.990653
+ ],
+ [
+ 131.495911,
+ -14.988316
+ ],
+ [
+ 130.494742,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -16.990653
+ ],
+ [
+ 130.494742,
+ -18.99299
+ ],
+ [
+ 131.495911,
+ -18.99299
+ ],
+ [
+ 131.495911,
+ -16.990653
+ ],
+ [
+ 130.494742,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -18.99299
+ ],
+ [
+ 130.494742,
+ -20.995326
+ ],
+ [
+ 131.495911,
+ -20.995326
+ ],
+ [
+ 131.495911,
+ -18.99299
+ ],
+ [
+ 130.494742,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -20.995326
+ ],
+ [
+ 130.494742,
+ -22.997663
+ ],
+ [
+ 131.495911,
+ -22.997663
+ ],
+ [
+ 131.495911,
+ -20.995326
+ ],
+ [
+ 130.494742,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -22.997663
+ ],
+ [
+ 130.494742,
+ -25
+ ],
+ [
+ 131.495911,
+ -25
+ ],
+ [
+ 131.495911,
+ -22.997663
+ ],
+ [
+ 130.494742,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -25
+ ],
+ [
+ 130.494742,
+ -27.002337
+ ],
+ [
+ 131.495911,
+ -27.002337
+ ],
+ [
+ 131.495911,
+ -25
+ ],
+ [
+ 130.494742,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -27.002337
+ ],
+ [
+ 130.494742,
+ -29.004674
+ ],
+ [
+ 131.495911,
+ -29.004674
+ ],
+ [
+ 131.495911,
+ -27.002337
+ ],
+ [
+ 130.494742,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -29.004674
+ ],
+ [
+ 130.494742,
+ -31.00701
+ ],
+ [
+ 131.495911,
+ -31.00701
+ ],
+ [
+ 131.495911,
+ -29.004674
+ ],
+ [
+ 130.494742,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 130.494742,
+ -31.00701
+ ],
+ [
+ 130.494742,
+ -33.009347
+ ],
+ [
+ 131.495911,
+ -33.009347
+ ],
+ [
+ 131.495911,
+ -31.00701
+ ],
+ [
+ 130.494742,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -10.983642
+ ],
+ [
+ 131.495911,
+ -12.985979
+ ],
+ [
+ 132.497079,
+ -12.985979
+ ],
+ [
+ 132.497079,
+ -10.983642
+ ],
+ [
+ 131.495911,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -12.985979
+ ],
+ [
+ 131.495911,
+ -14.988316
+ ],
+ [
+ 132.497079,
+ -14.988316
+ ],
+ [
+ 132.497079,
+ -12.985979
+ ],
+ [
+ 131.495911,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -14.988316
+ ],
+ [
+ 131.495911,
+ -16.990653
+ ],
+ [
+ 132.497079,
+ -16.990653
+ ],
+ [
+ 132.497079,
+ -14.988316
+ ],
+ [
+ 131.495911,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -16.990653
+ ],
+ [
+ 131.495911,
+ -18.99299
+ ],
+ [
+ 132.497079,
+ -18.99299
+ ],
+ [
+ 132.497079,
+ -16.990653
+ ],
+ [
+ 131.495911,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -18.99299
+ ],
+ [
+ 131.495911,
+ -20.995326
+ ],
+ [
+ 132.497079,
+ -20.995326
+ ],
+ [
+ 132.497079,
+ -18.99299
+ ],
+ [
+ 131.495911,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -20.995326
+ ],
+ [
+ 131.495911,
+ -22.997663
+ ],
+ [
+ 132.497079,
+ -22.997663
+ ],
+ [
+ 132.497079,
+ -20.995326
+ ],
+ [
+ 131.495911,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -22.997663
+ ],
+ [
+ 131.495911,
+ -25
+ ],
+ [
+ 132.497079,
+ -25
+ ],
+ [
+ 132.497079,
+ -22.997663
+ ],
+ [
+ 131.495911,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -25
+ ],
+ [
+ 131.495911,
+ -27.002337
+ ],
+ [
+ 132.497079,
+ -27.002337
+ ],
+ [
+ 132.497079,
+ -25
+ ],
+ [
+ 131.495911,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -27.002337
+ ],
+ [
+ 131.495911,
+ -29.004674
+ ],
+ [
+ 132.497079,
+ -29.004674
+ ],
+ [
+ 132.497079,
+ -27.002337
+ ],
+ [
+ 131.495911,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -29.004674
+ ],
+ [
+ 131.495911,
+ -31.00701
+ ],
+ [
+ 132.497079,
+ -31.00701
+ ],
+ [
+ 132.497079,
+ -29.004674
+ ],
+ [
+ 131.495911,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 131.495911,
+ -31.00701
+ ],
+ [
+ 131.495911,
+ -33.009347
+ ],
+ [
+ 132.497079,
+ -33.009347
+ ],
+ [
+ 132.497079,
+ -31.00701
+ ],
+ [
+ 131.495911,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -10.983642
+ ],
+ [
+ 132.497079,
+ -12.985979
+ ],
+ [
+ 133.498247,
+ -12.985979
+ ],
+ [
+ 133.498247,
+ -10.983642
+ ],
+ [
+ 132.497079,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -12.985979
+ ],
+ [
+ 132.497079,
+ -14.988316
+ ],
+ [
+ 133.498247,
+ -14.988316
+ ],
+ [
+ 133.498247,
+ -12.985979
+ ],
+ [
+ 132.497079,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -14.988316
+ ],
+ [
+ 132.497079,
+ -16.990653
+ ],
+ [
+ 133.498247,
+ -16.990653
+ ],
+ [
+ 133.498247,
+ -14.988316
+ ],
+ [
+ 132.497079,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -16.990653
+ ],
+ [
+ 132.497079,
+ -18.99299
+ ],
+ [
+ 133.498247,
+ -18.99299
+ ],
+ [
+ 133.498247,
+ -16.990653
+ ],
+ [
+ 132.497079,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -18.99299
+ ],
+ [
+ 132.497079,
+ -20.995326
+ ],
+ [
+ 133.498247,
+ -20.995326
+ ],
+ [
+ 133.498247,
+ -18.99299
+ ],
+ [
+ 132.497079,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -20.995326
+ ],
+ [
+ 132.497079,
+ -22.997663
+ ],
+ [
+ 133.498247,
+ -22.997663
+ ],
+ [
+ 133.498247,
+ -20.995326
+ ],
+ [
+ 132.497079,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -22.997663
+ ],
+ [
+ 132.497079,
+ -25
+ ],
+ [
+ 133.498247,
+ -25
+ ],
+ [
+ 133.498247,
+ -22.997663
+ ],
+ [
+ 132.497079,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -25
+ ],
+ [
+ 132.497079,
+ -27.002337
+ ],
+ [
+ 133.498247,
+ -27.002337
+ ],
+ [
+ 133.498247,
+ -25
+ ],
+ [
+ 132.497079,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -27.002337
+ ],
+ [
+ 132.497079,
+ -29.004674
+ ],
+ [
+ 133.498247,
+ -29.004674
+ ],
+ [
+ 133.498247,
+ -27.002337
+ ],
+ [
+ 132.497079,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -29.004674
+ ],
+ [
+ 132.497079,
+ -31.00701
+ ],
+ [
+ 133.498247,
+ -31.00701
+ ],
+ [
+ 133.498247,
+ -29.004674
+ ],
+ [
+ 132.497079,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 132.497079,
+ -31.00701
+ ],
+ [
+ 132.497079,
+ -33.009347
+ ],
+ [
+ 133.498247,
+ -33.009347
+ ],
+ [
+ 133.498247,
+ -31.00701
+ ],
+ [
+ 132.497079,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -10.983642
+ ],
+ [
+ 133.498247,
+ -12.985979
+ ],
+ [
+ 134.499416,
+ -12.985979
+ ],
+ [
+ 134.499416,
+ -10.983642
+ ],
+ [
+ 133.498247,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -12.985979
+ ],
+ [
+ 133.498247,
+ -14.988316
+ ],
+ [
+ 134.499416,
+ -14.988316
+ ],
+ [
+ 134.499416,
+ -12.985979
+ ],
+ [
+ 133.498247,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -14.988316
+ ],
+ [
+ 133.498247,
+ -16.990653
+ ],
+ [
+ 134.499416,
+ -16.990653
+ ],
+ [
+ 134.499416,
+ -14.988316
+ ],
+ [
+ 133.498247,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -16.990653
+ ],
+ [
+ 133.498247,
+ -18.99299
+ ],
+ [
+ 134.499416,
+ -18.99299
+ ],
+ [
+ 134.499416,
+ -16.990653
+ ],
+ [
+ 133.498247,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -18.99299
+ ],
+ [
+ 133.498247,
+ -20.995326
+ ],
+ [
+ 134.499416,
+ -20.995326
+ ],
+ [
+ 134.499416,
+ -18.99299
+ ],
+ [
+ 133.498247,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -20.995326
+ ],
+ [
+ 133.498247,
+ -22.997663
+ ],
+ [
+ 134.499416,
+ -22.997663
+ ],
+ [
+ 134.499416,
+ -20.995326
+ ],
+ [
+ 133.498247,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -22.997663
+ ],
+ [
+ 133.498247,
+ -25
+ ],
+ [
+ 134.499416,
+ -25
+ ],
+ [
+ 134.499416,
+ -22.997663
+ ],
+ [
+ 133.498247,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -25
+ ],
+ [
+ 133.498247,
+ -27.002337
+ ],
+ [
+ 134.499416,
+ -27.002337
+ ],
+ [
+ 134.499416,
+ -25
+ ],
+ [
+ 133.498247,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -27.002337
+ ],
+ [
+ 133.498247,
+ -29.004674
+ ],
+ [
+ 134.499416,
+ -29.004674
+ ],
+ [
+ 134.499416,
+ -27.002337
+ ],
+ [
+ 133.498247,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -29.004674
+ ],
+ [
+ 133.498247,
+ -31.00701
+ ],
+ [
+ 134.499416,
+ -31.00701
+ ],
+ [
+ 134.499416,
+ -29.004674
+ ],
+ [
+ 133.498247,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -31.00701
+ ],
+ [
+ 133.498247,
+ -33.009347
+ ],
+ [
+ 134.499416,
+ -33.009347
+ ],
+ [
+ 134.499416,
+ -31.00701
+ ],
+ [
+ 133.498247,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 133.498247,
+ -33.009347
+ ],
+ [
+ 133.498247,
+ -35.011684
+ ],
+ [
+ 134.499416,
+ -35.011684
+ ],
+ [
+ 134.499416,
+ -33.009347
+ ],
+ [
+ 133.498247,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -10.983642
+ ],
+ [
+ 134.499416,
+ -12.985979
+ ],
+ [
+ 135.500584,
+ -12.985979
+ ],
+ [
+ 135.500584,
+ -10.983642
+ ],
+ [
+ 134.499416,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -12.985979
+ ],
+ [
+ 134.499416,
+ -14.988316
+ ],
+ [
+ 135.500584,
+ -14.988316
+ ],
+ [
+ 135.500584,
+ -12.985979
+ ],
+ [
+ 134.499416,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -14.988316
+ ],
+ [
+ 134.499416,
+ -16.990653
+ ],
+ [
+ 135.500584,
+ -16.990653
+ ],
+ [
+ 135.500584,
+ -14.988316
+ ],
+ [
+ 134.499416,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -16.990653
+ ],
+ [
+ 134.499416,
+ -18.99299
+ ],
+ [
+ 135.500584,
+ -18.99299
+ ],
+ [
+ 135.500584,
+ -16.990653
+ ],
+ [
+ 134.499416,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -18.99299
+ ],
+ [
+ 134.499416,
+ -20.995326
+ ],
+ [
+ 135.500584,
+ -20.995326
+ ],
+ [
+ 135.500584,
+ -18.99299
+ ],
+ [
+ 134.499416,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -20.995326
+ ],
+ [
+ 134.499416,
+ -22.997663
+ ],
+ [
+ 135.500584,
+ -22.997663
+ ],
+ [
+ 135.500584,
+ -20.995326
+ ],
+ [
+ 134.499416,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -22.997663
+ ],
+ [
+ 134.499416,
+ -25
+ ],
+ [
+ 135.500584,
+ -25
+ ],
+ [
+ 135.500584,
+ -22.997663
+ ],
+ [
+ 134.499416,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -25
+ ],
+ [
+ 134.499416,
+ -27.002337
+ ],
+ [
+ 135.500584,
+ -27.002337
+ ],
+ [
+ 135.500584,
+ -25
+ ],
+ [
+ 134.499416,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -27.002337
+ ],
+ [
+ 134.499416,
+ -29.004674
+ ],
+ [
+ 135.500584,
+ -29.004674
+ ],
+ [
+ 135.500584,
+ -27.002337
+ ],
+ [
+ 134.499416,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -29.004674
+ ],
+ [
+ 134.499416,
+ -31.00701
+ ],
+ [
+ 135.500584,
+ -31.00701
+ ],
+ [
+ 135.500584,
+ -29.004674
+ ],
+ [
+ 134.499416,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -31.00701
+ ],
+ [
+ 134.499416,
+ -33.009347
+ ],
+ [
+ 135.500584,
+ -33.009347
+ ],
+ [
+ 135.500584,
+ -31.00701
+ ],
+ [
+ 134.499416,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 134.499416,
+ -33.009347
+ ],
+ [
+ 134.499416,
+ -35.011684
+ ],
+ [
+ 135.500584,
+ -35.011684
+ ],
+ [
+ 135.500584,
+ -33.009347
+ ],
+ [
+ 134.499416,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -10.983642
+ ],
+ [
+ 135.500584,
+ -12.985979
+ ],
+ [
+ 136.501753,
+ -12.985979
+ ],
+ [
+ 136.501753,
+ -10.983642
+ ],
+ [
+ 135.500584,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -12.985979
+ ],
+ [
+ 135.500584,
+ -14.988316
+ ],
+ [
+ 136.501753,
+ -14.988316
+ ],
+ [
+ 136.501753,
+ -12.985979
+ ],
+ [
+ 135.500584,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -14.988316
+ ],
+ [
+ 135.500584,
+ -16.990653
+ ],
+ [
+ 136.501753,
+ -16.990653
+ ],
+ [
+ 136.501753,
+ -14.988316
+ ],
+ [
+ 135.500584,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -16.990653
+ ],
+ [
+ 135.500584,
+ -18.99299
+ ],
+ [
+ 136.501753,
+ -18.99299
+ ],
+ [
+ 136.501753,
+ -16.990653
+ ],
+ [
+ 135.500584,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -18.99299
+ ],
+ [
+ 135.500584,
+ -20.995326
+ ],
+ [
+ 136.501753,
+ -20.995326
+ ],
+ [
+ 136.501753,
+ -18.99299
+ ],
+ [
+ 135.500584,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -20.995326
+ ],
+ [
+ 135.500584,
+ -22.997663
+ ],
+ [
+ 136.501753,
+ -22.997663
+ ],
+ [
+ 136.501753,
+ -20.995326
+ ],
+ [
+ 135.500584,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -22.997663
+ ],
+ [
+ 135.500584,
+ -25
+ ],
+ [
+ 136.501753,
+ -25
+ ],
+ [
+ 136.501753,
+ -22.997663
+ ],
+ [
+ 135.500584,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -25
+ ],
+ [
+ 135.500584,
+ -27.002337
+ ],
+ [
+ 136.501753,
+ -27.002337
+ ],
+ [
+ 136.501753,
+ -25
+ ],
+ [
+ 135.500584,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -27.002337
+ ],
+ [
+ 135.500584,
+ -29.004674
+ ],
+ [
+ 136.501753,
+ -29.004674
+ ],
+ [
+ 136.501753,
+ -27.002337
+ ],
+ [
+ 135.500584,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -29.004674
+ ],
+ [
+ 135.500584,
+ -31.00701
+ ],
+ [
+ 136.501753,
+ -31.00701
+ ],
+ [
+ 136.501753,
+ -29.004674
+ ],
+ [
+ 135.500584,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -31.00701
+ ],
+ [
+ 135.500584,
+ -33.009347
+ ],
+ [
+ 136.501753,
+ -33.009347
+ ],
+ [
+ 136.501753,
+ -31.00701
+ ],
+ [
+ 135.500584,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 135.500584,
+ -33.009347
+ ],
+ [
+ 135.500584,
+ -35.011684
+ ],
+ [
+ 136.501753,
+ -35.011684
+ ],
+ [
+ 136.501753,
+ -33.009347
+ ],
+ [
+ 135.500584,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -10.983642
+ ],
+ [
+ 136.501753,
+ -12.985979
+ ],
+ [
+ 137.502921,
+ -12.985979
+ ],
+ [
+ 137.502921,
+ -10.983642
+ ],
+ [
+ 136.501753,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -12.985979
+ ],
+ [
+ 136.501753,
+ -14.988316
+ ],
+ [
+ 137.502921,
+ -14.988316
+ ],
+ [
+ 137.502921,
+ -12.985979
+ ],
+ [
+ 136.501753,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -14.988316
+ ],
+ [
+ 136.501753,
+ -16.990653
+ ],
+ [
+ 137.502921,
+ -16.990653
+ ],
+ [
+ 137.502921,
+ -14.988316
+ ],
+ [
+ 136.501753,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -16.990653
+ ],
+ [
+ 136.501753,
+ -18.99299
+ ],
+ [
+ 137.502921,
+ -18.99299
+ ],
+ [
+ 137.502921,
+ -16.990653
+ ],
+ [
+ 136.501753,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -18.99299
+ ],
+ [
+ 136.501753,
+ -20.995326
+ ],
+ [
+ 137.502921,
+ -20.995326
+ ],
+ [
+ 137.502921,
+ -18.99299
+ ],
+ [
+ 136.501753,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -20.995326
+ ],
+ [
+ 136.501753,
+ -22.997663
+ ],
+ [
+ 137.502921,
+ -22.997663
+ ],
+ [
+ 137.502921,
+ -20.995326
+ ],
+ [
+ 136.501753,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -22.997663
+ ],
+ [
+ 136.501753,
+ -25
+ ],
+ [
+ 137.502921,
+ -25
+ ],
+ [
+ 137.502921,
+ -22.997663
+ ],
+ [
+ 136.501753,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -25
+ ],
+ [
+ 136.501753,
+ -27.002337
+ ],
+ [
+ 137.502921,
+ -27.002337
+ ],
+ [
+ 137.502921,
+ -25
+ ],
+ [
+ 136.501753,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -27.002337
+ ],
+ [
+ 136.501753,
+ -29.004674
+ ],
+ [
+ 137.502921,
+ -29.004674
+ ],
+ [
+ 137.502921,
+ -27.002337
+ ],
+ [
+ 136.501753,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -29.004674
+ ],
+ [
+ 136.501753,
+ -31.00701
+ ],
+ [
+ 137.502921,
+ -31.00701
+ ],
+ [
+ 137.502921,
+ -29.004674
+ ],
+ [
+ 136.501753,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -31.00701
+ ],
+ [
+ 136.501753,
+ -33.009347
+ ],
+ [
+ 137.502921,
+ -33.009347
+ ],
+ [
+ 137.502921,
+ -31.00701
+ ],
+ [
+ 136.501753,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 136.501753,
+ -33.009347
+ ],
+ [
+ 136.501753,
+ -35.011684
+ ],
+ [
+ 137.502921,
+ -35.011684
+ ],
+ [
+ 137.502921,
+ -33.009347
+ ],
+ [
+ 136.501753,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -14.988316
+ ],
+ [
+ 137.502921,
+ -16.990653
+ ],
+ [
+ 138.504089,
+ -16.990653
+ ],
+ [
+ 138.504089,
+ -14.988316
+ ],
+ [
+ 137.502921,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -16.990653
+ ],
+ [
+ 137.502921,
+ -18.99299
+ ],
+ [
+ 138.504089,
+ -18.99299
+ ],
+ [
+ 138.504089,
+ -16.990653
+ ],
+ [
+ 137.502921,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -18.99299
+ ],
+ [
+ 137.502921,
+ -20.995326
+ ],
+ [
+ 138.504089,
+ -20.995326
+ ],
+ [
+ 138.504089,
+ -18.99299
+ ],
+ [
+ 137.502921,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -20.995326
+ ],
+ [
+ 137.502921,
+ -22.997663
+ ],
+ [
+ 138.504089,
+ -22.997663
+ ],
+ [
+ 138.504089,
+ -20.995326
+ ],
+ [
+ 137.502921,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -22.997663
+ ],
+ [
+ 137.502921,
+ -25
+ ],
+ [
+ 138.504089,
+ -25
+ ],
+ [
+ 138.504089,
+ -22.997663
+ ],
+ [
+ 137.502921,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -25
+ ],
+ [
+ 137.502921,
+ -27.002337
+ ],
+ [
+ 138.504089,
+ -27.002337
+ ],
+ [
+ 138.504089,
+ -25
+ ],
+ [
+ 137.502921,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -27.002337
+ ],
+ [
+ 137.502921,
+ -29.004674
+ ],
+ [
+ 138.504089,
+ -29.004674
+ ],
+ [
+ 138.504089,
+ -27.002337
+ ],
+ [
+ 137.502921,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -29.004674
+ ],
+ [
+ 137.502921,
+ -31.00701
+ ],
+ [
+ 138.504089,
+ -31.00701
+ ],
+ [
+ 138.504089,
+ -29.004674
+ ],
+ [
+ 137.502921,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -31.00701
+ ],
+ [
+ 137.502921,
+ -33.009347
+ ],
+ [
+ 138.504089,
+ -33.009347
+ ],
+ [
+ 138.504089,
+ -31.00701
+ ],
+ [
+ 137.502921,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -33.009347
+ ],
+ [
+ 137.502921,
+ -35.011684
+ ],
+ [
+ 138.504089,
+ -35.011684
+ ],
+ [
+ 138.504089,
+ -33.009347
+ ],
+ [
+ 137.502921,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 137.502921,
+ -35.011684
+ ],
+ [
+ 137.502921,
+ -37.014021
+ ],
+ [
+ 138.504089,
+ -37.014021
+ ],
+ [
+ 138.504089,
+ -35.011684
+ ],
+ [
+ 137.502921,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -14.988316
+ ],
+ [
+ 138.504089,
+ -16.990653
+ ],
+ [
+ 139.505258,
+ -16.990653
+ ],
+ [
+ 139.505258,
+ -14.988316
+ ],
+ [
+ 138.504089,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -16.990653
+ ],
+ [
+ 138.504089,
+ -18.99299
+ ],
+ [
+ 139.505258,
+ -18.99299
+ ],
+ [
+ 139.505258,
+ -16.990653
+ ],
+ [
+ 138.504089,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -18.99299
+ ],
+ [
+ 138.504089,
+ -20.995326
+ ],
+ [
+ 139.505258,
+ -20.995326
+ ],
+ [
+ 139.505258,
+ -18.99299
+ ],
+ [
+ 138.504089,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -20.995326
+ ],
+ [
+ 138.504089,
+ -22.997663
+ ],
+ [
+ 139.505258,
+ -22.997663
+ ],
+ [
+ 139.505258,
+ -20.995326
+ ],
+ [
+ 138.504089,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -22.997663
+ ],
+ [
+ 138.504089,
+ -25
+ ],
+ [
+ 139.505258,
+ -25
+ ],
+ [
+ 139.505258,
+ -22.997663
+ ],
+ [
+ 138.504089,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -25
+ ],
+ [
+ 138.504089,
+ -27.002337
+ ],
+ [
+ 139.505258,
+ -27.002337
+ ],
+ [
+ 139.505258,
+ -25
+ ],
+ [
+ 138.504089,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -27.002337
+ ],
+ [
+ 138.504089,
+ -29.004674
+ ],
+ [
+ 139.505258,
+ -29.004674
+ ],
+ [
+ 139.505258,
+ -27.002337
+ ],
+ [
+ 138.504089,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -29.004674
+ ],
+ [
+ 138.504089,
+ -31.00701
+ ],
+ [
+ 139.505258,
+ -31.00701
+ ],
+ [
+ 139.505258,
+ -29.004674
+ ],
+ [
+ 138.504089,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -31.00701
+ ],
+ [
+ 138.504089,
+ -33.009347
+ ],
+ [
+ 139.505258,
+ -33.009347
+ ],
+ [
+ 139.505258,
+ -31.00701
+ ],
+ [
+ 138.504089,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -33.009347
+ ],
+ [
+ 138.504089,
+ -35.011684
+ ],
+ [
+ 139.505258,
+ -35.011684
+ ],
+ [
+ 139.505258,
+ -33.009347
+ ],
+ [
+ 138.504089,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 138.504089,
+ -35.011684
+ ],
+ [
+ 138.504089,
+ -37.014021
+ ],
+ [
+ 139.505258,
+ -37.014021
+ ],
+ [
+ 139.505258,
+ -35.011684
+ ],
+ [
+ 138.504089,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -14.988316
+ ],
+ [
+ 139.505258,
+ -16.990653
+ ],
+ [
+ 140.506426,
+ -16.990653
+ ],
+ [
+ 140.506426,
+ -14.988316
+ ],
+ [
+ 139.505258,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -16.990653
+ ],
+ [
+ 139.505258,
+ -18.99299
+ ],
+ [
+ 140.506426,
+ -18.99299
+ ],
+ [
+ 140.506426,
+ -16.990653
+ ],
+ [
+ 139.505258,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -18.99299
+ ],
+ [
+ 139.505258,
+ -20.995326
+ ],
+ [
+ 140.506426,
+ -20.995326
+ ],
+ [
+ 140.506426,
+ -18.99299
+ ],
+ [
+ 139.505258,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -20.995326
+ ],
+ [
+ 139.505258,
+ -22.997663
+ ],
+ [
+ 140.506426,
+ -22.997663
+ ],
+ [
+ 140.506426,
+ -20.995326
+ ],
+ [
+ 139.505258,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -22.997663
+ ],
+ [
+ 139.505258,
+ -25
+ ],
+ [
+ 140.506426,
+ -25
+ ],
+ [
+ 140.506426,
+ -22.997663
+ ],
+ [
+ 139.505258,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -25
+ ],
+ [
+ 139.505258,
+ -27.002337
+ ],
+ [
+ 140.506426,
+ -27.002337
+ ],
+ [
+ 140.506426,
+ -25
+ ],
+ [
+ 139.505258,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -27.002337
+ ],
+ [
+ 139.505258,
+ -29.004674
+ ],
+ [
+ 140.506426,
+ -29.004674
+ ],
+ [
+ 140.506426,
+ -27.002337
+ ],
+ [
+ 139.505258,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -29.004674
+ ],
+ [
+ 139.505258,
+ -31.00701
+ ],
+ [
+ 140.506426,
+ -31.00701
+ ],
+ [
+ 140.506426,
+ -29.004674
+ ],
+ [
+ 139.505258,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -31.00701
+ ],
+ [
+ 139.505258,
+ -33.009347
+ ],
+ [
+ 140.506426,
+ -33.009347
+ ],
+ [
+ 140.506426,
+ -31.00701
+ ],
+ [
+ 139.505258,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -33.009347
+ ],
+ [
+ 139.505258,
+ -35.011684
+ ],
+ [
+ 140.506426,
+ -35.011684
+ ],
+ [
+ 140.506426,
+ -33.009347
+ ],
+ [
+ 139.505258,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -35.011684
+ ],
+ [
+ 139.505258,
+ -37.014021
+ ],
+ [
+ 140.506426,
+ -37.014021
+ ],
+ [
+ 140.506426,
+ -35.011684
+ ],
+ [
+ 139.505258,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 139.505258,
+ -37.014021
+ ],
+ [
+ 139.505258,
+ -39.016358
+ ],
+ [
+ 140.506426,
+ -39.016358
+ ],
+ [
+ 140.506426,
+ -37.014021
+ ],
+ [
+ 139.505258,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -12.985979
+ ],
+ [
+ 140.506426,
+ -14.988316
+ ],
+ [
+ 141.507595,
+ -14.988316
+ ],
+ [
+ 141.507595,
+ -12.985979
+ ],
+ [
+ 140.506426,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -14.988316
+ ],
+ [
+ 140.506426,
+ -16.990653
+ ],
+ [
+ 141.507595,
+ -16.990653
+ ],
+ [
+ 141.507595,
+ -14.988316
+ ],
+ [
+ 140.506426,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -16.990653
+ ],
+ [
+ 140.506426,
+ -18.99299
+ ],
+ [
+ 141.507595,
+ -18.99299
+ ],
+ [
+ 141.507595,
+ -16.990653
+ ],
+ [
+ 140.506426,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -18.99299
+ ],
+ [
+ 140.506426,
+ -20.995326
+ ],
+ [
+ 141.507595,
+ -20.995326
+ ],
+ [
+ 141.507595,
+ -18.99299
+ ],
+ [
+ 140.506426,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -20.995326
+ ],
+ [
+ 140.506426,
+ -22.997663
+ ],
+ [
+ 141.507595,
+ -22.997663
+ ],
+ [
+ 141.507595,
+ -20.995326
+ ],
+ [
+ 140.506426,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -22.997663
+ ],
+ [
+ 140.506426,
+ -25
+ ],
+ [
+ 141.507595,
+ -25
+ ],
+ [
+ 141.507595,
+ -22.997663
+ ],
+ [
+ 140.506426,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -25
+ ],
+ [
+ 140.506426,
+ -27.002337
+ ],
+ [
+ 141.507595,
+ -27.002337
+ ],
+ [
+ 141.507595,
+ -25
+ ],
+ [
+ 140.506426,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -27.002337
+ ],
+ [
+ 140.506426,
+ -29.004674
+ ],
+ [
+ 141.507595,
+ -29.004674
+ ],
+ [
+ 141.507595,
+ -27.002337
+ ],
+ [
+ 140.506426,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -29.004674
+ ],
+ [
+ 140.506426,
+ -31.00701
+ ],
+ [
+ 141.507595,
+ -31.00701
+ ],
+ [
+ 141.507595,
+ -29.004674
+ ],
+ [
+ 140.506426,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -31.00701
+ ],
+ [
+ 140.506426,
+ -33.009347
+ ],
+ [
+ 141.507595,
+ -33.009347
+ ],
+ [
+ 141.507595,
+ -31.00701
+ ],
+ [
+ 140.506426,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -33.009347
+ ],
+ [
+ 140.506426,
+ -35.011684
+ ],
+ [
+ 141.507595,
+ -35.011684
+ ],
+ [
+ 141.507595,
+ -33.009347
+ ],
+ [
+ 140.506426,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -35.011684
+ ],
+ [
+ 140.506426,
+ -37.014021
+ ],
+ [
+ 141.507595,
+ -37.014021
+ ],
+ [
+ 141.507595,
+ -35.011684
+ ],
+ [
+ 140.506426,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 140.506426,
+ -37.014021
+ ],
+ [
+ 140.506426,
+ -39.016358
+ ],
+ [
+ 141.507595,
+ -39.016358
+ ],
+ [
+ 141.507595,
+ -37.014021
+ ],
+ [
+ 140.506426,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -8.981306
+ ],
+ [
+ 141.507595,
+ -10.983642
+ ],
+ [
+ 142.508763,
+ -10.983642
+ ],
+ [
+ 142.508763,
+ -8.981306
+ ],
+ [
+ 141.507595,
+ -8.981306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -10.983642
+ ],
+ [
+ 141.507595,
+ -12.985979
+ ],
+ [
+ 142.508763,
+ -12.985979
+ ],
+ [
+ 142.508763,
+ -10.983642
+ ],
+ [
+ 141.507595,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -12.985979
+ ],
+ [
+ 141.507595,
+ -14.988316
+ ],
+ [
+ 142.508763,
+ -14.988316
+ ],
+ [
+ 142.508763,
+ -12.985979
+ ],
+ [
+ 141.507595,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -14.988316
+ ],
+ [
+ 141.507595,
+ -16.990653
+ ],
+ [
+ 142.508763,
+ -16.990653
+ ],
+ [
+ 142.508763,
+ -14.988316
+ ],
+ [
+ 141.507595,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -16.990653
+ ],
+ [
+ 141.507595,
+ -18.99299
+ ],
+ [
+ 142.508763,
+ -18.99299
+ ],
+ [
+ 142.508763,
+ -16.990653
+ ],
+ [
+ 141.507595,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -18.99299
+ ],
+ [
+ 141.507595,
+ -20.995326
+ ],
+ [
+ 142.508763,
+ -20.995326
+ ],
+ [
+ 142.508763,
+ -18.99299
+ ],
+ [
+ 141.507595,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -20.995326
+ ],
+ [
+ 141.507595,
+ -22.997663
+ ],
+ [
+ 142.508763,
+ -22.997663
+ ],
+ [
+ 142.508763,
+ -20.995326
+ ],
+ [
+ 141.507595,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -22.997663
+ ],
+ [
+ 141.507595,
+ -25
+ ],
+ [
+ 142.508763,
+ -25
+ ],
+ [
+ 142.508763,
+ -22.997663
+ ],
+ [
+ 141.507595,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -25
+ ],
+ [
+ 141.507595,
+ -27.002337
+ ],
+ [
+ 142.508763,
+ -27.002337
+ ],
+ [
+ 142.508763,
+ -25
+ ],
+ [
+ 141.507595,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -27.002337
+ ],
+ [
+ 141.507595,
+ -29.004674
+ ],
+ [
+ 142.508763,
+ -29.004674
+ ],
+ [
+ 142.508763,
+ -27.002337
+ ],
+ [
+ 141.507595,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -29.004674
+ ],
+ [
+ 141.507595,
+ -31.00701
+ ],
+ [
+ 142.508763,
+ -31.00701
+ ],
+ [
+ 142.508763,
+ -29.004674
+ ],
+ [
+ 141.507595,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -31.00701
+ ],
+ [
+ 141.507595,
+ -33.009347
+ ],
+ [
+ 142.508763,
+ -33.009347
+ ],
+ [
+ 142.508763,
+ -31.00701
+ ],
+ [
+ 141.507595,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -33.009347
+ ],
+ [
+ 141.507595,
+ -35.011684
+ ],
+ [
+ 142.508763,
+ -35.011684
+ ],
+ [
+ 142.508763,
+ -33.009347
+ ],
+ [
+ 141.507595,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -35.011684
+ ],
+ [
+ 141.507595,
+ -37.014021
+ ],
+ [
+ 142.508763,
+ -37.014021
+ ],
+ [
+ 142.508763,
+ -35.011684
+ ],
+ [
+ 141.507595,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.507595,
+ -37.014021
+ ],
+ [
+ 141.507595,
+ -39.016358
+ ],
+ [
+ 142.508763,
+ -39.016358
+ ],
+ [
+ 142.508763,
+ -37.014021
+ ],
+ [
+ 141.507595,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -8.981306
+ ],
+ [
+ 142.508763,
+ -10.983642
+ ],
+ [
+ 143.509931,
+ -10.983642
+ ],
+ [
+ 143.509931,
+ -8.981306
+ ],
+ [
+ 142.508763,
+ -8.981306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -10.983642
+ ],
+ [
+ 142.508763,
+ -12.985979
+ ],
+ [
+ 143.509931,
+ -12.985979
+ ],
+ [
+ 143.509931,
+ -10.983642
+ ],
+ [
+ 142.508763,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -12.985979
+ ],
+ [
+ 142.508763,
+ -14.988316
+ ],
+ [
+ 143.509931,
+ -14.988316
+ ],
+ [
+ 143.509931,
+ -12.985979
+ ],
+ [
+ 142.508763,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -14.988316
+ ],
+ [
+ 142.508763,
+ -16.990653
+ ],
+ [
+ 143.509931,
+ -16.990653
+ ],
+ [
+ 143.509931,
+ -14.988316
+ ],
+ [
+ 142.508763,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -16.990653
+ ],
+ [
+ 142.508763,
+ -18.99299
+ ],
+ [
+ 143.509931,
+ -18.99299
+ ],
+ [
+ 143.509931,
+ -16.990653
+ ],
+ [
+ 142.508763,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -18.99299
+ ],
+ [
+ 142.508763,
+ -20.995326
+ ],
+ [
+ 143.509931,
+ -20.995326
+ ],
+ [
+ 143.509931,
+ -18.99299
+ ],
+ [
+ 142.508763,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -20.995326
+ ],
+ [
+ 142.508763,
+ -22.997663
+ ],
+ [
+ 143.509931,
+ -22.997663
+ ],
+ [
+ 143.509931,
+ -20.995326
+ ],
+ [
+ 142.508763,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -22.997663
+ ],
+ [
+ 142.508763,
+ -25
+ ],
+ [
+ 143.509931,
+ -25
+ ],
+ [
+ 143.509931,
+ -22.997663
+ ],
+ [
+ 142.508763,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -25
+ ],
+ [
+ 142.508763,
+ -27.002337
+ ],
+ [
+ 143.509931,
+ -27.002337
+ ],
+ [
+ 143.509931,
+ -25
+ ],
+ [
+ 142.508763,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -27.002337
+ ],
+ [
+ 142.508763,
+ -29.004674
+ ],
+ [
+ 143.509931,
+ -29.004674
+ ],
+ [
+ 143.509931,
+ -27.002337
+ ],
+ [
+ 142.508763,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -29.004674
+ ],
+ [
+ 142.508763,
+ -31.00701
+ ],
+ [
+ 143.509931,
+ -31.00701
+ ],
+ [
+ 143.509931,
+ -29.004674
+ ],
+ [
+ 142.508763,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -31.00701
+ ],
+ [
+ 142.508763,
+ -33.009347
+ ],
+ [
+ 143.509931,
+ -33.009347
+ ],
+ [
+ 143.509931,
+ -31.00701
+ ],
+ [
+ 142.508763,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -33.009347
+ ],
+ [
+ 142.508763,
+ -35.011684
+ ],
+ [
+ 143.509931,
+ -35.011684
+ ],
+ [
+ 143.509931,
+ -33.009347
+ ],
+ [
+ 142.508763,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -35.011684
+ ],
+ [
+ 142.508763,
+ -37.014021
+ ],
+ [
+ 143.509931,
+ -37.014021
+ ],
+ [
+ 143.509931,
+ -35.011684
+ ],
+ [
+ 142.508763,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.508763,
+ -37.014021
+ ],
+ [
+ 142.508763,
+ -39.016358
+ ],
+ [
+ 143.509931,
+ -39.016358
+ ],
+ [
+ 143.509931,
+ -37.014021
+ ],
+ [
+ 142.508763,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -10.983642
+ ],
+ [
+ 143.509931,
+ -12.985979
+ ],
+ [
+ 144.5111,
+ -12.985979
+ ],
+ [
+ 144.5111,
+ -10.983642
+ ],
+ [
+ 143.509931,
+ -10.983642
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -12.985979
+ ],
+ [
+ 143.509931,
+ -14.988316
+ ],
+ [
+ 144.5111,
+ -14.988316
+ ],
+ [
+ 144.5111,
+ -12.985979
+ ],
+ [
+ 143.509931,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -14.988316
+ ],
+ [
+ 143.509931,
+ -16.990653
+ ],
+ [
+ 144.5111,
+ -16.990653
+ ],
+ [
+ 144.5111,
+ -14.988316
+ ],
+ [
+ 143.509931,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -16.990653
+ ],
+ [
+ 143.509931,
+ -18.99299
+ ],
+ [
+ 144.5111,
+ -18.99299
+ ],
+ [
+ 144.5111,
+ -16.990653
+ ],
+ [
+ 143.509931,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -18.99299
+ ],
+ [
+ 143.509931,
+ -20.995326
+ ],
+ [
+ 144.5111,
+ -20.995326
+ ],
+ [
+ 144.5111,
+ -18.99299
+ ],
+ [
+ 143.509931,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -20.995326
+ ],
+ [
+ 143.509931,
+ -22.997663
+ ],
+ [
+ 144.5111,
+ -22.997663
+ ],
+ [
+ 144.5111,
+ -20.995326
+ ],
+ [
+ 143.509931,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -22.997663
+ ],
+ [
+ 143.509931,
+ -25
+ ],
+ [
+ 144.5111,
+ -25
+ ],
+ [
+ 144.5111,
+ -22.997663
+ ],
+ [
+ 143.509931,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -25
+ ],
+ [
+ 143.509931,
+ -27.002337
+ ],
+ [
+ 144.5111,
+ -27.002337
+ ],
+ [
+ 144.5111,
+ -25
+ ],
+ [
+ 143.509931,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -27.002337
+ ],
+ [
+ 143.509931,
+ -29.004674
+ ],
+ [
+ 144.5111,
+ -29.004674
+ ],
+ [
+ 144.5111,
+ -27.002337
+ ],
+ [
+ 143.509931,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -29.004674
+ ],
+ [
+ 143.509931,
+ -31.00701
+ ],
+ [
+ 144.5111,
+ -31.00701
+ ],
+ [
+ 144.5111,
+ -29.004674
+ ],
+ [
+ 143.509931,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -31.00701
+ ],
+ [
+ 143.509931,
+ -33.009347
+ ],
+ [
+ 144.5111,
+ -33.009347
+ ],
+ [
+ 144.5111,
+ -31.00701
+ ],
+ [
+ 143.509931,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -33.009347
+ ],
+ [
+ 143.509931,
+ -35.011684
+ ],
+ [
+ 144.5111,
+ -35.011684
+ ],
+ [
+ 144.5111,
+ -33.009347
+ ],
+ [
+ 143.509931,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -35.011684
+ ],
+ [
+ 143.509931,
+ -37.014021
+ ],
+ [
+ 144.5111,
+ -37.014021
+ ],
+ [
+ 144.5111,
+ -35.011684
+ ],
+ [
+ 143.509931,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.509931,
+ -37.014021
+ ],
+ [
+ 143.509931,
+ -39.016358
+ ],
+ [
+ 144.5111,
+ -39.016358
+ ],
+ [
+ 144.5111,
+ -37.014021
+ ],
+ [
+ 143.509931,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -12.985979
+ ],
+ [
+ 144.5111,
+ -14.988316
+ ],
+ [
+ 145.512268,
+ -14.988316
+ ],
+ [
+ 145.512268,
+ -12.985979
+ ],
+ [
+ 144.5111,
+ -12.985979
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -14.988316
+ ],
+ [
+ 144.5111,
+ -16.990653
+ ],
+ [
+ 145.512268,
+ -16.990653
+ ],
+ [
+ 145.512268,
+ -14.988316
+ ],
+ [
+ 144.5111,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -16.990653
+ ],
+ [
+ 144.5111,
+ -18.99299
+ ],
+ [
+ 145.512268,
+ -18.99299
+ ],
+ [
+ 145.512268,
+ -16.990653
+ ],
+ [
+ 144.5111,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -18.99299
+ ],
+ [
+ 144.5111,
+ -20.995326
+ ],
+ [
+ 145.512268,
+ -20.995326
+ ],
+ [
+ 145.512268,
+ -18.99299
+ ],
+ [
+ 144.5111,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -20.995326
+ ],
+ [
+ 144.5111,
+ -22.997663
+ ],
+ [
+ 145.512268,
+ -22.997663
+ ],
+ [
+ 145.512268,
+ -20.995326
+ ],
+ [
+ 144.5111,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -22.997663
+ ],
+ [
+ 144.5111,
+ -25
+ ],
+ [
+ 145.512268,
+ -25
+ ],
+ [
+ 145.512268,
+ -22.997663
+ ],
+ [
+ 144.5111,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -25
+ ],
+ [
+ 144.5111,
+ -27.002337
+ ],
+ [
+ 145.512268,
+ -27.002337
+ ],
+ [
+ 145.512268,
+ -25
+ ],
+ [
+ 144.5111,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -27.002337
+ ],
+ [
+ 144.5111,
+ -29.004674
+ ],
+ [
+ 145.512268,
+ -29.004674
+ ],
+ [
+ 145.512268,
+ -27.002337
+ ],
+ [
+ 144.5111,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -29.004674
+ ],
+ [
+ 144.5111,
+ -31.00701
+ ],
+ [
+ 145.512268,
+ -31.00701
+ ],
+ [
+ 145.512268,
+ -29.004674
+ ],
+ [
+ 144.5111,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -31.00701
+ ],
+ [
+ 144.5111,
+ -33.009347
+ ],
+ [
+ 145.512268,
+ -33.009347
+ ],
+ [
+ 145.512268,
+ -31.00701
+ ],
+ [
+ 144.5111,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -33.009347
+ ],
+ [
+ 144.5111,
+ -35.011684
+ ],
+ [
+ 145.512268,
+ -35.011684
+ ],
+ [
+ 145.512268,
+ -33.009347
+ ],
+ [
+ 144.5111,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -35.011684
+ ],
+ [
+ 144.5111,
+ -37.014021
+ ],
+ [
+ 145.512268,
+ -37.014021
+ ],
+ [
+ 145.512268,
+ -35.011684
+ ],
+ [
+ 144.5111,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.5111,
+ -37.014021
+ ],
+ [
+ 144.5111,
+ -39.016358
+ ],
+ [
+ 145.512268,
+ -39.016358
+ ],
+ [
+ 145.512268,
+ -37.014021
+ ],
+ [
+ 144.5111,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -14.988316
+ ],
+ [
+ 145.512268,
+ -16.990653
+ ],
+ [
+ 146.513437,
+ -16.990653
+ ],
+ [
+ 146.513437,
+ -14.988316
+ ],
+ [
+ 145.512268,
+ -14.988316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -16.990653
+ ],
+ [
+ 145.512268,
+ -18.99299
+ ],
+ [
+ 146.513437,
+ -18.99299
+ ],
+ [
+ 146.513437,
+ -16.990653
+ ],
+ [
+ 145.512268,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -18.99299
+ ],
+ [
+ 145.512268,
+ -20.995326
+ ],
+ [
+ 146.513437,
+ -20.995326
+ ],
+ [
+ 146.513437,
+ -18.99299
+ ],
+ [
+ 145.512268,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -20.995326
+ ],
+ [
+ 145.512268,
+ -22.997663
+ ],
+ [
+ 146.513437,
+ -22.997663
+ ],
+ [
+ 146.513437,
+ -20.995326
+ ],
+ [
+ 145.512268,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -22.997663
+ ],
+ [
+ 145.512268,
+ -25
+ ],
+ [
+ 146.513437,
+ -25
+ ],
+ [
+ 146.513437,
+ -22.997663
+ ],
+ [
+ 145.512268,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -25
+ ],
+ [
+ 145.512268,
+ -27.002337
+ ],
+ [
+ 146.513437,
+ -27.002337
+ ],
+ [
+ 146.513437,
+ -25
+ ],
+ [
+ 145.512268,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -27.002337
+ ],
+ [
+ 145.512268,
+ -29.004674
+ ],
+ [
+ 146.513437,
+ -29.004674
+ ],
+ [
+ 146.513437,
+ -27.002337
+ ],
+ [
+ 145.512268,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -29.004674
+ ],
+ [
+ 145.512268,
+ -31.00701
+ ],
+ [
+ 146.513437,
+ -31.00701
+ ],
+ [
+ 146.513437,
+ -29.004674
+ ],
+ [
+ 145.512268,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -31.00701
+ ],
+ [
+ 145.512268,
+ -33.009347
+ ],
+ [
+ 146.513437,
+ -33.009347
+ ],
+ [
+ 146.513437,
+ -31.00701
+ ],
+ [
+ 145.512268,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -33.009347
+ ],
+ [
+ 145.512268,
+ -35.011684
+ ],
+ [
+ 146.513437,
+ -35.011684
+ ],
+ [
+ 146.513437,
+ -33.009347
+ ],
+ [
+ 145.512268,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -35.011684
+ ],
+ [
+ 145.512268,
+ -37.014021
+ ],
+ [
+ 146.513437,
+ -37.014021
+ ],
+ [
+ 146.513437,
+ -35.011684
+ ],
+ [
+ 145.512268,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.512268,
+ -37.014021
+ ],
+ [
+ 145.512268,
+ -39.016358
+ ],
+ [
+ 146.513437,
+ -39.016358
+ ],
+ [
+ 146.513437,
+ -37.014021
+ ],
+ [
+ 145.512268,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -16.990653
+ ],
+ [
+ 146.513437,
+ -18.99299
+ ],
+ [
+ 147.514605,
+ -18.99299
+ ],
+ [
+ 147.514605,
+ -16.990653
+ ],
+ [
+ 146.513437,
+ -16.990653
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -18.99299
+ ],
+ [
+ 146.513437,
+ -20.995326
+ ],
+ [
+ 147.514605,
+ -20.995326
+ ],
+ [
+ 147.514605,
+ -18.99299
+ ],
+ [
+ 146.513437,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -20.995326
+ ],
+ [
+ 146.513437,
+ -22.997663
+ ],
+ [
+ 147.514605,
+ -22.997663
+ ],
+ [
+ 147.514605,
+ -20.995326
+ ],
+ [
+ 146.513437,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -22.997663
+ ],
+ [
+ 146.513437,
+ -25
+ ],
+ [
+ 147.514605,
+ -25
+ ],
+ [
+ 147.514605,
+ -22.997663
+ ],
+ [
+ 146.513437,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -25
+ ],
+ [
+ 146.513437,
+ -27.002337
+ ],
+ [
+ 147.514605,
+ -27.002337
+ ],
+ [
+ 147.514605,
+ -25
+ ],
+ [
+ 146.513437,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -27.002337
+ ],
+ [
+ 146.513437,
+ -29.004674
+ ],
+ [
+ 147.514605,
+ -29.004674
+ ],
+ [
+ 147.514605,
+ -27.002337
+ ],
+ [
+ 146.513437,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -29.004674
+ ],
+ [
+ 146.513437,
+ -31.00701
+ ],
+ [
+ 147.514605,
+ -31.00701
+ ],
+ [
+ 147.514605,
+ -29.004674
+ ],
+ [
+ 146.513437,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -31.00701
+ ],
+ [
+ 146.513437,
+ -33.009347
+ ],
+ [
+ 147.514605,
+ -33.009347
+ ],
+ [
+ 147.514605,
+ -31.00701
+ ],
+ [
+ 146.513437,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -33.009347
+ ],
+ [
+ 146.513437,
+ -35.011684
+ ],
+ [
+ 147.514605,
+ -35.011684
+ ],
+ [
+ 147.514605,
+ -33.009347
+ ],
+ [
+ 146.513437,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -35.011684
+ ],
+ [
+ 146.513437,
+ -37.014021
+ ],
+ [
+ 147.514605,
+ -37.014021
+ ],
+ [
+ 147.514605,
+ -35.011684
+ ],
+ [
+ 146.513437,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.513437,
+ -37.014021
+ ],
+ [
+ 146.513437,
+ -39.016358
+ ],
+ [
+ 147.514605,
+ -39.016358
+ ],
+ [
+ 147.514605,
+ -37.014021
+ ],
+ [
+ 146.513437,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -18.99299
+ ],
+ [
+ 147.514605,
+ -20.995326
+ ],
+ [
+ 148.515773,
+ -20.995326
+ ],
+ [
+ 148.515773,
+ -18.99299
+ ],
+ [
+ 147.514605,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -20.995326
+ ],
+ [
+ 147.514605,
+ -22.997663
+ ],
+ [
+ 148.515773,
+ -22.997663
+ ],
+ [
+ 148.515773,
+ -20.995326
+ ],
+ [
+ 147.514605,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -22.997663
+ ],
+ [
+ 147.514605,
+ -25
+ ],
+ [
+ 148.515773,
+ -25
+ ],
+ [
+ 148.515773,
+ -22.997663
+ ],
+ [
+ 147.514605,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -25
+ ],
+ [
+ 147.514605,
+ -27.002337
+ ],
+ [
+ 148.515773,
+ -27.002337
+ ],
+ [
+ 148.515773,
+ -25
+ ],
+ [
+ 147.514605,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -27.002337
+ ],
+ [
+ 147.514605,
+ -29.004674
+ ],
+ [
+ 148.515773,
+ -29.004674
+ ],
+ [
+ 148.515773,
+ -27.002337
+ ],
+ [
+ 147.514605,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -29.004674
+ ],
+ [
+ 147.514605,
+ -31.00701
+ ],
+ [
+ 148.515773,
+ -31.00701
+ ],
+ [
+ 148.515773,
+ -29.004674
+ ],
+ [
+ 147.514605,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -31.00701
+ ],
+ [
+ 147.514605,
+ -33.009347
+ ],
+ [
+ 148.515773,
+ -33.009347
+ ],
+ [
+ 148.515773,
+ -31.00701
+ ],
+ [
+ 147.514605,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -33.009347
+ ],
+ [
+ 147.514605,
+ -35.011684
+ ],
+ [
+ 148.515773,
+ -35.011684
+ ],
+ [
+ 148.515773,
+ -33.009347
+ ],
+ [
+ 147.514605,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -35.011684
+ ],
+ [
+ 147.514605,
+ -37.014021
+ ],
+ [
+ 148.515773,
+ -37.014021
+ ],
+ [
+ 148.515773,
+ -35.011684
+ ],
+ [
+ 147.514605,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.514605,
+ -37.014021
+ ],
+ [
+ 147.514605,
+ -39.016358
+ ],
+ [
+ 148.515773,
+ -39.016358
+ ],
+ [
+ 148.515773,
+ -37.014021
+ ],
+ [
+ 147.514605,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -18.99299
+ ],
+ [
+ 148.515773,
+ -20.995326
+ ],
+ [
+ 149.516942,
+ -20.995326
+ ],
+ [
+ 149.516942,
+ -18.99299
+ ],
+ [
+ 148.515773,
+ -18.99299
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -20.995326
+ ],
+ [
+ 148.515773,
+ -22.997663
+ ],
+ [
+ 149.516942,
+ -22.997663
+ ],
+ [
+ 149.516942,
+ -20.995326
+ ],
+ [
+ 148.515773,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -22.997663
+ ],
+ [
+ 148.515773,
+ -25
+ ],
+ [
+ 149.516942,
+ -25
+ ],
+ [
+ 149.516942,
+ -22.997663
+ ],
+ [
+ 148.515773,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -25
+ ],
+ [
+ 148.515773,
+ -27.002337
+ ],
+ [
+ 149.516942,
+ -27.002337
+ ],
+ [
+ 149.516942,
+ -25
+ ],
+ [
+ 148.515773,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -27.002337
+ ],
+ [
+ 148.515773,
+ -29.004674
+ ],
+ [
+ 149.516942,
+ -29.004674
+ ],
+ [
+ 149.516942,
+ -27.002337
+ ],
+ [
+ 148.515773,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -29.004674
+ ],
+ [
+ 148.515773,
+ -31.00701
+ ],
+ [
+ 149.516942,
+ -31.00701
+ ],
+ [
+ 149.516942,
+ -29.004674
+ ],
+ [
+ 148.515773,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -31.00701
+ ],
+ [
+ 148.515773,
+ -33.009347
+ ],
+ [
+ 149.516942,
+ -33.009347
+ ],
+ [
+ 149.516942,
+ -31.00701
+ ],
+ [
+ 148.515773,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -33.009347
+ ],
+ [
+ 148.515773,
+ -35.011684
+ ],
+ [
+ 149.516942,
+ -35.011684
+ ],
+ [
+ 149.516942,
+ -33.009347
+ ],
+ [
+ 148.515773,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -35.011684
+ ],
+ [
+ 148.515773,
+ -37.014021
+ ],
+ [
+ 149.516942,
+ -37.014021
+ ],
+ [
+ 149.516942,
+ -35.011684
+ ],
+ [
+ 148.515773,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.515773,
+ -37.014021
+ ],
+ [
+ 148.515773,
+ -39.016358
+ ],
+ [
+ 149.516942,
+ -39.016358
+ ],
+ [
+ 149.516942,
+ -37.014021
+ ],
+ [
+ 148.515773,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.516942,
+ -20.995326
+ ],
+ [
+ 149.516942,
+ -22.997663
+ ],
+ [
+ 150.51811,
+ -22.997663
+ ],
+ [
+ 150.51811,
+ -20.995326
+ ],
+ [
+ 149.516942,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.516942,
+ -22.997663
+ ],
+ [
+ 149.516942,
+ -25
+ ],
+ [
+ 150.51811,
+ -25
+ ],
+ [
+ 150.51811,
+ -22.997663
+ ],
+ [
+ 149.516942,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.516942,
+ -25
+ ],
+ [
+ 149.516942,
+ -27.002337
+ ],
+ [
+ 150.51811,
+ -27.002337
+ ],
+ [
+ 150.51811,
+ -25
+ ],
+ [
+ 149.516942,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.516942,
+ -27.002337
+ ],
+ [
+ 149.516942,
+ -29.004674
+ ],
+ [
+ 150.51811,
+ -29.004674
+ ],
+ [
+ 150.51811,
+ -27.002337
+ ],
+ [
+ 149.516942,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.516942,
+ -29.004674
+ ],
+ [
+ 149.516942,
+ -31.00701
+ ],
+ [
+ 150.51811,
+ -31.00701
+ ],
+ [
+ 150.51811,
+ -29.004674
+ ],
+ [
+ 149.516942,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.516942,
+ -31.00701
+ ],
+ [
+ 149.516942,
+ -33.009347
+ ],
+ [
+ 150.51811,
+ -33.009347
+ ],
+ [
+ 150.51811,
+ -31.00701
+ ],
+ [
+ 149.516942,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.516942,
+ -33.009347
+ ],
+ [
+ 149.516942,
+ -35.011684
+ ],
+ [
+ 150.51811,
+ -35.011684
+ ],
+ [
+ 150.51811,
+ -33.009347
+ ],
+ [
+ 149.516942,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.516942,
+ -35.011684
+ ],
+ [
+ 149.516942,
+ -37.014021
+ ],
+ [
+ 150.51811,
+ -37.014021
+ ],
+ [
+ 150.51811,
+ -35.011684
+ ],
+ [
+ 149.516942,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.516942,
+ -37.014021
+ ],
+ [
+ 149.516942,
+ -39.016358
+ ],
+ [
+ 150.51811,
+ -39.016358
+ ],
+ [
+ 150.51811,
+ -37.014021
+ ],
+ [
+ 149.516942,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 150.51811,
+ -20.995326
+ ],
+ [
+ 150.51811,
+ -22.997663
+ ],
+ [
+ 151.519279,
+ -22.997663
+ ],
+ [
+ 151.519279,
+ -20.995326
+ ],
+ [
+ 150.51811,
+ -20.995326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 150.51811,
+ -22.997663
+ ],
+ [
+ 150.51811,
+ -25
+ ],
+ [
+ 151.519279,
+ -25
+ ],
+ [
+ 151.519279,
+ -22.997663
+ ],
+ [
+ 150.51811,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 150.51811,
+ -25
+ ],
+ [
+ 150.51811,
+ -27.002337
+ ],
+ [
+ 151.519279,
+ -27.002337
+ ],
+ [
+ 151.519279,
+ -25
+ ],
+ [
+ 150.51811,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 150.51811,
+ -27.002337
+ ],
+ [
+ 150.51811,
+ -29.004674
+ ],
+ [
+ 151.519279,
+ -29.004674
+ ],
+ [
+ 151.519279,
+ -27.002337
+ ],
+ [
+ 150.51811,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 150.51811,
+ -29.004674
+ ],
+ [
+ 150.51811,
+ -31.00701
+ ],
+ [
+ 151.519279,
+ -31.00701
+ ],
+ [
+ 151.519279,
+ -29.004674
+ ],
+ [
+ 150.51811,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 150.51811,
+ -31.00701
+ ],
+ [
+ 150.51811,
+ -33.009347
+ ],
+ [
+ 151.519279,
+ -33.009347
+ ],
+ [
+ 151.519279,
+ -31.00701
+ ],
+ [
+ 150.51811,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 150.51811,
+ -33.009347
+ ],
+ [
+ 150.51811,
+ -35.011684
+ ],
+ [
+ 151.519279,
+ -35.011684
+ ],
+ [
+ 151.519279,
+ -33.009347
+ ],
+ [
+ 150.51811,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 150.51811,
+ -35.011684
+ ],
+ [
+ 150.51811,
+ -37.014021
+ ],
+ [
+ 151.519279,
+ -37.014021
+ ],
+ [
+ 151.519279,
+ -35.011684
+ ],
+ [
+ 150.51811,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 150.51811,
+ -37.014021
+ ],
+ [
+ 150.51811,
+ -39.016358
+ ],
+ [
+ 151.519279,
+ -39.016358
+ ],
+ [
+ 151.519279,
+ -37.014021
+ ],
+ [
+ 150.51811,
+ -37.014021
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 151.519279,
+ -22.997663
+ ],
+ [
+ 151.519279,
+ -25
+ ],
+ [
+ 152.520447,
+ -25
+ ],
+ [
+ 152.520447,
+ -22.997663
+ ],
+ [
+ 151.519279,
+ -22.997663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 151.519279,
+ -25
+ ],
+ [
+ 151.519279,
+ -27.002337
+ ],
+ [
+ 152.520447,
+ -27.002337
+ ],
+ [
+ 152.520447,
+ -25
+ ],
+ [
+ 151.519279,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 151.519279,
+ -27.002337
+ ],
+ [
+ 151.519279,
+ -29.004674
+ ],
+ [
+ 152.520447,
+ -29.004674
+ ],
+ [
+ 152.520447,
+ -27.002337
+ ],
+ [
+ 151.519279,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 151.519279,
+ -29.004674
+ ],
+ [
+ 151.519279,
+ -31.00701
+ ],
+ [
+ 152.520447,
+ -31.00701
+ ],
+ [
+ 152.520447,
+ -29.004674
+ ],
+ [
+ 151.519279,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 151.519279,
+ -31.00701
+ ],
+ [
+ 151.519279,
+ -33.009347
+ ],
+ [
+ 152.520447,
+ -33.009347
+ ],
+ [
+ 152.520447,
+ -31.00701
+ ],
+ [
+ 151.519279,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 151.519279,
+ -33.009347
+ ],
+ [
+ 151.519279,
+ -35.011684
+ ],
+ [
+ 152.520447,
+ -35.011684
+ ],
+ [
+ 152.520447,
+ -33.009347
+ ],
+ [
+ 151.519279,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 151.519279,
+ -35.011684
+ ],
+ [
+ 151.519279,
+ -37.014021
+ ],
+ [
+ 152.520447,
+ -37.014021
+ ],
+ [
+ 152.520447,
+ -35.011684
+ ],
+ [
+ 151.519279,
+ -35.011684
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 152.520447,
+ -25
+ ],
+ [
+ 152.520447,
+ -27.002337
+ ],
+ [
+ 153.521615,
+ -27.002337
+ ],
+ [
+ 153.521615,
+ -25
+ ],
+ [
+ 152.520447,
+ -25
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 152.520447,
+ -27.002337
+ ],
+ [
+ 152.520447,
+ -29.004674
+ ],
+ [
+ 153.521615,
+ -29.004674
+ ],
+ [
+ 153.521615,
+ -27.002337
+ ],
+ [
+ 152.520447,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 152.520447,
+ -29.004674
+ ],
+ [
+ 152.520447,
+ -31.00701
+ ],
+ [
+ 153.521615,
+ -31.00701
+ ],
+ [
+ 153.521615,
+ -29.004674
+ ],
+ [
+ 152.520447,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 152.520447,
+ -31.00701
+ ],
+ [
+ 152.520447,
+ -33.009347
+ ],
+ [
+ 153.521615,
+ -33.009347
+ ],
+ [
+ 153.521615,
+ -31.00701
+ ],
+ [
+ 152.520447,
+ -31.00701
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 152.520447,
+ -33.009347
+ ],
+ [
+ 152.520447,
+ -35.011684
+ ],
+ [
+ 153.521615,
+ -35.011684
+ ],
+ [
+ 153.521615,
+ -33.009347
+ ],
+ [
+ 152.520447,
+ -33.009347
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 153.521615,
+ -27.002337
+ ],
+ [
+ 153.521615,
+ -29.004674
+ ],
+ [
+ 154.522784,
+ -29.004674
+ ],
+ [
+ 154.522784,
+ -27.002337
+ ],
+ [
+ 153.521615,
+ -27.002337
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 153.521615,
+ -29.004674
+ ],
+ [
+ 153.521615,
+ -31.00701
+ ],
+ [
+ 154.522784,
+ -31.00701
+ ],
+ [
+ 154.522784,
+ -29.004674
+ ],
+ [
+ 153.521615,
+ -29.004674
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "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
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-rectangle-grid/test/out/big-bbox-500x100-miles.geojson b/packages/turf-rectangle-grid/test/out/big-bbox-500x100-miles.geojson
new file mode 100644
index 0000000000..fcf2b7585e
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/out/big-bbox-500x100-miles.geojson
@@ -0,0 +1,6804 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -80.027525
+ ],
+ [
+ -199.504452,
+ -78.580209
+ ],
+ [
+ -125.15625,
+ -78.580209
+ ],
+ [
+ -125.15625,
+ -80.027525
+ ],
+ [
+ -199.504452,
+ -80.027525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -78.580209
+ ],
+ [
+ -199.504452,
+ -77.132893
+ ],
+ [
+ -125.15625,
+ -77.132893
+ ],
+ [
+ -125.15625,
+ -78.580209
+ ],
+ [
+ -199.504452,
+ -78.580209
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -77.132893
+ ],
+ [
+ -199.504452,
+ -75.685577
+ ],
+ [
+ -125.15625,
+ -75.685577
+ ],
+ [
+ -125.15625,
+ -77.132893
+ ],
+ [
+ -199.504452,
+ -77.132893
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -75.685577
+ ],
+ [
+ -199.504452,
+ -74.238262
+ ],
+ [
+ -125.15625,
+ -74.238262
+ ],
+ [
+ -125.15625,
+ -75.685577
+ ],
+ [
+ -199.504452,
+ -75.685577
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -74.238262
+ ],
+ [
+ -199.504452,
+ -72.790946
+ ],
+ [
+ -125.15625,
+ -72.790946
+ ],
+ [
+ -125.15625,
+ -74.238262
+ ],
+ [
+ -199.504452,
+ -74.238262
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -72.790946
+ ],
+ [
+ -199.504452,
+ -71.34363
+ ],
+ [
+ -125.15625,
+ -71.34363
+ ],
+ [
+ -125.15625,
+ -72.790946
+ ],
+ [
+ -199.504452,
+ -72.790946
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -71.34363
+ ],
+ [
+ -199.504452,
+ -69.896314
+ ],
+ [
+ -125.15625,
+ -69.896314
+ ],
+ [
+ -125.15625,
+ -71.34363
+ ],
+ [
+ -199.504452,
+ -71.34363
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -69.896314
+ ],
+ [
+ -199.504452,
+ -68.448998
+ ],
+ [
+ -125.15625,
+ -68.448998
+ ],
+ [
+ -125.15625,
+ -69.896314
+ ],
+ [
+ -199.504452,
+ -69.896314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -68.448998
+ ],
+ [
+ -199.504452,
+ -67.001682
+ ],
+ [
+ -125.15625,
+ -67.001682
+ ],
+ [
+ -125.15625,
+ -68.448998
+ ],
+ [
+ -199.504452,
+ -68.448998
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -67.001682
+ ],
+ [
+ -199.504452,
+ -65.554367
+ ],
+ [
+ -125.15625,
+ -65.554367
+ ],
+ [
+ -125.15625,
+ -67.001682
+ ],
+ [
+ -199.504452,
+ -67.001682
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -65.554367
+ ],
+ [
+ -199.504452,
+ -64.107051
+ ],
+ [
+ -125.15625,
+ -64.107051
+ ],
+ [
+ -125.15625,
+ -65.554367
+ ],
+ [
+ -199.504452,
+ -65.554367
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -64.107051
+ ],
+ [
+ -199.504452,
+ -62.659735
+ ],
+ [
+ -125.15625,
+ -62.659735
+ ],
+ [
+ -125.15625,
+ -64.107051
+ ],
+ [
+ -199.504452,
+ -64.107051
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -62.659735
+ ],
+ [
+ -199.504452,
+ -61.212419
+ ],
+ [
+ -125.15625,
+ -61.212419
+ ],
+ [
+ -125.15625,
+ -62.659735
+ ],
+ [
+ -199.504452,
+ -62.659735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -61.212419
+ ],
+ [
+ -199.504452,
+ -59.765103
+ ],
+ [
+ -125.15625,
+ -59.765103
+ ],
+ [
+ -125.15625,
+ -61.212419
+ ],
+ [
+ -199.504452,
+ -61.212419
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -59.765103
+ ],
+ [
+ -199.504452,
+ -58.317787
+ ],
+ [
+ -125.15625,
+ -58.317787
+ ],
+ [
+ -125.15625,
+ -59.765103
+ ],
+ [
+ -199.504452,
+ -59.765103
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -58.317787
+ ],
+ [
+ -199.504452,
+ -56.870472
+ ],
+ [
+ -125.15625,
+ -56.870472
+ ],
+ [
+ -125.15625,
+ -58.317787
+ ],
+ [
+ -199.504452,
+ -58.317787
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -56.870472
+ ],
+ [
+ -199.504452,
+ -55.423156
+ ],
+ [
+ -125.15625,
+ -55.423156
+ ],
+ [
+ -125.15625,
+ -56.870472
+ ],
+ [
+ -199.504452,
+ -56.870472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -55.423156
+ ],
+ [
+ -199.504452,
+ -53.97584
+ ],
+ [
+ -125.15625,
+ -53.97584
+ ],
+ [
+ -125.15625,
+ -55.423156
+ ],
+ [
+ -199.504452,
+ -55.423156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -53.97584
+ ],
+ [
+ -199.504452,
+ -52.528524
+ ],
+ [
+ -125.15625,
+ -52.528524
+ ],
+ [
+ -125.15625,
+ -53.97584
+ ],
+ [
+ -199.504452,
+ -53.97584
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -52.528524
+ ],
+ [
+ -199.504452,
+ -51.081208
+ ],
+ [
+ -125.15625,
+ -51.081208
+ ],
+ [
+ -125.15625,
+ -52.528524
+ ],
+ [
+ -199.504452,
+ -52.528524
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -51.081208
+ ],
+ [
+ -199.504452,
+ -49.633892
+ ],
+ [
+ -125.15625,
+ -49.633892
+ ],
+ [
+ -125.15625,
+ -51.081208
+ ],
+ [
+ -199.504452,
+ -51.081208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -49.633892
+ ],
+ [
+ -199.504452,
+ -48.186577
+ ],
+ [
+ -125.15625,
+ -48.186577
+ ],
+ [
+ -125.15625,
+ -49.633892
+ ],
+ [
+ -199.504452,
+ -49.633892
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -48.186577
+ ],
+ [
+ -199.504452,
+ -46.739261
+ ],
+ [
+ -125.15625,
+ -46.739261
+ ],
+ [
+ -125.15625,
+ -48.186577
+ ],
+ [
+ -199.504452,
+ -48.186577
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -46.739261
+ ],
+ [
+ -199.504452,
+ -45.291945
+ ],
+ [
+ -125.15625,
+ -45.291945
+ ],
+ [
+ -125.15625,
+ -46.739261
+ ],
+ [
+ -199.504452,
+ -46.739261
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -45.291945
+ ],
+ [
+ -199.504452,
+ -43.844629
+ ],
+ [
+ -125.15625,
+ -43.844629
+ ],
+ [
+ -125.15625,
+ -45.291945
+ ],
+ [
+ -199.504452,
+ -45.291945
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -43.844629
+ ],
+ [
+ -199.504452,
+ -42.397313
+ ],
+ [
+ -125.15625,
+ -42.397313
+ ],
+ [
+ -125.15625,
+ -43.844629
+ ],
+ [
+ -199.504452,
+ -43.844629
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -42.397313
+ ],
+ [
+ -199.504452,
+ -40.949997
+ ],
+ [
+ -125.15625,
+ -40.949997
+ ],
+ [
+ -125.15625,
+ -42.397313
+ ],
+ [
+ -199.504452,
+ -42.397313
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -40.949997
+ ],
+ [
+ -199.504452,
+ -39.502682
+ ],
+ [
+ -125.15625,
+ -39.502682
+ ],
+ [
+ -125.15625,
+ -40.949997
+ ],
+ [
+ -199.504452,
+ -40.949997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -39.502682
+ ],
+ [
+ -199.504452,
+ -38.055366
+ ],
+ [
+ -125.15625,
+ -38.055366
+ ],
+ [
+ -125.15625,
+ -39.502682
+ ],
+ [
+ -199.504452,
+ -39.502682
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -38.055366
+ ],
+ [
+ -199.504452,
+ -36.60805
+ ],
+ [
+ -125.15625,
+ -36.60805
+ ],
+ [
+ -125.15625,
+ -38.055366
+ ],
+ [
+ -199.504452,
+ -38.055366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -36.60805
+ ],
+ [
+ -199.504452,
+ -35.160734
+ ],
+ [
+ -125.15625,
+ -35.160734
+ ],
+ [
+ -125.15625,
+ -36.60805
+ ],
+ [
+ -199.504452,
+ -36.60805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -35.160734
+ ],
+ [
+ -199.504452,
+ -33.713418
+ ],
+ [
+ -125.15625,
+ -33.713418
+ ],
+ [
+ -125.15625,
+ -35.160734
+ ],
+ [
+ -199.504452,
+ -35.160734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -33.713418
+ ],
+ [
+ -199.504452,
+ -32.266102
+ ],
+ [
+ -125.15625,
+ -32.266102
+ ],
+ [
+ -125.15625,
+ -33.713418
+ ],
+ [
+ -199.504452,
+ -33.713418
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -32.266102
+ ],
+ [
+ -199.504452,
+ -30.818787
+ ],
+ [
+ -125.15625,
+ -30.818787
+ ],
+ [
+ -125.15625,
+ -32.266102
+ ],
+ [
+ -199.504452,
+ -32.266102
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -30.818787
+ ],
+ [
+ -199.504452,
+ -29.371471
+ ],
+ [
+ -125.15625,
+ -29.371471
+ ],
+ [
+ -125.15625,
+ -30.818787
+ ],
+ [
+ -199.504452,
+ -30.818787
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -29.371471
+ ],
+ [
+ -199.504452,
+ -27.924155
+ ],
+ [
+ -125.15625,
+ -27.924155
+ ],
+ [
+ -125.15625,
+ -29.371471
+ ],
+ [
+ -199.504452,
+ -29.371471
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -27.924155
+ ],
+ [
+ -199.504452,
+ -26.476839
+ ],
+ [
+ -125.15625,
+ -26.476839
+ ],
+ [
+ -125.15625,
+ -27.924155
+ ],
+ [
+ -199.504452,
+ -27.924155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -26.476839
+ ],
+ [
+ -199.504452,
+ -25.029523
+ ],
+ [
+ -125.15625,
+ -25.029523
+ ],
+ [
+ -125.15625,
+ -26.476839
+ ],
+ [
+ -199.504452,
+ -26.476839
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -25.029523
+ ],
+ [
+ -199.504452,
+ -23.582207
+ ],
+ [
+ -125.15625,
+ -23.582207
+ ],
+ [
+ -125.15625,
+ -25.029523
+ ],
+ [
+ -199.504452,
+ -25.029523
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -23.582207
+ ],
+ [
+ -199.504452,
+ -22.134892
+ ],
+ [
+ -125.15625,
+ -22.134892
+ ],
+ [
+ -125.15625,
+ -23.582207
+ ],
+ [
+ -199.504452,
+ -23.582207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -22.134892
+ ],
+ [
+ -199.504452,
+ -20.687576
+ ],
+ [
+ -125.15625,
+ -20.687576
+ ],
+ [
+ -125.15625,
+ -22.134892
+ ],
+ [
+ -199.504452,
+ -22.134892
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -20.687576
+ ],
+ [
+ -199.504452,
+ -19.24026
+ ],
+ [
+ -125.15625,
+ -19.24026
+ ],
+ [
+ -125.15625,
+ -20.687576
+ ],
+ [
+ -199.504452,
+ -20.687576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -19.24026
+ ],
+ [
+ -199.504452,
+ -17.792944
+ ],
+ [
+ -125.15625,
+ -17.792944
+ ],
+ [
+ -125.15625,
+ -19.24026
+ ],
+ [
+ -199.504452,
+ -19.24026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -17.792944
+ ],
+ [
+ -199.504452,
+ -16.345628
+ ],
+ [
+ -125.15625,
+ -16.345628
+ ],
+ [
+ -125.15625,
+ -17.792944
+ ],
+ [
+ -199.504452,
+ -17.792944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -16.345628
+ ],
+ [
+ -199.504452,
+ -14.898312
+ ],
+ [
+ -125.15625,
+ -14.898312
+ ],
+ [
+ -125.15625,
+ -16.345628
+ ],
+ [
+ -199.504452,
+ -16.345628
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -14.898312
+ ],
+ [
+ -199.504452,
+ -13.450997
+ ],
+ [
+ -125.15625,
+ -13.450997
+ ],
+ [
+ -125.15625,
+ -14.898312
+ ],
+ [
+ -199.504452,
+ -14.898312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -13.450997
+ ],
+ [
+ -199.504452,
+ -12.003681
+ ],
+ [
+ -125.15625,
+ -12.003681
+ ],
+ [
+ -125.15625,
+ -13.450997
+ ],
+ [
+ -199.504452,
+ -13.450997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -12.003681
+ ],
+ [
+ -199.504452,
+ -10.556365
+ ],
+ [
+ -125.15625,
+ -10.556365
+ ],
+ [
+ -125.15625,
+ -12.003681
+ ],
+ [
+ -199.504452,
+ -12.003681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -10.556365
+ ],
+ [
+ -199.504452,
+ -9.109049
+ ],
+ [
+ -125.15625,
+ -9.109049
+ ],
+ [
+ -125.15625,
+ -10.556365
+ ],
+ [
+ -199.504452,
+ -10.556365
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -9.109049
+ ],
+ [
+ -199.504452,
+ -7.661733
+ ],
+ [
+ -125.15625,
+ -7.661733
+ ],
+ [
+ -125.15625,
+ -9.109049
+ ],
+ [
+ -199.504452,
+ -9.109049
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -7.661733
+ ],
+ [
+ -199.504452,
+ -6.214417
+ ],
+ [
+ -125.15625,
+ -6.214417
+ ],
+ [
+ -125.15625,
+ -7.661733
+ ],
+ [
+ -199.504452,
+ -7.661733
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -6.214417
+ ],
+ [
+ -199.504452,
+ -4.767102
+ ],
+ [
+ -125.15625,
+ -4.767102
+ ],
+ [
+ -125.15625,
+ -6.214417
+ ],
+ [
+ -199.504452,
+ -6.214417
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -4.767102
+ ],
+ [
+ -199.504452,
+ -3.319786
+ ],
+ [
+ -125.15625,
+ -3.319786
+ ],
+ [
+ -125.15625,
+ -4.767102
+ ],
+ [
+ -199.504452,
+ -4.767102
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -3.319786
+ ],
+ [
+ -199.504452,
+ -1.87247
+ ],
+ [
+ -125.15625,
+ -1.87247
+ ],
+ [
+ -125.15625,
+ -3.319786
+ ],
+ [
+ -199.504452,
+ -3.319786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -1.87247
+ ],
+ [
+ -199.504452,
+ -0.425154
+ ],
+ [
+ -125.15625,
+ -0.425154
+ ],
+ [
+ -125.15625,
+ -1.87247
+ ],
+ [
+ -199.504452,
+ -1.87247
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ -0.425154
+ ],
+ [
+ -199.504452,
+ 1.022162
+ ],
+ [
+ -125.15625,
+ 1.022162
+ ],
+ [
+ -125.15625,
+ -0.425154
+ ],
+ [
+ -199.504452,
+ -0.425154
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 1.022162
+ ],
+ [
+ -199.504452,
+ 2.469478
+ ],
+ [
+ -125.15625,
+ 2.469478
+ ],
+ [
+ -125.15625,
+ 1.022162
+ ],
+ [
+ -199.504452,
+ 1.022162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 2.469478
+ ],
+ [
+ -199.504452,
+ 3.916793
+ ],
+ [
+ -125.15625,
+ 3.916793
+ ],
+ [
+ -125.15625,
+ 2.469478
+ ],
+ [
+ -199.504452,
+ 2.469478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 3.916793
+ ],
+ [
+ -199.504452,
+ 5.364109
+ ],
+ [
+ -125.15625,
+ 5.364109
+ ],
+ [
+ -125.15625,
+ 3.916793
+ ],
+ [
+ -199.504452,
+ 3.916793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 5.364109
+ ],
+ [
+ -199.504452,
+ 6.811425
+ ],
+ [
+ -125.15625,
+ 6.811425
+ ],
+ [
+ -125.15625,
+ 5.364109
+ ],
+ [
+ -199.504452,
+ 5.364109
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 6.811425
+ ],
+ [
+ -199.504452,
+ 8.258741
+ ],
+ [
+ -125.15625,
+ 8.258741
+ ],
+ [
+ -125.15625,
+ 6.811425
+ ],
+ [
+ -199.504452,
+ 6.811425
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 8.258741
+ ],
+ [
+ -199.504452,
+ 9.706057
+ ],
+ [
+ -125.15625,
+ 9.706057
+ ],
+ [
+ -125.15625,
+ 8.258741
+ ],
+ [
+ -199.504452,
+ 8.258741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 9.706057
+ ],
+ [
+ -199.504452,
+ 11.153373
+ ],
+ [
+ -125.15625,
+ 11.153373
+ ],
+ [
+ -125.15625,
+ 9.706057
+ ],
+ [
+ -199.504452,
+ 9.706057
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 11.153373
+ ],
+ [
+ -199.504452,
+ 12.600688
+ ],
+ [
+ -125.15625,
+ 12.600688
+ ],
+ [
+ -125.15625,
+ 11.153373
+ ],
+ [
+ -199.504452,
+ 11.153373
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 12.600688
+ ],
+ [
+ -199.504452,
+ 14.048004
+ ],
+ [
+ -125.15625,
+ 14.048004
+ ],
+ [
+ -125.15625,
+ 12.600688
+ ],
+ [
+ -199.504452,
+ 12.600688
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 14.048004
+ ],
+ [
+ -199.504452,
+ 15.49532
+ ],
+ [
+ -125.15625,
+ 15.49532
+ ],
+ [
+ -125.15625,
+ 14.048004
+ ],
+ [
+ -199.504452,
+ 14.048004
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 15.49532
+ ],
+ [
+ -199.504452,
+ 16.942636
+ ],
+ [
+ -125.15625,
+ 16.942636
+ ],
+ [
+ -125.15625,
+ 15.49532
+ ],
+ [
+ -199.504452,
+ 15.49532
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 16.942636
+ ],
+ [
+ -199.504452,
+ 18.389952
+ ],
+ [
+ -125.15625,
+ 18.389952
+ ],
+ [
+ -125.15625,
+ 16.942636
+ ],
+ [
+ -199.504452,
+ 16.942636
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 18.389952
+ ],
+ [
+ -199.504452,
+ 19.837268
+ ],
+ [
+ -125.15625,
+ 19.837268
+ ],
+ [
+ -125.15625,
+ 18.389952
+ ],
+ [
+ -199.504452,
+ 18.389952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 19.837268
+ ],
+ [
+ -199.504452,
+ 21.284583
+ ],
+ [
+ -125.15625,
+ 21.284583
+ ],
+ [
+ -125.15625,
+ 19.837268
+ ],
+ [
+ -199.504452,
+ 19.837268
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 21.284583
+ ],
+ [
+ -199.504452,
+ 22.731899
+ ],
+ [
+ -125.15625,
+ 22.731899
+ ],
+ [
+ -125.15625,
+ 21.284583
+ ],
+ [
+ -199.504452,
+ 21.284583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 22.731899
+ ],
+ [
+ -199.504452,
+ 24.179215
+ ],
+ [
+ -125.15625,
+ 24.179215
+ ],
+ [
+ -125.15625,
+ 22.731899
+ ],
+ [
+ -199.504452,
+ 22.731899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 24.179215
+ ],
+ [
+ -199.504452,
+ 25.626531
+ ],
+ [
+ -125.15625,
+ 25.626531
+ ],
+ [
+ -125.15625,
+ 24.179215
+ ],
+ [
+ -199.504452,
+ 24.179215
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 25.626531
+ ],
+ [
+ -199.504452,
+ 27.073847
+ ],
+ [
+ -125.15625,
+ 27.073847
+ ],
+ [
+ -125.15625,
+ 25.626531
+ ],
+ [
+ -199.504452,
+ 25.626531
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 27.073847
+ ],
+ [
+ -199.504452,
+ 28.521163
+ ],
+ [
+ -125.15625,
+ 28.521163
+ ],
+ [
+ -125.15625,
+ 27.073847
+ ],
+ [
+ -199.504452,
+ 27.073847
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 28.521163
+ ],
+ [
+ -199.504452,
+ 29.968478
+ ],
+ [
+ -125.15625,
+ 29.968478
+ ],
+ [
+ -125.15625,
+ 28.521163
+ ],
+ [
+ -199.504452,
+ 28.521163
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 29.968478
+ ],
+ [
+ -199.504452,
+ 31.415794
+ ],
+ [
+ -125.15625,
+ 31.415794
+ ],
+ [
+ -125.15625,
+ 29.968478
+ ],
+ [
+ -199.504452,
+ 29.968478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 31.415794
+ ],
+ [
+ -199.504452,
+ 32.86311
+ ],
+ [
+ -125.15625,
+ 32.86311
+ ],
+ [
+ -125.15625,
+ 31.415794
+ ],
+ [
+ -199.504452,
+ 31.415794
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 32.86311
+ ],
+ [
+ -199.504452,
+ 34.310426
+ ],
+ [
+ -125.15625,
+ 34.310426
+ ],
+ [
+ -125.15625,
+ 32.86311
+ ],
+ [
+ -199.504452,
+ 32.86311
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 34.310426
+ ],
+ [
+ -199.504452,
+ 35.757742
+ ],
+ [
+ -125.15625,
+ 35.757742
+ ],
+ [
+ -125.15625,
+ 34.310426
+ ],
+ [
+ -199.504452,
+ 34.310426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 35.757742
+ ],
+ [
+ -199.504452,
+ 37.205058
+ ],
+ [
+ -125.15625,
+ 37.205058
+ ],
+ [
+ -125.15625,
+ 35.757742
+ ],
+ [
+ -199.504452,
+ 35.757742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 37.205058
+ ],
+ [
+ -199.504452,
+ 38.652373
+ ],
+ [
+ -125.15625,
+ 38.652373
+ ],
+ [
+ -125.15625,
+ 37.205058
+ ],
+ [
+ -199.504452,
+ 37.205058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 38.652373
+ ],
+ [
+ -199.504452,
+ 40.099689
+ ],
+ [
+ -125.15625,
+ 40.099689
+ ],
+ [
+ -125.15625,
+ 38.652373
+ ],
+ [
+ -199.504452,
+ 38.652373
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 40.099689
+ ],
+ [
+ -199.504452,
+ 41.547005
+ ],
+ [
+ -125.15625,
+ 41.547005
+ ],
+ [
+ -125.15625,
+ 40.099689
+ ],
+ [
+ -199.504452,
+ 40.099689
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 41.547005
+ ],
+ [
+ -199.504452,
+ 42.994321
+ ],
+ [
+ -125.15625,
+ 42.994321
+ ],
+ [
+ -125.15625,
+ 41.547005
+ ],
+ [
+ -199.504452,
+ 41.547005
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 42.994321
+ ],
+ [
+ -199.504452,
+ 44.441637
+ ],
+ [
+ -125.15625,
+ 44.441637
+ ],
+ [
+ -125.15625,
+ 42.994321
+ ],
+ [
+ -199.504452,
+ 42.994321
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 44.441637
+ ],
+ [
+ -199.504452,
+ 45.888952
+ ],
+ [
+ -125.15625,
+ 45.888952
+ ],
+ [
+ -125.15625,
+ 44.441637
+ ],
+ [
+ -199.504452,
+ 44.441637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 45.888952
+ ],
+ [
+ -199.504452,
+ 47.336268
+ ],
+ [
+ -125.15625,
+ 47.336268
+ ],
+ [
+ -125.15625,
+ 45.888952
+ ],
+ [
+ -199.504452,
+ 45.888952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 47.336268
+ ],
+ [
+ -199.504452,
+ 48.783584
+ ],
+ [
+ -125.15625,
+ 48.783584
+ ],
+ [
+ -125.15625,
+ 47.336268
+ ],
+ [
+ -199.504452,
+ 47.336268
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 48.783584
+ ],
+ [
+ -199.504452,
+ 50.2309
+ ],
+ [
+ -125.15625,
+ 50.2309
+ ],
+ [
+ -125.15625,
+ 48.783584
+ ],
+ [
+ -199.504452,
+ 48.783584
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 50.2309
+ ],
+ [
+ -199.504452,
+ 51.678216
+ ],
+ [
+ -125.15625,
+ 51.678216
+ ],
+ [
+ -125.15625,
+ 50.2309
+ ],
+ [
+ -199.504452,
+ 50.2309
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 51.678216
+ ],
+ [
+ -199.504452,
+ 53.125532
+ ],
+ [
+ -125.15625,
+ 53.125532
+ ],
+ [
+ -125.15625,
+ 51.678216
+ ],
+ [
+ -199.504452,
+ 51.678216
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 53.125532
+ ],
+ [
+ -199.504452,
+ 54.572847
+ ],
+ [
+ -125.15625,
+ 54.572847
+ ],
+ [
+ -125.15625,
+ 53.125532
+ ],
+ [
+ -199.504452,
+ 53.125532
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 54.572847
+ ],
+ [
+ -199.504452,
+ 56.020163
+ ],
+ [
+ -125.15625,
+ 56.020163
+ ],
+ [
+ -125.15625,
+ 54.572847
+ ],
+ [
+ -199.504452,
+ 54.572847
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 56.020163
+ ],
+ [
+ -199.504452,
+ 57.467479
+ ],
+ [
+ -125.15625,
+ 57.467479
+ ],
+ [
+ -125.15625,
+ 56.020163
+ ],
+ [
+ -199.504452,
+ 56.020163
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 57.467479
+ ],
+ [
+ -199.504452,
+ 58.914795
+ ],
+ [
+ -125.15625,
+ 58.914795
+ ],
+ [
+ -125.15625,
+ 57.467479
+ ],
+ [
+ -199.504452,
+ 57.467479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 58.914795
+ ],
+ [
+ -199.504452,
+ 60.362111
+ ],
+ [
+ -125.15625,
+ 60.362111
+ ],
+ [
+ -125.15625,
+ 58.914795
+ ],
+ [
+ -199.504452,
+ 58.914795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 60.362111
+ ],
+ [
+ -199.504452,
+ 61.809427
+ ],
+ [
+ -125.15625,
+ 61.809427
+ ],
+ [
+ -125.15625,
+ 60.362111
+ ],
+ [
+ -199.504452,
+ 60.362111
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 61.809427
+ ],
+ [
+ -199.504452,
+ 63.256742
+ ],
+ [
+ -125.15625,
+ 63.256742
+ ],
+ [
+ -125.15625,
+ 61.809427
+ ],
+ [
+ -199.504452,
+ 61.809427
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 63.256742
+ ],
+ [
+ -199.504452,
+ 64.704058
+ ],
+ [
+ -125.15625,
+ 64.704058
+ ],
+ [
+ -125.15625,
+ 63.256742
+ ],
+ [
+ -199.504452,
+ 63.256742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 64.704058
+ ],
+ [
+ -199.504452,
+ 66.151374
+ ],
+ [
+ -125.15625,
+ 66.151374
+ ],
+ [
+ -125.15625,
+ 64.704058
+ ],
+ [
+ -199.504452,
+ 64.704058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 66.151374
+ ],
+ [
+ -199.504452,
+ 67.59869
+ ],
+ [
+ -125.15625,
+ 67.59869
+ ],
+ [
+ -125.15625,
+ 66.151374
+ ],
+ [
+ -199.504452,
+ 66.151374
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 67.59869
+ ],
+ [
+ -199.504452,
+ 69.046006
+ ],
+ [
+ -125.15625,
+ 69.046006
+ ],
+ [
+ -125.15625,
+ 67.59869
+ ],
+ [
+ -199.504452,
+ 67.59869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 69.046006
+ ],
+ [
+ -199.504452,
+ 70.493322
+ ],
+ [
+ -125.15625,
+ 70.493322
+ ],
+ [
+ -125.15625,
+ 69.046006
+ ],
+ [
+ -199.504452,
+ 69.046006
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 70.493322
+ ],
+ [
+ -199.504452,
+ 71.940637
+ ],
+ [
+ -125.15625,
+ 71.940637
+ ],
+ [
+ -125.15625,
+ 70.493322
+ ],
+ [
+ -199.504452,
+ 70.493322
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 71.940637
+ ],
+ [
+ -199.504452,
+ 73.387953
+ ],
+ [
+ -125.15625,
+ 73.387953
+ ],
+ [
+ -125.15625,
+ 71.940637
+ ],
+ [
+ -199.504452,
+ 71.940637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 73.387953
+ ],
+ [
+ -199.504452,
+ 74.835269
+ ],
+ [
+ -125.15625,
+ 74.835269
+ ],
+ [
+ -125.15625,
+ 73.387953
+ ],
+ [
+ -199.504452,
+ 73.387953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 74.835269
+ ],
+ [
+ -199.504452,
+ 76.282585
+ ],
+ [
+ -125.15625,
+ 76.282585
+ ],
+ [
+ -125.15625,
+ 74.835269
+ ],
+ [
+ -199.504452,
+ 74.835269
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -199.504452,
+ 76.282585
+ ],
+ [
+ -199.504452,
+ 77.729901
+ ],
+ [
+ -125.15625,
+ 77.729901
+ ],
+ [
+ -125.15625,
+ 76.282585
+ ],
+ [
+ -199.504452,
+ 76.282585
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -80.027525
+ ],
+ [
+ -125.15625,
+ -78.580209
+ ],
+ [
+ -50.808048,
+ -78.580209
+ ],
+ [
+ -50.808048,
+ -80.027525
+ ],
+ [
+ -125.15625,
+ -80.027525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -78.580209
+ ],
+ [
+ -125.15625,
+ -77.132893
+ ],
+ [
+ -50.808048,
+ -77.132893
+ ],
+ [
+ -50.808048,
+ -78.580209
+ ],
+ [
+ -125.15625,
+ -78.580209
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -77.132893
+ ],
+ [
+ -125.15625,
+ -75.685577
+ ],
+ [
+ -50.808048,
+ -75.685577
+ ],
+ [
+ -50.808048,
+ -77.132893
+ ],
+ [
+ -125.15625,
+ -77.132893
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -75.685577
+ ],
+ [
+ -125.15625,
+ -74.238262
+ ],
+ [
+ -50.808048,
+ -74.238262
+ ],
+ [
+ -50.808048,
+ -75.685577
+ ],
+ [
+ -125.15625,
+ -75.685577
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -74.238262
+ ],
+ [
+ -125.15625,
+ -72.790946
+ ],
+ [
+ -50.808048,
+ -72.790946
+ ],
+ [
+ -50.808048,
+ -74.238262
+ ],
+ [
+ -125.15625,
+ -74.238262
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -72.790946
+ ],
+ [
+ -125.15625,
+ -71.34363
+ ],
+ [
+ -50.808048,
+ -71.34363
+ ],
+ [
+ -50.808048,
+ -72.790946
+ ],
+ [
+ -125.15625,
+ -72.790946
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -71.34363
+ ],
+ [
+ -125.15625,
+ -69.896314
+ ],
+ [
+ -50.808048,
+ -69.896314
+ ],
+ [
+ -50.808048,
+ -71.34363
+ ],
+ [
+ -125.15625,
+ -71.34363
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -69.896314
+ ],
+ [
+ -125.15625,
+ -68.448998
+ ],
+ [
+ -50.808048,
+ -68.448998
+ ],
+ [
+ -50.808048,
+ -69.896314
+ ],
+ [
+ -125.15625,
+ -69.896314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -68.448998
+ ],
+ [
+ -125.15625,
+ -67.001682
+ ],
+ [
+ -50.808048,
+ -67.001682
+ ],
+ [
+ -50.808048,
+ -68.448998
+ ],
+ [
+ -125.15625,
+ -68.448998
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -67.001682
+ ],
+ [
+ -125.15625,
+ -65.554367
+ ],
+ [
+ -50.808048,
+ -65.554367
+ ],
+ [
+ -50.808048,
+ -67.001682
+ ],
+ [
+ -125.15625,
+ -67.001682
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -65.554367
+ ],
+ [
+ -125.15625,
+ -64.107051
+ ],
+ [
+ -50.808048,
+ -64.107051
+ ],
+ [
+ -50.808048,
+ -65.554367
+ ],
+ [
+ -125.15625,
+ -65.554367
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -64.107051
+ ],
+ [
+ -125.15625,
+ -62.659735
+ ],
+ [
+ -50.808048,
+ -62.659735
+ ],
+ [
+ -50.808048,
+ -64.107051
+ ],
+ [
+ -125.15625,
+ -64.107051
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -62.659735
+ ],
+ [
+ -125.15625,
+ -61.212419
+ ],
+ [
+ -50.808048,
+ -61.212419
+ ],
+ [
+ -50.808048,
+ -62.659735
+ ],
+ [
+ -125.15625,
+ -62.659735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -61.212419
+ ],
+ [
+ -125.15625,
+ -59.765103
+ ],
+ [
+ -50.808048,
+ -59.765103
+ ],
+ [
+ -50.808048,
+ -61.212419
+ ],
+ [
+ -125.15625,
+ -61.212419
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -59.765103
+ ],
+ [
+ -125.15625,
+ -58.317787
+ ],
+ [
+ -50.808048,
+ -58.317787
+ ],
+ [
+ -50.808048,
+ -59.765103
+ ],
+ [
+ -125.15625,
+ -59.765103
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -58.317787
+ ],
+ [
+ -125.15625,
+ -56.870472
+ ],
+ [
+ -50.808048,
+ -56.870472
+ ],
+ [
+ -50.808048,
+ -58.317787
+ ],
+ [
+ -125.15625,
+ -58.317787
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -56.870472
+ ],
+ [
+ -125.15625,
+ -55.423156
+ ],
+ [
+ -50.808048,
+ -55.423156
+ ],
+ [
+ -50.808048,
+ -56.870472
+ ],
+ [
+ -125.15625,
+ -56.870472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -55.423156
+ ],
+ [
+ -125.15625,
+ -53.97584
+ ],
+ [
+ -50.808048,
+ -53.97584
+ ],
+ [
+ -50.808048,
+ -55.423156
+ ],
+ [
+ -125.15625,
+ -55.423156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -53.97584
+ ],
+ [
+ -125.15625,
+ -52.528524
+ ],
+ [
+ -50.808048,
+ -52.528524
+ ],
+ [
+ -50.808048,
+ -53.97584
+ ],
+ [
+ -125.15625,
+ -53.97584
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -52.528524
+ ],
+ [
+ -125.15625,
+ -51.081208
+ ],
+ [
+ -50.808048,
+ -51.081208
+ ],
+ [
+ -50.808048,
+ -52.528524
+ ],
+ [
+ -125.15625,
+ -52.528524
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -51.081208
+ ],
+ [
+ -125.15625,
+ -49.633892
+ ],
+ [
+ -50.808048,
+ -49.633892
+ ],
+ [
+ -50.808048,
+ -51.081208
+ ],
+ [
+ -125.15625,
+ -51.081208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -49.633892
+ ],
+ [
+ -125.15625,
+ -48.186577
+ ],
+ [
+ -50.808048,
+ -48.186577
+ ],
+ [
+ -50.808048,
+ -49.633892
+ ],
+ [
+ -125.15625,
+ -49.633892
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -48.186577
+ ],
+ [
+ -125.15625,
+ -46.739261
+ ],
+ [
+ -50.808048,
+ -46.739261
+ ],
+ [
+ -50.808048,
+ -48.186577
+ ],
+ [
+ -125.15625,
+ -48.186577
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -46.739261
+ ],
+ [
+ -125.15625,
+ -45.291945
+ ],
+ [
+ -50.808048,
+ -45.291945
+ ],
+ [
+ -50.808048,
+ -46.739261
+ ],
+ [
+ -125.15625,
+ -46.739261
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -45.291945
+ ],
+ [
+ -125.15625,
+ -43.844629
+ ],
+ [
+ -50.808048,
+ -43.844629
+ ],
+ [
+ -50.808048,
+ -45.291945
+ ],
+ [
+ -125.15625,
+ -45.291945
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -43.844629
+ ],
+ [
+ -125.15625,
+ -42.397313
+ ],
+ [
+ -50.808048,
+ -42.397313
+ ],
+ [
+ -50.808048,
+ -43.844629
+ ],
+ [
+ -125.15625,
+ -43.844629
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -42.397313
+ ],
+ [
+ -125.15625,
+ -40.949997
+ ],
+ [
+ -50.808048,
+ -40.949997
+ ],
+ [
+ -50.808048,
+ -42.397313
+ ],
+ [
+ -125.15625,
+ -42.397313
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -40.949997
+ ],
+ [
+ -125.15625,
+ -39.502682
+ ],
+ [
+ -50.808048,
+ -39.502682
+ ],
+ [
+ -50.808048,
+ -40.949997
+ ],
+ [
+ -125.15625,
+ -40.949997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -39.502682
+ ],
+ [
+ -125.15625,
+ -38.055366
+ ],
+ [
+ -50.808048,
+ -38.055366
+ ],
+ [
+ -50.808048,
+ -39.502682
+ ],
+ [
+ -125.15625,
+ -39.502682
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -38.055366
+ ],
+ [
+ -125.15625,
+ -36.60805
+ ],
+ [
+ -50.808048,
+ -36.60805
+ ],
+ [
+ -50.808048,
+ -38.055366
+ ],
+ [
+ -125.15625,
+ -38.055366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -36.60805
+ ],
+ [
+ -125.15625,
+ -35.160734
+ ],
+ [
+ -50.808048,
+ -35.160734
+ ],
+ [
+ -50.808048,
+ -36.60805
+ ],
+ [
+ -125.15625,
+ -36.60805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -35.160734
+ ],
+ [
+ -125.15625,
+ -33.713418
+ ],
+ [
+ -50.808048,
+ -33.713418
+ ],
+ [
+ -50.808048,
+ -35.160734
+ ],
+ [
+ -125.15625,
+ -35.160734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -33.713418
+ ],
+ [
+ -125.15625,
+ -32.266102
+ ],
+ [
+ -50.808048,
+ -32.266102
+ ],
+ [
+ -50.808048,
+ -33.713418
+ ],
+ [
+ -125.15625,
+ -33.713418
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -32.266102
+ ],
+ [
+ -125.15625,
+ -30.818787
+ ],
+ [
+ -50.808048,
+ -30.818787
+ ],
+ [
+ -50.808048,
+ -32.266102
+ ],
+ [
+ -125.15625,
+ -32.266102
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -30.818787
+ ],
+ [
+ -125.15625,
+ -29.371471
+ ],
+ [
+ -50.808048,
+ -29.371471
+ ],
+ [
+ -50.808048,
+ -30.818787
+ ],
+ [
+ -125.15625,
+ -30.818787
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -29.371471
+ ],
+ [
+ -125.15625,
+ -27.924155
+ ],
+ [
+ -50.808048,
+ -27.924155
+ ],
+ [
+ -50.808048,
+ -29.371471
+ ],
+ [
+ -125.15625,
+ -29.371471
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -27.924155
+ ],
+ [
+ -125.15625,
+ -26.476839
+ ],
+ [
+ -50.808048,
+ -26.476839
+ ],
+ [
+ -50.808048,
+ -27.924155
+ ],
+ [
+ -125.15625,
+ -27.924155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -26.476839
+ ],
+ [
+ -125.15625,
+ -25.029523
+ ],
+ [
+ -50.808048,
+ -25.029523
+ ],
+ [
+ -50.808048,
+ -26.476839
+ ],
+ [
+ -125.15625,
+ -26.476839
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -25.029523
+ ],
+ [
+ -125.15625,
+ -23.582207
+ ],
+ [
+ -50.808048,
+ -23.582207
+ ],
+ [
+ -50.808048,
+ -25.029523
+ ],
+ [
+ -125.15625,
+ -25.029523
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -23.582207
+ ],
+ [
+ -125.15625,
+ -22.134892
+ ],
+ [
+ -50.808048,
+ -22.134892
+ ],
+ [
+ -50.808048,
+ -23.582207
+ ],
+ [
+ -125.15625,
+ -23.582207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -22.134892
+ ],
+ [
+ -125.15625,
+ -20.687576
+ ],
+ [
+ -50.808048,
+ -20.687576
+ ],
+ [
+ -50.808048,
+ -22.134892
+ ],
+ [
+ -125.15625,
+ -22.134892
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -20.687576
+ ],
+ [
+ -125.15625,
+ -19.24026
+ ],
+ [
+ -50.808048,
+ -19.24026
+ ],
+ [
+ -50.808048,
+ -20.687576
+ ],
+ [
+ -125.15625,
+ -20.687576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -19.24026
+ ],
+ [
+ -125.15625,
+ -17.792944
+ ],
+ [
+ -50.808048,
+ -17.792944
+ ],
+ [
+ -50.808048,
+ -19.24026
+ ],
+ [
+ -125.15625,
+ -19.24026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -17.792944
+ ],
+ [
+ -125.15625,
+ -16.345628
+ ],
+ [
+ -50.808048,
+ -16.345628
+ ],
+ [
+ -50.808048,
+ -17.792944
+ ],
+ [
+ -125.15625,
+ -17.792944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -16.345628
+ ],
+ [
+ -125.15625,
+ -14.898312
+ ],
+ [
+ -50.808048,
+ -14.898312
+ ],
+ [
+ -50.808048,
+ -16.345628
+ ],
+ [
+ -125.15625,
+ -16.345628
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -14.898312
+ ],
+ [
+ -125.15625,
+ -13.450997
+ ],
+ [
+ -50.808048,
+ -13.450997
+ ],
+ [
+ -50.808048,
+ -14.898312
+ ],
+ [
+ -125.15625,
+ -14.898312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -13.450997
+ ],
+ [
+ -125.15625,
+ -12.003681
+ ],
+ [
+ -50.808048,
+ -12.003681
+ ],
+ [
+ -50.808048,
+ -13.450997
+ ],
+ [
+ -125.15625,
+ -13.450997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -12.003681
+ ],
+ [
+ -125.15625,
+ -10.556365
+ ],
+ [
+ -50.808048,
+ -10.556365
+ ],
+ [
+ -50.808048,
+ -12.003681
+ ],
+ [
+ -125.15625,
+ -12.003681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -10.556365
+ ],
+ [
+ -125.15625,
+ -9.109049
+ ],
+ [
+ -50.808048,
+ -9.109049
+ ],
+ [
+ -50.808048,
+ -10.556365
+ ],
+ [
+ -125.15625,
+ -10.556365
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -9.109049
+ ],
+ [
+ -125.15625,
+ -7.661733
+ ],
+ [
+ -50.808048,
+ -7.661733
+ ],
+ [
+ -50.808048,
+ -9.109049
+ ],
+ [
+ -125.15625,
+ -9.109049
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -7.661733
+ ],
+ [
+ -125.15625,
+ -6.214417
+ ],
+ [
+ -50.808048,
+ -6.214417
+ ],
+ [
+ -50.808048,
+ -7.661733
+ ],
+ [
+ -125.15625,
+ -7.661733
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -6.214417
+ ],
+ [
+ -125.15625,
+ -4.767102
+ ],
+ [
+ -50.808048,
+ -4.767102
+ ],
+ [
+ -50.808048,
+ -6.214417
+ ],
+ [
+ -125.15625,
+ -6.214417
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -4.767102
+ ],
+ [
+ -125.15625,
+ -3.319786
+ ],
+ [
+ -50.808048,
+ -3.319786
+ ],
+ [
+ -50.808048,
+ -4.767102
+ ],
+ [
+ -125.15625,
+ -4.767102
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -3.319786
+ ],
+ [
+ -125.15625,
+ -1.87247
+ ],
+ [
+ -50.808048,
+ -1.87247
+ ],
+ [
+ -50.808048,
+ -3.319786
+ ],
+ [
+ -125.15625,
+ -3.319786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -1.87247
+ ],
+ [
+ -125.15625,
+ -0.425154
+ ],
+ [
+ -50.808048,
+ -0.425154
+ ],
+ [
+ -50.808048,
+ -1.87247
+ ],
+ [
+ -125.15625,
+ -1.87247
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ -0.425154
+ ],
+ [
+ -125.15625,
+ 1.022162
+ ],
+ [
+ -50.808048,
+ 1.022162
+ ],
+ [
+ -50.808048,
+ -0.425154
+ ],
+ [
+ -125.15625,
+ -0.425154
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 1.022162
+ ],
+ [
+ -125.15625,
+ 2.469478
+ ],
+ [
+ -50.808048,
+ 2.469478
+ ],
+ [
+ -50.808048,
+ 1.022162
+ ],
+ [
+ -125.15625,
+ 1.022162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 2.469478
+ ],
+ [
+ -125.15625,
+ 3.916793
+ ],
+ [
+ -50.808048,
+ 3.916793
+ ],
+ [
+ -50.808048,
+ 2.469478
+ ],
+ [
+ -125.15625,
+ 2.469478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 3.916793
+ ],
+ [
+ -125.15625,
+ 5.364109
+ ],
+ [
+ -50.808048,
+ 5.364109
+ ],
+ [
+ -50.808048,
+ 3.916793
+ ],
+ [
+ -125.15625,
+ 3.916793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 5.364109
+ ],
+ [
+ -125.15625,
+ 6.811425
+ ],
+ [
+ -50.808048,
+ 6.811425
+ ],
+ [
+ -50.808048,
+ 5.364109
+ ],
+ [
+ -125.15625,
+ 5.364109
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 6.811425
+ ],
+ [
+ -125.15625,
+ 8.258741
+ ],
+ [
+ -50.808048,
+ 8.258741
+ ],
+ [
+ -50.808048,
+ 6.811425
+ ],
+ [
+ -125.15625,
+ 6.811425
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 8.258741
+ ],
+ [
+ -125.15625,
+ 9.706057
+ ],
+ [
+ -50.808048,
+ 9.706057
+ ],
+ [
+ -50.808048,
+ 8.258741
+ ],
+ [
+ -125.15625,
+ 8.258741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 9.706057
+ ],
+ [
+ -125.15625,
+ 11.153373
+ ],
+ [
+ -50.808048,
+ 11.153373
+ ],
+ [
+ -50.808048,
+ 9.706057
+ ],
+ [
+ -125.15625,
+ 9.706057
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 11.153373
+ ],
+ [
+ -125.15625,
+ 12.600688
+ ],
+ [
+ -50.808048,
+ 12.600688
+ ],
+ [
+ -50.808048,
+ 11.153373
+ ],
+ [
+ -125.15625,
+ 11.153373
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 12.600688
+ ],
+ [
+ -125.15625,
+ 14.048004
+ ],
+ [
+ -50.808048,
+ 14.048004
+ ],
+ [
+ -50.808048,
+ 12.600688
+ ],
+ [
+ -125.15625,
+ 12.600688
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 14.048004
+ ],
+ [
+ -125.15625,
+ 15.49532
+ ],
+ [
+ -50.808048,
+ 15.49532
+ ],
+ [
+ -50.808048,
+ 14.048004
+ ],
+ [
+ -125.15625,
+ 14.048004
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 15.49532
+ ],
+ [
+ -125.15625,
+ 16.942636
+ ],
+ [
+ -50.808048,
+ 16.942636
+ ],
+ [
+ -50.808048,
+ 15.49532
+ ],
+ [
+ -125.15625,
+ 15.49532
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 16.942636
+ ],
+ [
+ -125.15625,
+ 18.389952
+ ],
+ [
+ -50.808048,
+ 18.389952
+ ],
+ [
+ -50.808048,
+ 16.942636
+ ],
+ [
+ -125.15625,
+ 16.942636
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 18.389952
+ ],
+ [
+ -125.15625,
+ 19.837268
+ ],
+ [
+ -50.808048,
+ 19.837268
+ ],
+ [
+ -50.808048,
+ 18.389952
+ ],
+ [
+ -125.15625,
+ 18.389952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 19.837268
+ ],
+ [
+ -125.15625,
+ 21.284583
+ ],
+ [
+ -50.808048,
+ 21.284583
+ ],
+ [
+ -50.808048,
+ 19.837268
+ ],
+ [
+ -125.15625,
+ 19.837268
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 21.284583
+ ],
+ [
+ -125.15625,
+ 22.731899
+ ],
+ [
+ -50.808048,
+ 22.731899
+ ],
+ [
+ -50.808048,
+ 21.284583
+ ],
+ [
+ -125.15625,
+ 21.284583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 22.731899
+ ],
+ [
+ -125.15625,
+ 24.179215
+ ],
+ [
+ -50.808048,
+ 24.179215
+ ],
+ [
+ -50.808048,
+ 22.731899
+ ],
+ [
+ -125.15625,
+ 22.731899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 24.179215
+ ],
+ [
+ -125.15625,
+ 25.626531
+ ],
+ [
+ -50.808048,
+ 25.626531
+ ],
+ [
+ -50.808048,
+ 24.179215
+ ],
+ [
+ -125.15625,
+ 24.179215
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 25.626531
+ ],
+ [
+ -125.15625,
+ 27.073847
+ ],
+ [
+ -50.808048,
+ 27.073847
+ ],
+ [
+ -50.808048,
+ 25.626531
+ ],
+ [
+ -125.15625,
+ 25.626531
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 27.073847
+ ],
+ [
+ -125.15625,
+ 28.521163
+ ],
+ [
+ -50.808048,
+ 28.521163
+ ],
+ [
+ -50.808048,
+ 27.073847
+ ],
+ [
+ -125.15625,
+ 27.073847
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 28.521163
+ ],
+ [
+ -125.15625,
+ 29.968478
+ ],
+ [
+ -50.808048,
+ 29.968478
+ ],
+ [
+ -50.808048,
+ 28.521163
+ ],
+ [
+ -125.15625,
+ 28.521163
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 29.968478
+ ],
+ [
+ -125.15625,
+ 31.415794
+ ],
+ [
+ -50.808048,
+ 31.415794
+ ],
+ [
+ -50.808048,
+ 29.968478
+ ],
+ [
+ -125.15625,
+ 29.968478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 31.415794
+ ],
+ [
+ -125.15625,
+ 32.86311
+ ],
+ [
+ -50.808048,
+ 32.86311
+ ],
+ [
+ -50.808048,
+ 31.415794
+ ],
+ [
+ -125.15625,
+ 31.415794
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 32.86311
+ ],
+ [
+ -125.15625,
+ 34.310426
+ ],
+ [
+ -50.808048,
+ 34.310426
+ ],
+ [
+ -50.808048,
+ 32.86311
+ ],
+ [
+ -125.15625,
+ 32.86311
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 34.310426
+ ],
+ [
+ -125.15625,
+ 35.757742
+ ],
+ [
+ -50.808048,
+ 35.757742
+ ],
+ [
+ -50.808048,
+ 34.310426
+ ],
+ [
+ -125.15625,
+ 34.310426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 35.757742
+ ],
+ [
+ -125.15625,
+ 37.205058
+ ],
+ [
+ -50.808048,
+ 37.205058
+ ],
+ [
+ -50.808048,
+ 35.757742
+ ],
+ [
+ -125.15625,
+ 35.757742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 37.205058
+ ],
+ [
+ -125.15625,
+ 38.652373
+ ],
+ [
+ -50.808048,
+ 38.652373
+ ],
+ [
+ -50.808048,
+ 37.205058
+ ],
+ [
+ -125.15625,
+ 37.205058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 38.652373
+ ],
+ [
+ -125.15625,
+ 40.099689
+ ],
+ [
+ -50.808048,
+ 40.099689
+ ],
+ [
+ -50.808048,
+ 38.652373
+ ],
+ [
+ -125.15625,
+ 38.652373
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 40.099689
+ ],
+ [
+ -125.15625,
+ 41.547005
+ ],
+ [
+ -50.808048,
+ 41.547005
+ ],
+ [
+ -50.808048,
+ 40.099689
+ ],
+ [
+ -125.15625,
+ 40.099689
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 41.547005
+ ],
+ [
+ -125.15625,
+ 42.994321
+ ],
+ [
+ -50.808048,
+ 42.994321
+ ],
+ [
+ -50.808048,
+ 41.547005
+ ],
+ [
+ -125.15625,
+ 41.547005
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 42.994321
+ ],
+ [
+ -125.15625,
+ 44.441637
+ ],
+ [
+ -50.808048,
+ 44.441637
+ ],
+ [
+ -50.808048,
+ 42.994321
+ ],
+ [
+ -125.15625,
+ 42.994321
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 44.441637
+ ],
+ [
+ -125.15625,
+ 45.888952
+ ],
+ [
+ -50.808048,
+ 45.888952
+ ],
+ [
+ -50.808048,
+ 44.441637
+ ],
+ [
+ -125.15625,
+ 44.441637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 45.888952
+ ],
+ [
+ -125.15625,
+ 47.336268
+ ],
+ [
+ -50.808048,
+ 47.336268
+ ],
+ [
+ -50.808048,
+ 45.888952
+ ],
+ [
+ -125.15625,
+ 45.888952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 47.336268
+ ],
+ [
+ -125.15625,
+ 48.783584
+ ],
+ [
+ -50.808048,
+ 48.783584
+ ],
+ [
+ -50.808048,
+ 47.336268
+ ],
+ [
+ -125.15625,
+ 47.336268
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 48.783584
+ ],
+ [
+ -125.15625,
+ 50.2309
+ ],
+ [
+ -50.808048,
+ 50.2309
+ ],
+ [
+ -50.808048,
+ 48.783584
+ ],
+ [
+ -125.15625,
+ 48.783584
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 50.2309
+ ],
+ [
+ -125.15625,
+ 51.678216
+ ],
+ [
+ -50.808048,
+ 51.678216
+ ],
+ [
+ -50.808048,
+ 50.2309
+ ],
+ [
+ -125.15625,
+ 50.2309
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 51.678216
+ ],
+ [
+ -125.15625,
+ 53.125532
+ ],
+ [
+ -50.808048,
+ 53.125532
+ ],
+ [
+ -50.808048,
+ 51.678216
+ ],
+ [
+ -125.15625,
+ 51.678216
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 53.125532
+ ],
+ [
+ -125.15625,
+ 54.572847
+ ],
+ [
+ -50.808048,
+ 54.572847
+ ],
+ [
+ -50.808048,
+ 53.125532
+ ],
+ [
+ -125.15625,
+ 53.125532
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 54.572847
+ ],
+ [
+ -125.15625,
+ 56.020163
+ ],
+ [
+ -50.808048,
+ 56.020163
+ ],
+ [
+ -50.808048,
+ 54.572847
+ ],
+ [
+ -125.15625,
+ 54.572847
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 56.020163
+ ],
+ [
+ -125.15625,
+ 57.467479
+ ],
+ [
+ -50.808048,
+ 57.467479
+ ],
+ [
+ -50.808048,
+ 56.020163
+ ],
+ [
+ -125.15625,
+ 56.020163
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 57.467479
+ ],
+ [
+ -125.15625,
+ 58.914795
+ ],
+ [
+ -50.808048,
+ 58.914795
+ ],
+ [
+ -50.808048,
+ 57.467479
+ ],
+ [
+ -125.15625,
+ 57.467479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 58.914795
+ ],
+ [
+ -125.15625,
+ 60.362111
+ ],
+ [
+ -50.808048,
+ 60.362111
+ ],
+ [
+ -50.808048,
+ 58.914795
+ ],
+ [
+ -125.15625,
+ 58.914795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 60.362111
+ ],
+ [
+ -125.15625,
+ 61.809427
+ ],
+ [
+ -50.808048,
+ 61.809427
+ ],
+ [
+ -50.808048,
+ 60.362111
+ ],
+ [
+ -125.15625,
+ 60.362111
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 61.809427
+ ],
+ [
+ -125.15625,
+ 63.256742
+ ],
+ [
+ -50.808048,
+ 63.256742
+ ],
+ [
+ -50.808048,
+ 61.809427
+ ],
+ [
+ -125.15625,
+ 61.809427
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 63.256742
+ ],
+ [
+ -125.15625,
+ 64.704058
+ ],
+ [
+ -50.808048,
+ 64.704058
+ ],
+ [
+ -50.808048,
+ 63.256742
+ ],
+ [
+ -125.15625,
+ 63.256742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 64.704058
+ ],
+ [
+ -125.15625,
+ 66.151374
+ ],
+ [
+ -50.808048,
+ 66.151374
+ ],
+ [
+ -50.808048,
+ 64.704058
+ ],
+ [
+ -125.15625,
+ 64.704058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 66.151374
+ ],
+ [
+ -125.15625,
+ 67.59869
+ ],
+ [
+ -50.808048,
+ 67.59869
+ ],
+ [
+ -50.808048,
+ 66.151374
+ ],
+ [
+ -125.15625,
+ 66.151374
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 67.59869
+ ],
+ [
+ -125.15625,
+ 69.046006
+ ],
+ [
+ -50.808048,
+ 69.046006
+ ],
+ [
+ -50.808048,
+ 67.59869
+ ],
+ [
+ -125.15625,
+ 67.59869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 69.046006
+ ],
+ [
+ -125.15625,
+ 70.493322
+ ],
+ [
+ -50.808048,
+ 70.493322
+ ],
+ [
+ -50.808048,
+ 69.046006
+ ],
+ [
+ -125.15625,
+ 69.046006
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 70.493322
+ ],
+ [
+ -125.15625,
+ 71.940637
+ ],
+ [
+ -50.808048,
+ 71.940637
+ ],
+ [
+ -50.808048,
+ 70.493322
+ ],
+ [
+ -125.15625,
+ 70.493322
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 71.940637
+ ],
+ [
+ -125.15625,
+ 73.387953
+ ],
+ [
+ -50.808048,
+ 73.387953
+ ],
+ [
+ -50.808048,
+ 71.940637
+ ],
+ [
+ -125.15625,
+ 71.940637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 73.387953
+ ],
+ [
+ -125.15625,
+ 74.835269
+ ],
+ [
+ -50.808048,
+ 74.835269
+ ],
+ [
+ -50.808048,
+ 73.387953
+ ],
+ [
+ -125.15625,
+ 73.387953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 74.835269
+ ],
+ [
+ -125.15625,
+ 76.282585
+ ],
+ [
+ -50.808048,
+ 76.282585
+ ],
+ [
+ -50.808048,
+ 74.835269
+ ],
+ [
+ -125.15625,
+ 74.835269
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -125.15625,
+ 76.282585
+ ],
+ [
+ -125.15625,
+ 77.729901
+ ],
+ [
+ -50.808048,
+ 77.729901
+ ],
+ [
+ -50.808048,
+ 76.282585
+ ],
+ [
+ -125.15625,
+ 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
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-rectangle-grid/test/out/fiji-10x5-miles.geojson b/packages/turf-rectangle-grid/test/out/fiji-10x5-miles.geojson
new file mode 100644
index 0000000000..adbe417cd7
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/out/fiji-10x5-miles.geojson
@@ -0,0 +1,1441 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.340249,
+ -17.150912
+ ],
+ [
+ -180.340249,
+ -17.078546
+ ],
+ [
+ -180.188768,
+ -17.078546
+ ],
+ [
+ -180.188768,
+ -17.150912
+ ],
+ [
+ -180.340249,
+ -17.150912
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.340249,
+ -17.078546
+ ],
+ [
+ -180.340249,
+ -17.00618
+ ],
+ [
+ -180.188768,
+ -17.00618
+ ],
+ [
+ -180.188768,
+ -17.078546
+ ],
+ [
+ -180.340249,
+ -17.078546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.340249,
+ -17.00618
+ ],
+ [
+ -180.340249,
+ -16.933815
+ ],
+ [
+ -180.188768,
+ -16.933815
+ ],
+ [
+ -180.188768,
+ -17.00618
+ ],
+ [
+ -180.340249,
+ -17.00618
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.340249,
+ -16.933815
+ ],
+ [
+ -180.340249,
+ -16.861449
+ ],
+ [
+ -180.188768,
+ -16.861449
+ ],
+ [
+ -180.188768,
+ -16.933815
+ ],
+ [
+ -180.340249,
+ -16.933815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.340249,
+ -16.861449
+ ],
+ [
+ -180.340249,
+ -16.789083
+ ],
+ [
+ -180.188768,
+ -16.789083
+ ],
+ [
+ -180.188768,
+ -16.861449
+ ],
+ [
+ -180.340249,
+ -16.861449
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.340249,
+ -16.789083
+ ],
+ [
+ -180.340249,
+ -16.716717
+ ],
+ [
+ -180.188768,
+ -16.716717
+ ],
+ [
+ -180.188768,
+ -16.789083
+ ],
+ [
+ -180.340249,
+ -16.789083
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.340249,
+ -16.716717
+ ],
+ [
+ -180.340249,
+ -16.644352
+ ],
+ [
+ -180.188768,
+ -16.644352
+ ],
+ [
+ -180.188768,
+ -16.716717
+ ],
+ [
+ -180.340249,
+ -16.716717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.340249,
+ -16.644352
+ ],
+ [
+ -180.340249,
+ -16.571986
+ ],
+ [
+ -180.188768,
+ -16.571986
+ ],
+ [
+ -180.188768,
+ -16.644352
+ ],
+ [
+ -180.340249,
+ -16.644352
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.340249,
+ -16.571986
+ ],
+ [
+ -180.340249,
+ -16.49962
+ ],
+ [
+ -180.188768,
+ -16.49962
+ ],
+ [
+ -180.188768,
+ -16.571986
+ ],
+ [
+ -180.340249,
+ -16.571986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.188768,
+ -17.150912
+ ],
+ [
+ -180.188768,
+ -17.078546
+ ],
+ [
+ -180.037288,
+ -17.078546
+ ],
+ [
+ -180.037288,
+ -17.150912
+ ],
+ [
+ -180.188768,
+ -17.150912
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.188768,
+ -17.078546
+ ],
+ [
+ -180.188768,
+ -17.00618
+ ],
+ [
+ -180.037288,
+ -17.00618
+ ],
+ [
+ -180.037288,
+ -17.078546
+ ],
+ [
+ -180.188768,
+ -17.078546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.188768,
+ -17.00618
+ ],
+ [
+ -180.188768,
+ -16.933815
+ ],
+ [
+ -180.037288,
+ -16.933815
+ ],
+ [
+ -180.037288,
+ -17.00618
+ ],
+ [
+ -180.188768,
+ -17.00618
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.188768,
+ -16.933815
+ ],
+ [
+ -180.188768,
+ -16.861449
+ ],
+ [
+ -180.037288,
+ -16.861449
+ ],
+ [
+ -180.037288,
+ -16.933815
+ ],
+ [
+ -180.188768,
+ -16.933815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.188768,
+ -16.861449
+ ],
+ [
+ -180.188768,
+ -16.789083
+ ],
+ [
+ -180.037288,
+ -16.789083
+ ],
+ [
+ -180.037288,
+ -16.861449
+ ],
+ [
+ -180.188768,
+ -16.861449
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.188768,
+ -16.789083
+ ],
+ [
+ -180.188768,
+ -16.716717
+ ],
+ [
+ -180.037288,
+ -16.716717
+ ],
+ [
+ -180.037288,
+ -16.789083
+ ],
+ [
+ -180.188768,
+ -16.789083
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.188768,
+ -16.716717
+ ],
+ [
+ -180.188768,
+ -16.644352
+ ],
+ [
+ -180.037288,
+ -16.644352
+ ],
+ [
+ -180.037288,
+ -16.716717
+ ],
+ [
+ -180.188768,
+ -16.716717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.188768,
+ -16.644352
+ ],
+ [
+ -180.188768,
+ -16.571986
+ ],
+ [
+ -180.037288,
+ -16.571986
+ ],
+ [
+ -180.037288,
+ -16.644352
+ ],
+ [
+ -180.188768,
+ -16.644352
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.188768,
+ -16.571986
+ ],
+ [
+ -180.188768,
+ -16.49962
+ ],
+ [
+ -180.037288,
+ -16.49962
+ ],
+ [
+ -180.037288,
+ -16.571986
+ ],
+ [
+ -180.188768,
+ -16.571986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.037288,
+ -17.150912
+ ],
+ [
+ -180.037288,
+ -17.078546
+ ],
+ [
+ -179.885808,
+ -17.078546
+ ],
+ [
+ -179.885808,
+ -17.150912
+ ],
+ [
+ -180.037288,
+ -17.150912
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.037288,
+ -17.078546
+ ],
+ [
+ -180.037288,
+ -17.00618
+ ],
+ [
+ -179.885808,
+ -17.00618
+ ],
+ [
+ -179.885808,
+ -17.078546
+ ],
+ [
+ -180.037288,
+ -17.078546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.037288,
+ -17.00618
+ ],
+ [
+ -180.037288,
+ -16.933815
+ ],
+ [
+ -179.885808,
+ -16.933815
+ ],
+ [
+ -179.885808,
+ -17.00618
+ ],
+ [
+ -180.037288,
+ -17.00618
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.037288,
+ -16.933815
+ ],
+ [
+ -180.037288,
+ -16.861449
+ ],
+ [
+ -179.885808,
+ -16.861449
+ ],
+ [
+ -179.885808,
+ -16.933815
+ ],
+ [
+ -180.037288,
+ -16.933815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.037288,
+ -16.861449
+ ],
+ [
+ -180.037288,
+ -16.789083
+ ],
+ [
+ -179.885808,
+ -16.789083
+ ],
+ [
+ -179.885808,
+ -16.861449
+ ],
+ [
+ -180.037288,
+ -16.861449
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.037288,
+ -16.789083
+ ],
+ [
+ -180.037288,
+ -16.716717
+ ],
+ [
+ -179.885808,
+ -16.716717
+ ],
+ [
+ -179.885808,
+ -16.789083
+ ],
+ [
+ -180.037288,
+ -16.789083
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.037288,
+ -16.716717
+ ],
+ [
+ -180.037288,
+ -16.644352
+ ],
+ [
+ -179.885808,
+ -16.644352
+ ],
+ [
+ -179.885808,
+ -16.716717
+ ],
+ [
+ -180.037288,
+ -16.716717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.037288,
+ -16.644352
+ ],
+ [
+ -180.037288,
+ -16.571986
+ ],
+ [
+ -179.885808,
+ -16.571986
+ ],
+ [
+ -179.885808,
+ -16.644352
+ ],
+ [
+ -180.037288,
+ -16.644352
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180.037288,
+ -16.571986
+ ],
+ [
+ -180.037288,
+ -16.49962
+ ],
+ [
+ -179.885808,
+ -16.49962
+ ],
+ [
+ -179.885808,
+ -16.571986
+ ],
+ [
+ -180.037288,
+ -16.571986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.885808,
+ -17.150912
+ ],
+ [
+ -179.885808,
+ -17.078546
+ ],
+ [
+ -179.734327,
+ -17.078546
+ ],
+ [
+ -179.734327,
+ -17.150912
+ ],
+ [
+ -179.885808,
+ -17.150912
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.885808,
+ -17.078546
+ ],
+ [
+ -179.885808,
+ -17.00618
+ ],
+ [
+ -179.734327,
+ -17.00618
+ ],
+ [
+ -179.734327,
+ -17.078546
+ ],
+ [
+ -179.885808,
+ -17.078546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.885808,
+ -17.00618
+ ],
+ [
+ -179.885808,
+ -16.933815
+ ],
+ [
+ -179.734327,
+ -16.933815
+ ],
+ [
+ -179.734327,
+ -17.00618
+ ],
+ [
+ -179.885808,
+ -17.00618
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.885808,
+ -16.933815
+ ],
+ [
+ -179.885808,
+ -16.861449
+ ],
+ [
+ -179.734327,
+ -16.861449
+ ],
+ [
+ -179.734327,
+ -16.933815
+ ],
+ [
+ -179.885808,
+ -16.933815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.885808,
+ -16.861449
+ ],
+ [
+ -179.885808,
+ -16.789083
+ ],
+ [
+ -179.734327,
+ -16.789083
+ ],
+ [
+ -179.734327,
+ -16.861449
+ ],
+ [
+ -179.885808,
+ -16.861449
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.885808,
+ -16.789083
+ ],
+ [
+ -179.885808,
+ -16.716717
+ ],
+ [
+ -179.734327,
+ -16.716717
+ ],
+ [
+ -179.734327,
+ -16.789083
+ ],
+ [
+ -179.885808,
+ -16.789083
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.885808,
+ -16.716717
+ ],
+ [
+ -179.885808,
+ -16.644352
+ ],
+ [
+ -179.734327,
+ -16.644352
+ ],
+ [
+ -179.734327,
+ -16.716717
+ ],
+ [
+ -179.885808,
+ -16.716717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.885808,
+ -16.644352
+ ],
+ [
+ -179.885808,
+ -16.571986
+ ],
+ [
+ -179.734327,
+ -16.571986
+ ],
+ [
+ -179.734327,
+ -16.644352
+ ],
+ [
+ -179.885808,
+ -16.644352
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.885808,
+ -16.571986
+ ],
+ [
+ -179.885808,
+ -16.49962
+ ],
+ [
+ -179.734327,
+ -16.49962
+ ],
+ [
+ -179.734327,
+ -16.571986
+ ],
+ [
+ -179.885808,
+ -16.571986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.734327,
+ -17.150912
+ ],
+ [
+ -179.734327,
+ -17.078546
+ ],
+ [
+ -179.582847,
+ -17.078546
+ ],
+ [
+ -179.582847,
+ -17.150912
+ ],
+ [
+ -179.734327,
+ -17.150912
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.734327,
+ -17.078546
+ ],
+ [
+ -179.734327,
+ -17.00618
+ ],
+ [
+ -179.582847,
+ -17.00618
+ ],
+ [
+ -179.582847,
+ -17.078546
+ ],
+ [
+ -179.734327,
+ -17.078546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.734327,
+ -17.00618
+ ],
+ [
+ -179.734327,
+ -16.933815
+ ],
+ [
+ -179.582847,
+ -16.933815
+ ],
+ [
+ -179.582847,
+ -17.00618
+ ],
+ [
+ -179.734327,
+ -17.00618
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.734327,
+ -16.933815
+ ],
+ [
+ -179.734327,
+ -16.861449
+ ],
+ [
+ -179.582847,
+ -16.861449
+ ],
+ [
+ -179.582847,
+ -16.933815
+ ],
+ [
+ -179.734327,
+ -16.933815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.734327,
+ -16.861449
+ ],
+ [
+ -179.734327,
+ -16.789083
+ ],
+ [
+ -179.582847,
+ -16.789083
+ ],
+ [
+ -179.582847,
+ -16.861449
+ ],
+ [
+ -179.734327,
+ -16.861449
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.734327,
+ -16.789083
+ ],
+ [
+ -179.734327,
+ -16.716717
+ ],
+ [
+ -179.582847,
+ -16.716717
+ ],
+ [
+ -179.582847,
+ -16.789083
+ ],
+ [
+ -179.734327,
+ -16.789083
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.734327,
+ -16.716717
+ ],
+ [
+ -179.734327,
+ -16.644352
+ ],
+ [
+ -179.582847,
+ -16.644352
+ ],
+ [
+ -179.582847,
+ -16.716717
+ ],
+ [
+ -179.734327,
+ -16.716717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.734327,
+ -16.644352
+ ],
+ [
+ -179.734327,
+ -16.571986
+ ],
+ [
+ -179.582847,
+ -16.571986
+ ],
+ [
+ -179.582847,
+ -16.644352
+ ],
+ [
+ -179.734327,
+ -16.644352
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -179.734327,
+ -16.571986
+ ],
+ [
+ -179.734327,
+ -16.49962
+ ],
+ [
+ -179.582847,
+ -16.49962
+ ],
+ [
+ -179.582847,
+ -16.571986
+ ],
+ [
+ -179.734327,
+ -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
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-rectangle-grid/test/out/victoria-20x100-km.geojson b/packages/turf-rectangle-grid/test/out/victoria-20x100-km.geojson
new file mode 100644
index 0000000000..cea7d7cd85
--- /dev/null
+++ b/packages/turf-rectangle-grid/test/out/victoria-20x100-km.geojson
@@ -0,0 +1,6401 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.050984,
+ -34.251699
+ ],
+ [
+ 141.050984,
+ -35.151019
+ ],
+ [
+ 141.26801,
+ -35.151019
+ ],
+ [
+ 141.26801,
+ -34.251699
+ ],
+ [
+ 141.050984,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.050984,
+ -35.151019
+ ],
+ [
+ 141.050984,
+ -36.05034
+ ],
+ [
+ 141.26801,
+ -36.05034
+ ],
+ [
+ 141.26801,
+ -35.151019
+ ],
+ [
+ 141.050984,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.050984,
+ -36.05034
+ ],
+ [
+ 141.050984,
+ -36.94966
+ ],
+ [
+ 141.26801,
+ -36.94966
+ ],
+ [
+ 141.26801,
+ -36.05034
+ ],
+ [
+ 141.050984,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.050984,
+ -36.94966
+ ],
+ [
+ 141.050984,
+ -37.848981
+ ],
+ [
+ 141.26801,
+ -37.848981
+ ],
+ [
+ 141.26801,
+ -36.94966
+ ],
+ [
+ 141.050984,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.050984,
+ -37.848981
+ ],
+ [
+ 141.050984,
+ -38.748301
+ ],
+ [
+ 141.26801,
+ -38.748301
+ ],
+ [
+ 141.26801,
+ -37.848981
+ ],
+ [
+ 141.050984,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.26801,
+ -34.251699
+ ],
+ [
+ 141.26801,
+ -35.151019
+ ],
+ [
+ 141.485035,
+ -35.151019
+ ],
+ [
+ 141.485035,
+ -34.251699
+ ],
+ [
+ 141.26801,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.26801,
+ -35.151019
+ ],
+ [
+ 141.26801,
+ -36.05034
+ ],
+ [
+ 141.485035,
+ -36.05034
+ ],
+ [
+ 141.485035,
+ -35.151019
+ ],
+ [
+ 141.26801,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.26801,
+ -36.05034
+ ],
+ [
+ 141.26801,
+ -36.94966
+ ],
+ [
+ 141.485035,
+ -36.94966
+ ],
+ [
+ 141.485035,
+ -36.05034
+ ],
+ [
+ 141.26801,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.26801,
+ -36.94966
+ ],
+ [
+ 141.26801,
+ -37.848981
+ ],
+ [
+ 141.485035,
+ -37.848981
+ ],
+ [
+ 141.485035,
+ -36.94966
+ ],
+ [
+ 141.26801,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.26801,
+ -37.848981
+ ],
+ [
+ 141.26801,
+ -38.748301
+ ],
+ [
+ 141.485035,
+ -38.748301
+ ],
+ [
+ 141.485035,
+ -37.848981
+ ],
+ [
+ 141.26801,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.485035,
+ -34.251699
+ ],
+ [
+ 141.485035,
+ -35.151019
+ ],
+ [
+ 141.70206,
+ -35.151019
+ ],
+ [
+ 141.70206,
+ -34.251699
+ ],
+ [
+ 141.485035,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.485035,
+ -35.151019
+ ],
+ [
+ 141.485035,
+ -36.05034
+ ],
+ [
+ 141.70206,
+ -36.05034
+ ],
+ [
+ 141.70206,
+ -35.151019
+ ],
+ [
+ 141.485035,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.485035,
+ -36.05034
+ ],
+ [
+ 141.485035,
+ -36.94966
+ ],
+ [
+ 141.70206,
+ -36.94966
+ ],
+ [
+ 141.70206,
+ -36.05034
+ ],
+ [
+ 141.485035,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.485035,
+ -36.94966
+ ],
+ [
+ 141.485035,
+ -37.848981
+ ],
+ [
+ 141.70206,
+ -37.848981
+ ],
+ [
+ 141.70206,
+ -36.94966
+ ],
+ [
+ 141.485035,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.485035,
+ -37.848981
+ ],
+ [
+ 141.485035,
+ -38.748301
+ ],
+ [
+ 141.70206,
+ -38.748301
+ ],
+ [
+ 141.70206,
+ -37.848981
+ ],
+ [
+ 141.485035,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.70206,
+ -34.251699
+ ],
+ [
+ 141.70206,
+ -35.151019
+ ],
+ [
+ 141.919085,
+ -35.151019
+ ],
+ [
+ 141.919085,
+ -34.251699
+ ],
+ [
+ 141.70206,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.70206,
+ -35.151019
+ ],
+ [
+ 141.70206,
+ -36.05034
+ ],
+ [
+ 141.919085,
+ -36.05034
+ ],
+ [
+ 141.919085,
+ -35.151019
+ ],
+ [
+ 141.70206,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.70206,
+ -36.05034
+ ],
+ [
+ 141.70206,
+ -36.94966
+ ],
+ [
+ 141.919085,
+ -36.94966
+ ],
+ [
+ 141.919085,
+ -36.05034
+ ],
+ [
+ 141.70206,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.70206,
+ -36.94966
+ ],
+ [
+ 141.70206,
+ -37.848981
+ ],
+ [
+ 141.919085,
+ -37.848981
+ ],
+ [
+ 141.919085,
+ -36.94966
+ ],
+ [
+ 141.70206,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.70206,
+ -37.848981
+ ],
+ [
+ 141.70206,
+ -38.748301
+ ],
+ [
+ 141.919085,
+ -38.748301
+ ],
+ [
+ 141.919085,
+ -37.848981
+ ],
+ [
+ 141.70206,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.919085,
+ -34.251699
+ ],
+ [
+ 141.919085,
+ -35.151019
+ ],
+ [
+ 142.13611,
+ -35.151019
+ ],
+ [
+ 142.13611,
+ -34.251699
+ ],
+ [
+ 141.919085,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.919085,
+ -35.151019
+ ],
+ [
+ 141.919085,
+ -36.05034
+ ],
+ [
+ 142.13611,
+ -36.05034
+ ],
+ [
+ 142.13611,
+ -35.151019
+ ],
+ [
+ 141.919085,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.919085,
+ -36.05034
+ ],
+ [
+ 141.919085,
+ -36.94966
+ ],
+ [
+ 142.13611,
+ -36.94966
+ ],
+ [
+ 142.13611,
+ -36.05034
+ ],
+ [
+ 141.919085,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.919085,
+ -36.94966
+ ],
+ [
+ 141.919085,
+ -37.848981
+ ],
+ [
+ 142.13611,
+ -37.848981
+ ],
+ [
+ 142.13611,
+ -36.94966
+ ],
+ [
+ 141.919085,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141.919085,
+ -37.848981
+ ],
+ [
+ 141.919085,
+ -38.748301
+ ],
+ [
+ 142.13611,
+ -38.748301
+ ],
+ [
+ 142.13611,
+ -37.848981
+ ],
+ [
+ 141.919085,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.13611,
+ -34.251699
+ ],
+ [
+ 142.13611,
+ -35.151019
+ ],
+ [
+ 142.353135,
+ -35.151019
+ ],
+ [
+ 142.353135,
+ -34.251699
+ ],
+ [
+ 142.13611,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.13611,
+ -35.151019
+ ],
+ [
+ 142.13611,
+ -36.05034
+ ],
+ [
+ 142.353135,
+ -36.05034
+ ],
+ [
+ 142.353135,
+ -35.151019
+ ],
+ [
+ 142.13611,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.13611,
+ -36.05034
+ ],
+ [
+ 142.13611,
+ -36.94966
+ ],
+ [
+ 142.353135,
+ -36.94966
+ ],
+ [
+ 142.353135,
+ -36.05034
+ ],
+ [
+ 142.13611,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.13611,
+ -36.94966
+ ],
+ [
+ 142.13611,
+ -37.848981
+ ],
+ [
+ 142.353135,
+ -37.848981
+ ],
+ [
+ 142.353135,
+ -36.94966
+ ],
+ [
+ 142.13611,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.13611,
+ -37.848981
+ ],
+ [
+ 142.13611,
+ -38.748301
+ ],
+ [
+ 142.353135,
+ -38.748301
+ ],
+ [
+ 142.353135,
+ -37.848981
+ ],
+ [
+ 142.13611,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.353135,
+ -34.251699
+ ],
+ [
+ 142.353135,
+ -35.151019
+ ],
+ [
+ 142.57016,
+ -35.151019
+ ],
+ [
+ 142.57016,
+ -34.251699
+ ],
+ [
+ 142.353135,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.353135,
+ -35.151019
+ ],
+ [
+ 142.353135,
+ -36.05034
+ ],
+ [
+ 142.57016,
+ -36.05034
+ ],
+ [
+ 142.57016,
+ -35.151019
+ ],
+ [
+ 142.353135,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.353135,
+ -36.05034
+ ],
+ [
+ 142.353135,
+ -36.94966
+ ],
+ [
+ 142.57016,
+ -36.94966
+ ],
+ [
+ 142.57016,
+ -36.05034
+ ],
+ [
+ 142.353135,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.353135,
+ -36.94966
+ ],
+ [
+ 142.353135,
+ -37.848981
+ ],
+ [
+ 142.57016,
+ -37.848981
+ ],
+ [
+ 142.57016,
+ -36.94966
+ ],
+ [
+ 142.353135,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.353135,
+ -37.848981
+ ],
+ [
+ 142.353135,
+ -38.748301
+ ],
+ [
+ 142.57016,
+ -38.748301
+ ],
+ [
+ 142.57016,
+ -37.848981
+ ],
+ [
+ 142.353135,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.57016,
+ -34.251699
+ ],
+ [
+ 142.57016,
+ -35.151019
+ ],
+ [
+ 142.787186,
+ -35.151019
+ ],
+ [
+ 142.787186,
+ -34.251699
+ ],
+ [
+ 142.57016,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.57016,
+ -35.151019
+ ],
+ [
+ 142.57016,
+ -36.05034
+ ],
+ [
+ 142.787186,
+ -36.05034
+ ],
+ [
+ 142.787186,
+ -35.151019
+ ],
+ [
+ 142.57016,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.57016,
+ -36.05034
+ ],
+ [
+ 142.57016,
+ -36.94966
+ ],
+ [
+ 142.787186,
+ -36.94966
+ ],
+ [
+ 142.787186,
+ -36.05034
+ ],
+ [
+ 142.57016,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.57016,
+ -36.94966
+ ],
+ [
+ 142.57016,
+ -37.848981
+ ],
+ [
+ 142.787186,
+ -37.848981
+ ],
+ [
+ 142.787186,
+ -36.94966
+ ],
+ [
+ 142.57016,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.57016,
+ -37.848981
+ ],
+ [
+ 142.57016,
+ -38.748301
+ ],
+ [
+ 142.787186,
+ -38.748301
+ ],
+ [
+ 142.787186,
+ -37.848981
+ ],
+ [
+ 142.57016,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.787186,
+ -34.251699
+ ],
+ [
+ 142.787186,
+ -35.151019
+ ],
+ [
+ 143.004211,
+ -35.151019
+ ],
+ [
+ 143.004211,
+ -34.251699
+ ],
+ [
+ 142.787186,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.787186,
+ -35.151019
+ ],
+ [
+ 142.787186,
+ -36.05034
+ ],
+ [
+ 143.004211,
+ -36.05034
+ ],
+ [
+ 143.004211,
+ -35.151019
+ ],
+ [
+ 142.787186,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.787186,
+ -36.05034
+ ],
+ [
+ 142.787186,
+ -36.94966
+ ],
+ [
+ 143.004211,
+ -36.94966
+ ],
+ [
+ 143.004211,
+ -36.05034
+ ],
+ [
+ 142.787186,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.787186,
+ -36.94966
+ ],
+ [
+ 142.787186,
+ -37.848981
+ ],
+ [
+ 143.004211,
+ -37.848981
+ ],
+ [
+ 143.004211,
+ -36.94966
+ ],
+ [
+ 142.787186,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 142.787186,
+ -37.848981
+ ],
+ [
+ 142.787186,
+ -38.748301
+ ],
+ [
+ 143.004211,
+ -38.748301
+ ],
+ [
+ 143.004211,
+ -37.848981
+ ],
+ [
+ 142.787186,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.004211,
+ -34.251699
+ ],
+ [
+ 143.004211,
+ -35.151019
+ ],
+ [
+ 143.221236,
+ -35.151019
+ ],
+ [
+ 143.221236,
+ -34.251699
+ ],
+ [
+ 143.004211,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.004211,
+ -35.151019
+ ],
+ [
+ 143.004211,
+ -36.05034
+ ],
+ [
+ 143.221236,
+ -36.05034
+ ],
+ [
+ 143.221236,
+ -35.151019
+ ],
+ [
+ 143.004211,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.004211,
+ -36.05034
+ ],
+ [
+ 143.004211,
+ -36.94966
+ ],
+ [
+ 143.221236,
+ -36.94966
+ ],
+ [
+ 143.221236,
+ -36.05034
+ ],
+ [
+ 143.004211,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.004211,
+ -36.94966
+ ],
+ [
+ 143.004211,
+ -37.848981
+ ],
+ [
+ 143.221236,
+ -37.848981
+ ],
+ [
+ 143.221236,
+ -36.94966
+ ],
+ [
+ 143.004211,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.004211,
+ -37.848981
+ ],
+ [
+ 143.004211,
+ -38.748301
+ ],
+ [
+ 143.221236,
+ -38.748301
+ ],
+ [
+ 143.221236,
+ -37.848981
+ ],
+ [
+ 143.004211,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.221236,
+ -34.251699
+ ],
+ [
+ 143.221236,
+ -35.151019
+ ],
+ [
+ 143.438261,
+ -35.151019
+ ],
+ [
+ 143.438261,
+ -34.251699
+ ],
+ [
+ 143.221236,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.221236,
+ -35.151019
+ ],
+ [
+ 143.221236,
+ -36.05034
+ ],
+ [
+ 143.438261,
+ -36.05034
+ ],
+ [
+ 143.438261,
+ -35.151019
+ ],
+ [
+ 143.221236,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.221236,
+ -36.05034
+ ],
+ [
+ 143.221236,
+ -36.94966
+ ],
+ [
+ 143.438261,
+ -36.94966
+ ],
+ [
+ 143.438261,
+ -36.05034
+ ],
+ [
+ 143.221236,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.221236,
+ -36.94966
+ ],
+ [
+ 143.221236,
+ -37.848981
+ ],
+ [
+ 143.438261,
+ -37.848981
+ ],
+ [
+ 143.438261,
+ -36.94966
+ ],
+ [
+ 143.221236,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.221236,
+ -37.848981
+ ],
+ [
+ 143.221236,
+ -38.748301
+ ],
+ [
+ 143.438261,
+ -38.748301
+ ],
+ [
+ 143.438261,
+ -37.848981
+ ],
+ [
+ 143.221236,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.438261,
+ -34.251699
+ ],
+ [
+ 143.438261,
+ -35.151019
+ ],
+ [
+ 143.655286,
+ -35.151019
+ ],
+ [
+ 143.655286,
+ -34.251699
+ ],
+ [
+ 143.438261,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.438261,
+ -35.151019
+ ],
+ [
+ 143.438261,
+ -36.05034
+ ],
+ [
+ 143.655286,
+ -36.05034
+ ],
+ [
+ 143.655286,
+ -35.151019
+ ],
+ [
+ 143.438261,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.438261,
+ -36.05034
+ ],
+ [
+ 143.438261,
+ -36.94966
+ ],
+ [
+ 143.655286,
+ -36.94966
+ ],
+ [
+ 143.655286,
+ -36.05034
+ ],
+ [
+ 143.438261,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.438261,
+ -36.94966
+ ],
+ [
+ 143.438261,
+ -37.848981
+ ],
+ [
+ 143.655286,
+ -37.848981
+ ],
+ [
+ 143.655286,
+ -36.94966
+ ],
+ [
+ 143.438261,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.438261,
+ -37.848981
+ ],
+ [
+ 143.438261,
+ -38.748301
+ ],
+ [
+ 143.655286,
+ -38.748301
+ ],
+ [
+ 143.655286,
+ -37.848981
+ ],
+ [
+ 143.438261,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.655286,
+ -34.251699
+ ],
+ [
+ 143.655286,
+ -35.151019
+ ],
+ [
+ 143.872311,
+ -35.151019
+ ],
+ [
+ 143.872311,
+ -34.251699
+ ],
+ [
+ 143.655286,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.655286,
+ -35.151019
+ ],
+ [
+ 143.655286,
+ -36.05034
+ ],
+ [
+ 143.872311,
+ -36.05034
+ ],
+ [
+ 143.872311,
+ -35.151019
+ ],
+ [
+ 143.655286,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.655286,
+ -36.05034
+ ],
+ [
+ 143.655286,
+ -36.94966
+ ],
+ [
+ 143.872311,
+ -36.94966
+ ],
+ [
+ 143.872311,
+ -36.05034
+ ],
+ [
+ 143.655286,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.655286,
+ -36.94966
+ ],
+ [
+ 143.655286,
+ -37.848981
+ ],
+ [
+ 143.872311,
+ -37.848981
+ ],
+ [
+ 143.872311,
+ -36.94966
+ ],
+ [
+ 143.655286,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.655286,
+ -37.848981
+ ],
+ [
+ 143.655286,
+ -38.748301
+ ],
+ [
+ 143.872311,
+ -38.748301
+ ],
+ [
+ 143.872311,
+ -37.848981
+ ],
+ [
+ 143.655286,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.872311,
+ -34.251699
+ ],
+ [
+ 143.872311,
+ -35.151019
+ ],
+ [
+ 144.089337,
+ -35.151019
+ ],
+ [
+ 144.089337,
+ -34.251699
+ ],
+ [
+ 143.872311,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.872311,
+ -35.151019
+ ],
+ [
+ 143.872311,
+ -36.05034
+ ],
+ [
+ 144.089337,
+ -36.05034
+ ],
+ [
+ 144.089337,
+ -35.151019
+ ],
+ [
+ 143.872311,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.872311,
+ -36.05034
+ ],
+ [
+ 143.872311,
+ -36.94966
+ ],
+ [
+ 144.089337,
+ -36.94966
+ ],
+ [
+ 144.089337,
+ -36.05034
+ ],
+ [
+ 143.872311,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.872311,
+ -36.94966
+ ],
+ [
+ 143.872311,
+ -37.848981
+ ],
+ [
+ 144.089337,
+ -37.848981
+ ],
+ [
+ 144.089337,
+ -36.94966
+ ],
+ [
+ 143.872311,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 143.872311,
+ -37.848981
+ ],
+ [
+ 143.872311,
+ -38.748301
+ ],
+ [
+ 144.089337,
+ -38.748301
+ ],
+ [
+ 144.089337,
+ -37.848981
+ ],
+ [
+ 143.872311,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.089337,
+ -34.251699
+ ],
+ [
+ 144.089337,
+ -35.151019
+ ],
+ [
+ 144.306362,
+ -35.151019
+ ],
+ [
+ 144.306362,
+ -34.251699
+ ],
+ [
+ 144.089337,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.089337,
+ -35.151019
+ ],
+ [
+ 144.089337,
+ -36.05034
+ ],
+ [
+ 144.306362,
+ -36.05034
+ ],
+ [
+ 144.306362,
+ -35.151019
+ ],
+ [
+ 144.089337,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.089337,
+ -36.05034
+ ],
+ [
+ 144.089337,
+ -36.94966
+ ],
+ [
+ 144.306362,
+ -36.94966
+ ],
+ [
+ 144.306362,
+ -36.05034
+ ],
+ [
+ 144.089337,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.089337,
+ -36.94966
+ ],
+ [
+ 144.089337,
+ -37.848981
+ ],
+ [
+ 144.306362,
+ -37.848981
+ ],
+ [
+ 144.306362,
+ -36.94966
+ ],
+ [
+ 144.089337,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.089337,
+ -37.848981
+ ],
+ [
+ 144.089337,
+ -38.748301
+ ],
+ [
+ 144.306362,
+ -38.748301
+ ],
+ [
+ 144.306362,
+ -37.848981
+ ],
+ [
+ 144.089337,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.306362,
+ -34.251699
+ ],
+ [
+ 144.306362,
+ -35.151019
+ ],
+ [
+ 144.523387,
+ -35.151019
+ ],
+ [
+ 144.523387,
+ -34.251699
+ ],
+ [
+ 144.306362,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.306362,
+ -35.151019
+ ],
+ [
+ 144.306362,
+ -36.05034
+ ],
+ [
+ 144.523387,
+ -36.05034
+ ],
+ [
+ 144.523387,
+ -35.151019
+ ],
+ [
+ 144.306362,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.306362,
+ -36.05034
+ ],
+ [
+ 144.306362,
+ -36.94966
+ ],
+ [
+ 144.523387,
+ -36.94966
+ ],
+ [
+ 144.523387,
+ -36.05034
+ ],
+ [
+ 144.306362,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.306362,
+ -36.94966
+ ],
+ [
+ 144.306362,
+ -37.848981
+ ],
+ [
+ 144.523387,
+ -37.848981
+ ],
+ [
+ 144.523387,
+ -36.94966
+ ],
+ [
+ 144.306362,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.306362,
+ -37.848981
+ ],
+ [
+ 144.306362,
+ -38.748301
+ ],
+ [
+ 144.523387,
+ -38.748301
+ ],
+ [
+ 144.523387,
+ -37.848981
+ ],
+ [
+ 144.306362,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.523387,
+ -34.251699
+ ],
+ [
+ 144.523387,
+ -35.151019
+ ],
+ [
+ 144.740412,
+ -35.151019
+ ],
+ [
+ 144.740412,
+ -34.251699
+ ],
+ [
+ 144.523387,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.523387,
+ -35.151019
+ ],
+ [
+ 144.523387,
+ -36.05034
+ ],
+ [
+ 144.740412,
+ -36.05034
+ ],
+ [
+ 144.740412,
+ -35.151019
+ ],
+ [
+ 144.523387,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.523387,
+ -36.05034
+ ],
+ [
+ 144.523387,
+ -36.94966
+ ],
+ [
+ 144.740412,
+ -36.94966
+ ],
+ [
+ 144.740412,
+ -36.05034
+ ],
+ [
+ 144.523387,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.523387,
+ -36.94966
+ ],
+ [
+ 144.523387,
+ -37.848981
+ ],
+ [
+ 144.740412,
+ -37.848981
+ ],
+ [
+ 144.740412,
+ -36.94966
+ ],
+ [
+ 144.523387,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.523387,
+ -37.848981
+ ],
+ [
+ 144.523387,
+ -38.748301
+ ],
+ [
+ 144.740412,
+ -38.748301
+ ],
+ [
+ 144.740412,
+ -37.848981
+ ],
+ [
+ 144.523387,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.740412,
+ -34.251699
+ ],
+ [
+ 144.740412,
+ -35.151019
+ ],
+ [
+ 144.957437,
+ -35.151019
+ ],
+ [
+ 144.957437,
+ -34.251699
+ ],
+ [
+ 144.740412,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.740412,
+ -35.151019
+ ],
+ [
+ 144.740412,
+ -36.05034
+ ],
+ [
+ 144.957437,
+ -36.05034
+ ],
+ [
+ 144.957437,
+ -35.151019
+ ],
+ [
+ 144.740412,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.740412,
+ -36.05034
+ ],
+ [
+ 144.740412,
+ -36.94966
+ ],
+ [
+ 144.957437,
+ -36.94966
+ ],
+ [
+ 144.957437,
+ -36.05034
+ ],
+ [
+ 144.740412,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.740412,
+ -36.94966
+ ],
+ [
+ 144.740412,
+ -37.848981
+ ],
+ [
+ 144.957437,
+ -37.848981
+ ],
+ [
+ 144.957437,
+ -36.94966
+ ],
+ [
+ 144.740412,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.740412,
+ -37.848981
+ ],
+ [
+ 144.740412,
+ -38.748301
+ ],
+ [
+ 144.957437,
+ -38.748301
+ ],
+ [
+ 144.957437,
+ -37.848981
+ ],
+ [
+ 144.740412,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.957437,
+ -34.251699
+ ],
+ [
+ 144.957437,
+ -35.151019
+ ],
+ [
+ 145.174462,
+ -35.151019
+ ],
+ [
+ 145.174462,
+ -34.251699
+ ],
+ [
+ 144.957437,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.957437,
+ -35.151019
+ ],
+ [
+ 144.957437,
+ -36.05034
+ ],
+ [
+ 145.174462,
+ -36.05034
+ ],
+ [
+ 145.174462,
+ -35.151019
+ ],
+ [
+ 144.957437,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.957437,
+ -36.05034
+ ],
+ [
+ 144.957437,
+ -36.94966
+ ],
+ [
+ 145.174462,
+ -36.94966
+ ],
+ [
+ 145.174462,
+ -36.05034
+ ],
+ [
+ 144.957437,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.957437,
+ -36.94966
+ ],
+ [
+ 144.957437,
+ -37.848981
+ ],
+ [
+ 145.174462,
+ -37.848981
+ ],
+ [
+ 145.174462,
+ -36.94966
+ ],
+ [
+ 144.957437,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 144.957437,
+ -37.848981
+ ],
+ [
+ 144.957437,
+ -38.748301
+ ],
+ [
+ 145.174462,
+ -38.748301
+ ],
+ [
+ 145.174462,
+ -37.848981
+ ],
+ [
+ 144.957437,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.174462,
+ -34.251699
+ ],
+ [
+ 145.174462,
+ -35.151019
+ ],
+ [
+ 145.391487,
+ -35.151019
+ ],
+ [
+ 145.391487,
+ -34.251699
+ ],
+ [
+ 145.174462,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.174462,
+ -35.151019
+ ],
+ [
+ 145.174462,
+ -36.05034
+ ],
+ [
+ 145.391487,
+ -36.05034
+ ],
+ [
+ 145.391487,
+ -35.151019
+ ],
+ [
+ 145.174462,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.174462,
+ -36.05034
+ ],
+ [
+ 145.174462,
+ -36.94966
+ ],
+ [
+ 145.391487,
+ -36.94966
+ ],
+ [
+ 145.391487,
+ -36.05034
+ ],
+ [
+ 145.174462,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.174462,
+ -36.94966
+ ],
+ [
+ 145.174462,
+ -37.848981
+ ],
+ [
+ 145.391487,
+ -37.848981
+ ],
+ [
+ 145.391487,
+ -36.94966
+ ],
+ [
+ 145.174462,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.174462,
+ -37.848981
+ ],
+ [
+ 145.174462,
+ -38.748301
+ ],
+ [
+ 145.391487,
+ -38.748301
+ ],
+ [
+ 145.391487,
+ -37.848981
+ ],
+ [
+ 145.174462,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.391487,
+ -34.251699
+ ],
+ [
+ 145.391487,
+ -35.151019
+ ],
+ [
+ 145.608513,
+ -35.151019
+ ],
+ [
+ 145.608513,
+ -34.251699
+ ],
+ [
+ 145.391487,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.391487,
+ -35.151019
+ ],
+ [
+ 145.391487,
+ -36.05034
+ ],
+ [
+ 145.608513,
+ -36.05034
+ ],
+ [
+ 145.608513,
+ -35.151019
+ ],
+ [
+ 145.391487,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.391487,
+ -36.05034
+ ],
+ [
+ 145.391487,
+ -36.94966
+ ],
+ [
+ 145.608513,
+ -36.94966
+ ],
+ [
+ 145.608513,
+ -36.05034
+ ],
+ [
+ 145.391487,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.391487,
+ -36.94966
+ ],
+ [
+ 145.391487,
+ -37.848981
+ ],
+ [
+ 145.608513,
+ -37.848981
+ ],
+ [
+ 145.608513,
+ -36.94966
+ ],
+ [
+ 145.391487,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.391487,
+ -37.848981
+ ],
+ [
+ 145.391487,
+ -38.748301
+ ],
+ [
+ 145.608513,
+ -38.748301
+ ],
+ [
+ 145.608513,
+ -37.848981
+ ],
+ [
+ 145.391487,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.608513,
+ -34.251699
+ ],
+ [
+ 145.608513,
+ -35.151019
+ ],
+ [
+ 145.825538,
+ -35.151019
+ ],
+ [
+ 145.825538,
+ -34.251699
+ ],
+ [
+ 145.608513,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.608513,
+ -35.151019
+ ],
+ [
+ 145.608513,
+ -36.05034
+ ],
+ [
+ 145.825538,
+ -36.05034
+ ],
+ [
+ 145.825538,
+ -35.151019
+ ],
+ [
+ 145.608513,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.608513,
+ -36.05034
+ ],
+ [
+ 145.608513,
+ -36.94966
+ ],
+ [
+ 145.825538,
+ -36.94966
+ ],
+ [
+ 145.825538,
+ -36.05034
+ ],
+ [
+ 145.608513,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.608513,
+ -36.94966
+ ],
+ [
+ 145.608513,
+ -37.848981
+ ],
+ [
+ 145.825538,
+ -37.848981
+ ],
+ [
+ 145.825538,
+ -36.94966
+ ],
+ [
+ 145.608513,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.608513,
+ -37.848981
+ ],
+ [
+ 145.608513,
+ -38.748301
+ ],
+ [
+ 145.825538,
+ -38.748301
+ ],
+ [
+ 145.825538,
+ -37.848981
+ ],
+ [
+ 145.608513,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.825538,
+ -34.251699
+ ],
+ [
+ 145.825538,
+ -35.151019
+ ],
+ [
+ 146.042563,
+ -35.151019
+ ],
+ [
+ 146.042563,
+ -34.251699
+ ],
+ [
+ 145.825538,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.825538,
+ -35.151019
+ ],
+ [
+ 145.825538,
+ -36.05034
+ ],
+ [
+ 146.042563,
+ -36.05034
+ ],
+ [
+ 146.042563,
+ -35.151019
+ ],
+ [
+ 145.825538,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.825538,
+ -36.05034
+ ],
+ [
+ 145.825538,
+ -36.94966
+ ],
+ [
+ 146.042563,
+ -36.94966
+ ],
+ [
+ 146.042563,
+ -36.05034
+ ],
+ [
+ 145.825538,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.825538,
+ -36.94966
+ ],
+ [
+ 145.825538,
+ -37.848981
+ ],
+ [
+ 146.042563,
+ -37.848981
+ ],
+ [
+ 146.042563,
+ -36.94966
+ ],
+ [
+ 145.825538,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 145.825538,
+ -37.848981
+ ],
+ [
+ 145.825538,
+ -38.748301
+ ],
+ [
+ 146.042563,
+ -38.748301
+ ],
+ [
+ 146.042563,
+ -37.848981
+ ],
+ [
+ 145.825538,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.042563,
+ -34.251699
+ ],
+ [
+ 146.042563,
+ -35.151019
+ ],
+ [
+ 146.259588,
+ -35.151019
+ ],
+ [
+ 146.259588,
+ -34.251699
+ ],
+ [
+ 146.042563,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.042563,
+ -35.151019
+ ],
+ [
+ 146.042563,
+ -36.05034
+ ],
+ [
+ 146.259588,
+ -36.05034
+ ],
+ [
+ 146.259588,
+ -35.151019
+ ],
+ [
+ 146.042563,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.042563,
+ -36.05034
+ ],
+ [
+ 146.042563,
+ -36.94966
+ ],
+ [
+ 146.259588,
+ -36.94966
+ ],
+ [
+ 146.259588,
+ -36.05034
+ ],
+ [
+ 146.042563,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.042563,
+ -36.94966
+ ],
+ [
+ 146.042563,
+ -37.848981
+ ],
+ [
+ 146.259588,
+ -37.848981
+ ],
+ [
+ 146.259588,
+ -36.94966
+ ],
+ [
+ 146.042563,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.042563,
+ -37.848981
+ ],
+ [
+ 146.042563,
+ -38.748301
+ ],
+ [
+ 146.259588,
+ -38.748301
+ ],
+ [
+ 146.259588,
+ -37.848981
+ ],
+ [
+ 146.042563,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.259588,
+ -34.251699
+ ],
+ [
+ 146.259588,
+ -35.151019
+ ],
+ [
+ 146.476613,
+ -35.151019
+ ],
+ [
+ 146.476613,
+ -34.251699
+ ],
+ [
+ 146.259588,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.259588,
+ -35.151019
+ ],
+ [
+ 146.259588,
+ -36.05034
+ ],
+ [
+ 146.476613,
+ -36.05034
+ ],
+ [
+ 146.476613,
+ -35.151019
+ ],
+ [
+ 146.259588,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.259588,
+ -36.05034
+ ],
+ [
+ 146.259588,
+ -36.94966
+ ],
+ [
+ 146.476613,
+ -36.94966
+ ],
+ [
+ 146.476613,
+ -36.05034
+ ],
+ [
+ 146.259588,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.259588,
+ -36.94966
+ ],
+ [
+ 146.259588,
+ -37.848981
+ ],
+ [
+ 146.476613,
+ -37.848981
+ ],
+ [
+ 146.476613,
+ -36.94966
+ ],
+ [
+ 146.259588,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.259588,
+ -37.848981
+ ],
+ [
+ 146.259588,
+ -38.748301
+ ],
+ [
+ 146.476613,
+ -38.748301
+ ],
+ [
+ 146.476613,
+ -37.848981
+ ],
+ [
+ 146.259588,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.476613,
+ -34.251699
+ ],
+ [
+ 146.476613,
+ -35.151019
+ ],
+ [
+ 146.693638,
+ -35.151019
+ ],
+ [
+ 146.693638,
+ -34.251699
+ ],
+ [
+ 146.476613,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.476613,
+ -35.151019
+ ],
+ [
+ 146.476613,
+ -36.05034
+ ],
+ [
+ 146.693638,
+ -36.05034
+ ],
+ [
+ 146.693638,
+ -35.151019
+ ],
+ [
+ 146.476613,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.476613,
+ -36.05034
+ ],
+ [
+ 146.476613,
+ -36.94966
+ ],
+ [
+ 146.693638,
+ -36.94966
+ ],
+ [
+ 146.693638,
+ -36.05034
+ ],
+ [
+ 146.476613,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.476613,
+ -36.94966
+ ],
+ [
+ 146.476613,
+ -37.848981
+ ],
+ [
+ 146.693638,
+ -37.848981
+ ],
+ [
+ 146.693638,
+ -36.94966
+ ],
+ [
+ 146.476613,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.476613,
+ -37.848981
+ ],
+ [
+ 146.476613,
+ -38.748301
+ ],
+ [
+ 146.693638,
+ -38.748301
+ ],
+ [
+ 146.693638,
+ -37.848981
+ ],
+ [
+ 146.476613,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.693638,
+ -34.251699
+ ],
+ [
+ 146.693638,
+ -35.151019
+ ],
+ [
+ 146.910663,
+ -35.151019
+ ],
+ [
+ 146.910663,
+ -34.251699
+ ],
+ [
+ 146.693638,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.693638,
+ -35.151019
+ ],
+ [
+ 146.693638,
+ -36.05034
+ ],
+ [
+ 146.910663,
+ -36.05034
+ ],
+ [
+ 146.910663,
+ -35.151019
+ ],
+ [
+ 146.693638,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.693638,
+ -36.05034
+ ],
+ [
+ 146.693638,
+ -36.94966
+ ],
+ [
+ 146.910663,
+ -36.94966
+ ],
+ [
+ 146.910663,
+ -36.05034
+ ],
+ [
+ 146.693638,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.693638,
+ -36.94966
+ ],
+ [
+ 146.693638,
+ -37.848981
+ ],
+ [
+ 146.910663,
+ -37.848981
+ ],
+ [
+ 146.910663,
+ -36.94966
+ ],
+ [
+ 146.693638,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.693638,
+ -37.848981
+ ],
+ [
+ 146.693638,
+ -38.748301
+ ],
+ [
+ 146.910663,
+ -38.748301
+ ],
+ [
+ 146.910663,
+ -37.848981
+ ],
+ [
+ 146.693638,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.910663,
+ -34.251699
+ ],
+ [
+ 146.910663,
+ -35.151019
+ ],
+ [
+ 147.127689,
+ -35.151019
+ ],
+ [
+ 147.127689,
+ -34.251699
+ ],
+ [
+ 146.910663,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.910663,
+ -35.151019
+ ],
+ [
+ 146.910663,
+ -36.05034
+ ],
+ [
+ 147.127689,
+ -36.05034
+ ],
+ [
+ 147.127689,
+ -35.151019
+ ],
+ [
+ 146.910663,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.910663,
+ -36.05034
+ ],
+ [
+ 146.910663,
+ -36.94966
+ ],
+ [
+ 147.127689,
+ -36.94966
+ ],
+ [
+ 147.127689,
+ -36.05034
+ ],
+ [
+ 146.910663,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.910663,
+ -36.94966
+ ],
+ [
+ 146.910663,
+ -37.848981
+ ],
+ [
+ 147.127689,
+ -37.848981
+ ],
+ [
+ 147.127689,
+ -36.94966
+ ],
+ [
+ 146.910663,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 146.910663,
+ -37.848981
+ ],
+ [
+ 146.910663,
+ -38.748301
+ ],
+ [
+ 147.127689,
+ -38.748301
+ ],
+ [
+ 147.127689,
+ -37.848981
+ ],
+ [
+ 146.910663,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.127689,
+ -34.251699
+ ],
+ [
+ 147.127689,
+ -35.151019
+ ],
+ [
+ 147.344714,
+ -35.151019
+ ],
+ [
+ 147.344714,
+ -34.251699
+ ],
+ [
+ 147.127689,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.127689,
+ -35.151019
+ ],
+ [
+ 147.127689,
+ -36.05034
+ ],
+ [
+ 147.344714,
+ -36.05034
+ ],
+ [
+ 147.344714,
+ -35.151019
+ ],
+ [
+ 147.127689,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.127689,
+ -36.05034
+ ],
+ [
+ 147.127689,
+ -36.94966
+ ],
+ [
+ 147.344714,
+ -36.94966
+ ],
+ [
+ 147.344714,
+ -36.05034
+ ],
+ [
+ 147.127689,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.127689,
+ -36.94966
+ ],
+ [
+ 147.127689,
+ -37.848981
+ ],
+ [
+ 147.344714,
+ -37.848981
+ ],
+ [
+ 147.344714,
+ -36.94966
+ ],
+ [
+ 147.127689,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.127689,
+ -37.848981
+ ],
+ [
+ 147.127689,
+ -38.748301
+ ],
+ [
+ 147.344714,
+ -38.748301
+ ],
+ [
+ 147.344714,
+ -37.848981
+ ],
+ [
+ 147.127689,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.344714,
+ -34.251699
+ ],
+ [
+ 147.344714,
+ -35.151019
+ ],
+ [
+ 147.561739,
+ -35.151019
+ ],
+ [
+ 147.561739,
+ -34.251699
+ ],
+ [
+ 147.344714,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.344714,
+ -35.151019
+ ],
+ [
+ 147.344714,
+ -36.05034
+ ],
+ [
+ 147.561739,
+ -36.05034
+ ],
+ [
+ 147.561739,
+ -35.151019
+ ],
+ [
+ 147.344714,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.344714,
+ -36.05034
+ ],
+ [
+ 147.344714,
+ -36.94966
+ ],
+ [
+ 147.561739,
+ -36.94966
+ ],
+ [
+ 147.561739,
+ -36.05034
+ ],
+ [
+ 147.344714,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.344714,
+ -36.94966
+ ],
+ [
+ 147.344714,
+ -37.848981
+ ],
+ [
+ 147.561739,
+ -37.848981
+ ],
+ [
+ 147.561739,
+ -36.94966
+ ],
+ [
+ 147.344714,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.344714,
+ -37.848981
+ ],
+ [
+ 147.344714,
+ -38.748301
+ ],
+ [
+ 147.561739,
+ -38.748301
+ ],
+ [
+ 147.561739,
+ -37.848981
+ ],
+ [
+ 147.344714,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.561739,
+ -34.251699
+ ],
+ [
+ 147.561739,
+ -35.151019
+ ],
+ [
+ 147.778764,
+ -35.151019
+ ],
+ [
+ 147.778764,
+ -34.251699
+ ],
+ [
+ 147.561739,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.561739,
+ -35.151019
+ ],
+ [
+ 147.561739,
+ -36.05034
+ ],
+ [
+ 147.778764,
+ -36.05034
+ ],
+ [
+ 147.778764,
+ -35.151019
+ ],
+ [
+ 147.561739,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.561739,
+ -36.05034
+ ],
+ [
+ 147.561739,
+ -36.94966
+ ],
+ [
+ 147.778764,
+ -36.94966
+ ],
+ [
+ 147.778764,
+ -36.05034
+ ],
+ [
+ 147.561739,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.561739,
+ -36.94966
+ ],
+ [
+ 147.561739,
+ -37.848981
+ ],
+ [
+ 147.778764,
+ -37.848981
+ ],
+ [
+ 147.778764,
+ -36.94966
+ ],
+ [
+ 147.561739,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.561739,
+ -37.848981
+ ],
+ [
+ 147.561739,
+ -38.748301
+ ],
+ [
+ 147.778764,
+ -38.748301
+ ],
+ [
+ 147.778764,
+ -37.848981
+ ],
+ [
+ 147.561739,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.778764,
+ -34.251699
+ ],
+ [
+ 147.778764,
+ -35.151019
+ ],
+ [
+ 147.995789,
+ -35.151019
+ ],
+ [
+ 147.995789,
+ -34.251699
+ ],
+ [
+ 147.778764,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.778764,
+ -35.151019
+ ],
+ [
+ 147.778764,
+ -36.05034
+ ],
+ [
+ 147.995789,
+ -36.05034
+ ],
+ [
+ 147.995789,
+ -35.151019
+ ],
+ [
+ 147.778764,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.778764,
+ -36.05034
+ ],
+ [
+ 147.778764,
+ -36.94966
+ ],
+ [
+ 147.995789,
+ -36.94966
+ ],
+ [
+ 147.995789,
+ -36.05034
+ ],
+ [
+ 147.778764,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.778764,
+ -36.94966
+ ],
+ [
+ 147.778764,
+ -37.848981
+ ],
+ [
+ 147.995789,
+ -37.848981
+ ],
+ [
+ 147.995789,
+ -36.94966
+ ],
+ [
+ 147.778764,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.778764,
+ -37.848981
+ ],
+ [
+ 147.778764,
+ -38.748301
+ ],
+ [
+ 147.995789,
+ -38.748301
+ ],
+ [
+ 147.995789,
+ -37.848981
+ ],
+ [
+ 147.778764,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.995789,
+ -34.251699
+ ],
+ [
+ 147.995789,
+ -35.151019
+ ],
+ [
+ 148.212814,
+ -35.151019
+ ],
+ [
+ 148.212814,
+ -34.251699
+ ],
+ [
+ 147.995789,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.995789,
+ -35.151019
+ ],
+ [
+ 147.995789,
+ -36.05034
+ ],
+ [
+ 148.212814,
+ -36.05034
+ ],
+ [
+ 148.212814,
+ -35.151019
+ ],
+ [
+ 147.995789,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.995789,
+ -36.05034
+ ],
+ [
+ 147.995789,
+ -36.94966
+ ],
+ [
+ 148.212814,
+ -36.94966
+ ],
+ [
+ 148.212814,
+ -36.05034
+ ],
+ [
+ 147.995789,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.995789,
+ -36.94966
+ ],
+ [
+ 147.995789,
+ -37.848981
+ ],
+ [
+ 148.212814,
+ -37.848981
+ ],
+ [
+ 148.212814,
+ -36.94966
+ ],
+ [
+ 147.995789,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 147.995789,
+ -37.848981
+ ],
+ [
+ 147.995789,
+ -38.748301
+ ],
+ [
+ 148.212814,
+ -38.748301
+ ],
+ [
+ 148.212814,
+ -37.848981
+ ],
+ [
+ 147.995789,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.212814,
+ -34.251699
+ ],
+ [
+ 148.212814,
+ -35.151019
+ ],
+ [
+ 148.42984,
+ -35.151019
+ ],
+ [
+ 148.42984,
+ -34.251699
+ ],
+ [
+ 148.212814,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.212814,
+ -35.151019
+ ],
+ [
+ 148.212814,
+ -36.05034
+ ],
+ [
+ 148.42984,
+ -36.05034
+ ],
+ [
+ 148.42984,
+ -35.151019
+ ],
+ [
+ 148.212814,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.212814,
+ -36.05034
+ ],
+ [
+ 148.212814,
+ -36.94966
+ ],
+ [
+ 148.42984,
+ -36.94966
+ ],
+ [
+ 148.42984,
+ -36.05034
+ ],
+ [
+ 148.212814,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.212814,
+ -36.94966
+ ],
+ [
+ 148.212814,
+ -37.848981
+ ],
+ [
+ 148.42984,
+ -37.848981
+ ],
+ [
+ 148.42984,
+ -36.94966
+ ],
+ [
+ 148.212814,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.212814,
+ -37.848981
+ ],
+ [
+ 148.212814,
+ -38.748301
+ ],
+ [
+ 148.42984,
+ -38.748301
+ ],
+ [
+ 148.42984,
+ -37.848981
+ ],
+ [
+ 148.212814,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.42984,
+ -34.251699
+ ],
+ [
+ 148.42984,
+ -35.151019
+ ],
+ [
+ 148.646865,
+ -35.151019
+ ],
+ [
+ 148.646865,
+ -34.251699
+ ],
+ [
+ 148.42984,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.42984,
+ -35.151019
+ ],
+ [
+ 148.42984,
+ -36.05034
+ ],
+ [
+ 148.646865,
+ -36.05034
+ ],
+ [
+ 148.646865,
+ -35.151019
+ ],
+ [
+ 148.42984,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.42984,
+ -36.05034
+ ],
+ [
+ 148.42984,
+ -36.94966
+ ],
+ [
+ 148.646865,
+ -36.94966
+ ],
+ [
+ 148.646865,
+ -36.05034
+ ],
+ [
+ 148.42984,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.42984,
+ -36.94966
+ ],
+ [
+ 148.42984,
+ -37.848981
+ ],
+ [
+ 148.646865,
+ -37.848981
+ ],
+ [
+ 148.646865,
+ -36.94966
+ ],
+ [
+ 148.42984,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.42984,
+ -37.848981
+ ],
+ [
+ 148.42984,
+ -38.748301
+ ],
+ [
+ 148.646865,
+ -38.748301
+ ],
+ [
+ 148.646865,
+ -37.848981
+ ],
+ [
+ 148.42984,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.646865,
+ -34.251699
+ ],
+ [
+ 148.646865,
+ -35.151019
+ ],
+ [
+ 148.86389,
+ -35.151019
+ ],
+ [
+ 148.86389,
+ -34.251699
+ ],
+ [
+ 148.646865,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.646865,
+ -35.151019
+ ],
+ [
+ 148.646865,
+ -36.05034
+ ],
+ [
+ 148.86389,
+ -36.05034
+ ],
+ [
+ 148.86389,
+ -35.151019
+ ],
+ [
+ 148.646865,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.646865,
+ -36.05034
+ ],
+ [
+ 148.646865,
+ -36.94966
+ ],
+ [
+ 148.86389,
+ -36.94966
+ ],
+ [
+ 148.86389,
+ -36.05034
+ ],
+ [
+ 148.646865,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.646865,
+ -36.94966
+ ],
+ [
+ 148.646865,
+ -37.848981
+ ],
+ [
+ 148.86389,
+ -37.848981
+ ],
+ [
+ 148.86389,
+ -36.94966
+ ],
+ [
+ 148.646865,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.646865,
+ -37.848981
+ ],
+ [
+ 148.646865,
+ -38.748301
+ ],
+ [
+ 148.86389,
+ -38.748301
+ ],
+ [
+ 148.86389,
+ -37.848981
+ ],
+ [
+ 148.646865,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.86389,
+ -34.251699
+ ],
+ [
+ 148.86389,
+ -35.151019
+ ],
+ [
+ 149.080915,
+ -35.151019
+ ],
+ [
+ 149.080915,
+ -34.251699
+ ],
+ [
+ 148.86389,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.86389,
+ -35.151019
+ ],
+ [
+ 148.86389,
+ -36.05034
+ ],
+ [
+ 149.080915,
+ -36.05034
+ ],
+ [
+ 149.080915,
+ -35.151019
+ ],
+ [
+ 148.86389,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.86389,
+ -36.05034
+ ],
+ [
+ 148.86389,
+ -36.94966
+ ],
+ [
+ 149.080915,
+ -36.94966
+ ],
+ [
+ 149.080915,
+ -36.05034
+ ],
+ [
+ 148.86389,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.86389,
+ -36.94966
+ ],
+ [
+ 148.86389,
+ -37.848981
+ ],
+ [
+ 149.080915,
+ -37.848981
+ ],
+ [
+ 149.080915,
+ -36.94966
+ ],
+ [
+ 148.86389,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 148.86389,
+ -37.848981
+ ],
+ [
+ 148.86389,
+ -38.748301
+ ],
+ [
+ 149.080915,
+ -38.748301
+ ],
+ [
+ 149.080915,
+ -37.848981
+ ],
+ [
+ 148.86389,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.080915,
+ -34.251699
+ ],
+ [
+ 149.080915,
+ -35.151019
+ ],
+ [
+ 149.29794,
+ -35.151019
+ ],
+ [
+ 149.29794,
+ -34.251699
+ ],
+ [
+ 149.080915,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.080915,
+ -35.151019
+ ],
+ [
+ 149.080915,
+ -36.05034
+ ],
+ [
+ 149.29794,
+ -36.05034
+ ],
+ [
+ 149.29794,
+ -35.151019
+ ],
+ [
+ 149.080915,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.080915,
+ -36.05034
+ ],
+ [
+ 149.080915,
+ -36.94966
+ ],
+ [
+ 149.29794,
+ -36.94966
+ ],
+ [
+ 149.29794,
+ -36.05034
+ ],
+ [
+ 149.080915,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.080915,
+ -36.94966
+ ],
+ [
+ 149.080915,
+ -37.848981
+ ],
+ [
+ 149.29794,
+ -37.848981
+ ],
+ [
+ 149.29794,
+ -36.94966
+ ],
+ [
+ 149.080915,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.080915,
+ -37.848981
+ ],
+ [
+ 149.080915,
+ -38.748301
+ ],
+ [
+ 149.29794,
+ -38.748301
+ ],
+ [
+ 149.29794,
+ -37.848981
+ ],
+ [
+ 149.080915,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.29794,
+ -34.251699
+ ],
+ [
+ 149.29794,
+ -35.151019
+ ],
+ [
+ 149.514965,
+ -35.151019
+ ],
+ [
+ 149.514965,
+ -34.251699
+ ],
+ [
+ 149.29794,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.29794,
+ -35.151019
+ ],
+ [
+ 149.29794,
+ -36.05034
+ ],
+ [
+ 149.514965,
+ -36.05034
+ ],
+ [
+ 149.514965,
+ -35.151019
+ ],
+ [
+ 149.29794,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.29794,
+ -36.05034
+ ],
+ [
+ 149.29794,
+ -36.94966
+ ],
+ [
+ 149.514965,
+ -36.94966
+ ],
+ [
+ 149.514965,
+ -36.05034
+ ],
+ [
+ 149.29794,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.29794,
+ -36.94966
+ ],
+ [
+ 149.29794,
+ -37.848981
+ ],
+ [
+ 149.514965,
+ -37.848981
+ ],
+ [
+ 149.514965,
+ -36.94966
+ ],
+ [
+ 149.29794,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.29794,
+ -37.848981
+ ],
+ [
+ 149.29794,
+ -38.748301
+ ],
+ [
+ 149.514965,
+ -38.748301
+ ],
+ [
+ 149.514965,
+ -37.848981
+ ],
+ [
+ 149.29794,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.514965,
+ -34.251699
+ ],
+ [
+ 149.514965,
+ -35.151019
+ ],
+ [
+ 149.73199,
+ -35.151019
+ ],
+ [
+ 149.73199,
+ -34.251699
+ ],
+ [
+ 149.514965,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.514965,
+ -35.151019
+ ],
+ [
+ 149.514965,
+ -36.05034
+ ],
+ [
+ 149.73199,
+ -36.05034
+ ],
+ [
+ 149.73199,
+ -35.151019
+ ],
+ [
+ 149.514965,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.514965,
+ -36.05034
+ ],
+ [
+ 149.514965,
+ -36.94966
+ ],
+ [
+ 149.73199,
+ -36.94966
+ ],
+ [
+ 149.73199,
+ -36.05034
+ ],
+ [
+ 149.514965,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.514965,
+ -36.94966
+ ],
+ [
+ 149.514965,
+ -37.848981
+ ],
+ [
+ 149.73199,
+ -37.848981
+ ],
+ [
+ 149.73199,
+ -36.94966
+ ],
+ [
+ 149.514965,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.514965,
+ -37.848981
+ ],
+ [
+ 149.514965,
+ -38.748301
+ ],
+ [
+ 149.73199,
+ -38.748301
+ ],
+ [
+ 149.73199,
+ -37.848981
+ ],
+ [
+ 149.514965,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.73199,
+ -34.251699
+ ],
+ [
+ 149.73199,
+ -35.151019
+ ],
+ [
+ 149.949016,
+ -35.151019
+ ],
+ [
+ 149.949016,
+ -34.251699
+ ],
+ [
+ 149.73199,
+ -34.251699
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.73199,
+ -35.151019
+ ],
+ [
+ 149.73199,
+ -36.05034
+ ],
+ [
+ 149.949016,
+ -36.05034
+ ],
+ [
+ 149.949016,
+ -35.151019
+ ],
+ [
+ 149.73199,
+ -35.151019
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.73199,
+ -36.05034
+ ],
+ [
+ 149.73199,
+ -36.94966
+ ],
+ [
+ 149.949016,
+ -36.94966
+ ],
+ [
+ 149.949016,
+ -36.05034
+ ],
+ [
+ 149.73199,
+ -36.05034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.73199,
+ -36.94966
+ ],
+ [
+ 149.73199,
+ -37.848981
+ ],
+ [
+ 149.949016,
+ -37.848981
+ ],
+ [
+ 149.949016,
+ -36.94966
+ ],
+ [
+ 149.73199,
+ -36.94966
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 149.73199,
+ -37.848981
+ ],
+ [
+ 149.73199,
+ -38.748301
+ ],
+ [
+ 149.949016,
+ -38.748301
+ ],
+ [
+ 149.949016,
+ -37.848981
+ ],
+ [
+ 149.73199,
+ -37.848981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 141,
+ -34,
+ 150,
+ -39
+ ],
+ "properties": {
+ "stroke": "#F00",
+ "stroke-width": 6,
+ "fill-opacity": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 141,
+ -34
+ ],
+ [
+ 150,
+ -34
+ ],
+ [
+ 150,
+ -39
+ ],
+ [
+ 141,
+ -39
+ ],
+ [
+ 141,
+ -34
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/packages/turf-square-grid/README.md b/packages/turf-square-grid/README.md
index d9979f6a54..5825d70070 100644
--- a/packages/turf-square-grid/README.md
+++ b/packages/turf-square-grid/README.md
@@ -4,16 +4,18 @@
## squareGrid
-Creates a square grid from a bounding box, [Feature][1] or [FeatureCollection][2].
+Creates a square grid from a bounding box, [Feature](https://tools.ietf.org/html/rfc7946#section-3.2) or [FeatureCollection](https://tools.ietf.org/html/rfc7946#section-3.3).
**Parameters**
-- `bbox` **[Array][3]<[number][4]>** extent in [minX, minY, maxX, maxY] order
-- `cellSide` **[number][4]** of each cell, in units
-- `options` **[Object][5]** Optional parameters (optional, default `{}`)
- - `options.units` **[string][6]** used in calculating cellSide, can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`)
- - `options.mask` **[Feature][7]<([Polygon][8] \| [MultiPolygon][9])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it
- - `options.properties` **[Object][5]** passed to each point of the grid (optional, default `{}`)
+- `bbox` **[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)>** extent in [minX, minY, maxX, maxY] order
+- `cellSide` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** of each cell, in units
+- `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional parameters (optional, default `{}`)
+ - `options.units` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** used in calculating cellSide, can be degrees,
+ radians, miles, or kilometers (optional, default `'kilometers'`)
+ - `options.mask` **[Feature](https://tools.ietf.org/html/rfc7946#section-3.2)<([Polygon](https://tools.ietf.org/html/rfc7946#section-3.1.6) \| [MultiPolygon](https://tools.ietf.org/html/rfc7946#section-3.1.7))>?** if passed a Polygon or MultiPolygon,
+ the grid Points will be created only inside it
+ - `options.properties` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** passed to each point of the grid (optional, default `{}`)
**Examples**
@@ -28,27 +30,7 @@ var squareGrid = turf.squareGrid(bbox, cellSide, options);
var addToMap = [squareGrid]
```
-Returns **[FeatureCollection][10]<[Polygon][8]>** grid a grid of polygons
-
-[1]: https://tools.ietf.org/html/rfc7946#section-3.2
-
-[2]: https://tools.ietf.org/html/rfc7946#section-3.3
-
-[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.2
-
-[8]: https://tools.ietf.org/html/rfc7946#section-3.1.6
-
-[9]: https://tools.ietf.org/html/rfc7946#section-3.1.7
-
-[10]: https://tools.ietf.org/html/rfc7946#section-3.3
+Returns **[FeatureCollection](https://tools.ietf.org/html/rfc7946#section-3.3)<[Polygon](https://tools.ietf.org/html/rfc7946#section-3.1.6)>** grid a grid of polygons