Repository: mapbox/tile-cover Branch: master Commit: fecd2cfad138 Files: 402 Total size: 4.9 MB Directory structure: gitextract_ur7rdgvn/ ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── bench.js ├── index.js ├── package.json └── test/ ├── fixtures/ │ ├── blocky.geojson │ ├── blocky_out.geojson │ ├── building.geojson │ ├── building_out.geojson │ ├── degenring.geojson │ ├── degenring_out.geojson │ ├── donut.geojson │ ├── donut_out.geojson │ ├── edgeline.geojson │ ├── edgeline_out.geojson │ ├── highzoom.geojson │ ├── highzoom_out.geojson │ ├── line.geojson │ ├── line_out.geojson │ ├── multiline.geojson │ ├── multiline_out.geojson │ ├── multipoint.geojson │ ├── multipoint_out.geojson │ ├── point.geojson │ ├── point_out.geojson │ ├── polygon.geojson │ ├── polygon_out.geojson │ ├── pyramid.geojson │ ├── pyramid_out.geojson │ ├── road.geojson │ ├── russia.geojson │ ├── russia_out.geojson │ ├── small_poly.geojson │ ├── small_poly_out.geojson │ ├── spiked.geojson │ ├── spiked_out.geojson │ ├── tetris.geojson │ ├── tetris_out.geojson │ ├── uk.geojson │ ├── uk_out.geojson │ ├── world/ │ │ ├── AFG.geo.json │ │ ├── AFG_out.geojson │ │ ├── AGO.geo.json │ │ ├── AGO_out.geojson │ │ ├── ALB.geo.json │ │ ├── ALB_out.geojson │ │ ├── ARE.geo.json │ │ ├── ARE_out.geojson │ │ ├── ARG.geo.json │ │ ├── ARG_out.geojson │ │ ├── ARM.geo.json │ │ ├── ARM_out.geojson │ │ ├── ATF.geo.json │ │ ├── ATF_out.geojson │ │ ├── AUS.geo.json │ │ ├── AUS_out.geojson │ │ ├── AUT.geo.json │ │ ├── AUT_out.geojson │ │ ├── AZE.geo.json │ │ ├── AZE_out.geojson │ │ ├── BDI.geo.json │ │ ├── BDI_out.geojson │ │ ├── BEL.geo.json │ │ ├── BEL_out.geojson │ │ ├── BEN.geo.json │ │ ├── BEN_out.geojson │ │ ├── BFA.geo.json │ │ ├── BFA_out.geojson │ │ ├── BGD.geo.json │ │ ├── BGD_out.geojson │ │ ├── BGR.geo.json │ │ ├── BGR_out.geojson │ │ ├── BHS.geo.json │ │ ├── BHS_out.geojson │ │ ├── BIH.geo.json │ │ ├── BIH_out.geojson │ │ ├── BLR.geo.json │ │ ├── BLR_out.geojson │ │ ├── BLZ.geo.json │ │ ├── BLZ_out.geojson │ │ ├── BMU.geo.json │ │ ├── BMU_out.geojson │ │ ├── BOL.geo.json │ │ ├── BOL_out.geojson │ │ ├── BRA.geo.json │ │ ├── BRA_out.geojson │ │ ├── BRN.geo.json │ │ ├── BRN_out.geojson │ │ ├── BTN.geo.json │ │ ├── BTN_out.geojson │ │ ├── BWA.geo.json │ │ ├── BWA_out.geojson │ │ ├── CAF.geo.json │ │ ├── CAF_out.geojson │ │ ├── CAN.geo.json │ │ ├── CAN_out.geojson │ │ ├── CHE.geo.json │ │ ├── CHE_out.geojson │ │ ├── CHL.geo.json │ │ ├── CHL_out.geojson │ │ ├── CHN.geo.json │ │ ├── CHN_out.geojson │ │ ├── CIV.geo.json │ │ ├── CIV_out.geojson │ │ ├── CMR.geo.json │ │ ├── CMR_out.geojson │ │ ├── COD.geo.json │ │ ├── COD_out.geojson │ │ ├── COG.geo.json │ │ ├── COG_out.geojson │ │ ├── COL.geo.json │ │ ├── COL_out.geojson │ │ ├── CRI.geo.json │ │ ├── CRI_out.geojson │ │ ├── CS-KM.geo.json │ │ ├── CS-KM_out.geojson │ │ ├── CUB.geo.json │ │ ├── CUB_out.geojson │ │ ├── CYP.geo.json │ │ ├── CYP_out.geojson │ │ ├── CZE.geo.json │ │ ├── CZE_out.geojson │ │ ├── DEU.geo.json │ │ ├── DEU_out.geojson │ │ ├── DJI.geo.json │ │ ├── DJI_out.geojson │ │ ├── DNK.geo.json │ │ ├── DNK_out.geojson │ │ ├── DOM.geo.json │ │ ├── DOM_out.geojson │ │ ├── DZA.geo.json │ │ ├── DZA_out.geojson │ │ ├── ECU.geo.json │ │ ├── ECU_out.geojson │ │ ├── EGY.geo.json │ │ ├── EGY_out.geojson │ │ ├── ERI.geo.json │ │ ├── ERI_out.geojson │ │ ├── ESH.geo.json │ │ ├── ESH_out.geojson │ │ ├── ESP.geo.json │ │ ├── ESP_out.geojson │ │ ├── EST.geo.json │ │ ├── EST_out.geojson │ │ ├── ETH.geo.json │ │ ├── ETH_out.geojson │ │ ├── FIN.geo.json │ │ ├── FIN_out.geojson │ │ ├── FJI.geo.json │ │ ├── FJI_out.geojson │ │ ├── FLK.geo.json │ │ ├── FLK_out.geojson │ │ ├── FRA.geo.json │ │ ├── FRA_out.geojson │ │ ├── GAB.geo.json │ │ ├── GAB_out.geojson │ │ ├── GBR.geo.json │ │ ├── GBR_out.geojson │ │ ├── GEO.geo.json │ │ ├── GEO_out.geojson │ │ ├── GHA.geo.json │ │ ├── GHA_out.geojson │ │ ├── GIN.geo.json │ │ ├── GIN_out.geojson │ │ ├── GMB.geo.json │ │ ├── GMB_out.geojson │ │ ├── GNB.geo.json │ │ ├── GNB_out.geojson │ │ ├── GNQ.geo.json │ │ ├── GNQ_out.geojson │ │ ├── GRC.geo.json │ │ ├── GRC_out.geojson │ │ ├── GRL.geo.json │ │ ├── GRL_out.geojson │ │ ├── GTM.geo.json │ │ ├── GTM_out.geojson │ │ ├── GUF.geo.json │ │ ├── GUF_out.geojson │ │ ├── GUY.geo.json │ │ ├── GUY_out.geojson │ │ ├── HND.geo.json │ │ ├── HND_out.geojson │ │ ├── HRV.geo.json │ │ ├── HRV_out.geojson │ │ ├── HTI.geo.json │ │ ├── HTI_out.geojson │ │ ├── HUN.geo.json │ │ ├── HUN_out.geojson │ │ ├── IDN.geo.json │ │ ├── IDN_out.geojson │ │ ├── IND.geo.json │ │ ├── IND_out.geojson │ │ ├── IRL.geo.json │ │ ├── IRL_out.geojson │ │ ├── IRN.geo.json │ │ ├── IRN_out.geojson │ │ ├── IRQ.geo.json │ │ ├── IRQ_out.geojson │ │ ├── ISL.geo.json │ │ ├── ISL_out.geojson │ │ ├── ISR.geo.json │ │ ├── ISR_out.geojson │ │ ├── ITA.geo.json │ │ ├── ITA_out.geojson │ │ ├── JAM.geo.json │ │ ├── JAM_out.geojson │ │ ├── JOR.geo.json │ │ ├── JOR_out.geojson │ │ ├── JPN.geo.json │ │ ├── JPN_out.geojson │ │ ├── KAZ.geo.json │ │ ├── KAZ_out.geojson │ │ ├── KEN.geo.json │ │ ├── KEN_out.geojson │ │ ├── KGZ.geo.json │ │ ├── KGZ_out.geojson │ │ ├── KHM.geo.json │ │ ├── KHM_out.geojson │ │ ├── KOR.geo.json │ │ ├── KOR_out.geojson │ │ ├── KWT.geo.json │ │ ├── KWT_out.geojson │ │ ├── LAO.geo.json │ │ ├── LAO_out.geojson │ │ ├── LBN.geo.json │ │ ├── LBN_out.geojson │ │ ├── LBR.geo.json │ │ ├── LBR_out.geojson │ │ ├── LBY.geo.json │ │ ├── LBY_out.geojson │ │ ├── LKA.geo.json │ │ ├── LKA_out.geojson │ │ ├── LSO.geo.json │ │ ├── LSO_out.geojson │ │ ├── LTU.geo.json │ │ ├── LTU_out.geojson │ │ ├── LUX.geo.json │ │ ├── LUX_out.geojson │ │ ├── LVA.geo.json │ │ ├── LVA_out.geojson │ │ ├── MAR.geo.json │ │ ├── MAR_out.geojson │ │ ├── MDA.geo.json │ │ ├── MDA_out.geojson │ │ ├── MDG.geo.json │ │ ├── MDG_out.geojson │ │ ├── MEX.geo.json │ │ ├── MEX_out.geojson │ │ ├── MKD.geo.json │ │ ├── MKD_out.geojson │ │ ├── MLI.geo.json │ │ ├── MLI_out.geojson │ │ ├── MLT.geo.json │ │ ├── MLT_out.geojson │ │ ├── MMR.geo.json │ │ ├── MMR_out.geojson │ │ ├── MNE.geo.json │ │ ├── MNE_out.geojson │ │ ├── MNG.geo.json │ │ ├── MNG_out.geojson │ │ ├── MOZ.geo.json │ │ ├── MOZ_out.geojson │ │ ├── MRT.geo.json │ │ ├── MRT_out.geojson │ │ ├── MWI.geo.json │ │ ├── MWI_out.geojson │ │ ├── MYS.geo.json │ │ ├── MYS_out.geojson │ │ ├── NAM.geo.json │ │ ├── NAM_out.geojson │ │ ├── NCL.geo.json │ │ ├── NCL_out.geojson │ │ ├── NER.geo.json │ │ ├── NER_out.geojson │ │ ├── NGA.geo.json │ │ ├── NGA_out.geojson │ │ ├── NIC.geo.json │ │ ├── NIC_out.geojson │ │ ├── NLD.geo.json │ │ ├── NLD_out.geojson │ │ ├── NOR.geo.json │ │ ├── NOR_out.geojson │ │ ├── NPL.geo.json │ │ ├── NPL_out.geojson │ │ ├── NZL.geo.json │ │ ├── NZL_out.geojson │ │ ├── OMN.geo.json │ │ ├── OMN_out.geojson │ │ ├── PAK.geo.json │ │ ├── PAK_out.geojson │ │ ├── PAN.geo.json │ │ ├── PAN_out.geojson │ │ ├── PER.geo.json │ │ ├── PER_out.geojson │ │ ├── PHL.geo.json │ │ ├── PHL_out.geojson │ │ ├── PNG.geo.json │ │ ├── PNG_out.geojson │ │ ├── POL.geo.json │ │ ├── POL_out.geojson │ │ ├── PRI.geo.json │ │ ├── PRI_out.geojson │ │ ├── PRK.geo.json │ │ ├── PRK_out.geojson │ │ ├── PRT.geo.json │ │ ├── PRT_out.geojson │ │ ├── PRY.geo.json │ │ ├── PRY_out.geojson │ │ ├── PSE.geo.json │ │ ├── PSE_out.geojson │ │ ├── QAT.geo.json │ │ ├── QAT_out.geojson │ │ ├── ROU.geo.json │ │ ├── ROU_out.geojson │ │ ├── RUS.geo.json │ │ ├── RUS_out.geojson │ │ ├── RWA.geo.json │ │ ├── RWA_out.geojson │ │ ├── SAU.geo.json │ │ ├── SAU_out.geojson │ │ ├── SDN.geo.json │ │ ├── SDN_out.geojson │ │ ├── SEN.geo.json │ │ ├── SEN_out.geojson │ │ ├── SLB.geo.json │ │ ├── SLB_out.geojson │ │ ├── SLE.geo.json │ │ ├── SLE_out.geojson │ │ ├── SLV.geo.json │ │ ├── SLV_out.geojson │ │ ├── SOM.geo.json │ │ ├── SOM_out.geojson │ │ ├── SRB.geo.json │ │ ├── SRB_out.geojson │ │ ├── SSD.geo.json │ │ ├── SSD_out.geojson │ │ ├── SUR.geo.json │ │ ├── SUR_out.geojson │ │ ├── SVK.geo.json │ │ ├── SVK_out.geojson │ │ ├── SVN.geo.json │ │ ├── SVN_out.geojson │ │ ├── SWE.geo.json │ │ ├── SWE_out.geojson │ │ ├── SWZ.geo.json │ │ ├── SWZ_out.geojson │ │ ├── SYR.geo.json │ │ ├── SYR_out.geojson │ │ ├── TCD.geo.json │ │ ├── TCD_out.geojson │ │ ├── TGO.geo.json │ │ ├── TGO_out.geojson │ │ ├── THA.geo.json │ │ ├── THA_out.geojson │ │ ├── TJK.geo.json │ │ ├── TJK_out.geojson │ │ ├── TKM.geo.json │ │ ├── TKM_out.geojson │ │ ├── TLS.geo.json │ │ ├── TLS_out.geojson │ │ ├── TTO.geo.json │ │ ├── TTO_out.geojson │ │ ├── TUN.geo.json │ │ ├── TUN_out.geojson │ │ ├── TUR.geo.json │ │ ├── TUR_out.geojson │ │ ├── TWN.geo.json │ │ ├── TWN_out.geojson │ │ ├── TZA.geo.json │ │ ├── TZA_out.geojson │ │ ├── UGA.geo.json │ │ ├── UGA_out.geojson │ │ ├── UKR.geo.json │ │ ├── UKR_out.geojson │ │ ├── URY.geo.json │ │ ├── URY_out.geojson │ │ ├── USA.geo.json │ │ ├── USA_out.geojson │ │ ├── UZB.geo.json │ │ ├── UZB_out.geojson │ │ ├── VEN.geo.json │ │ ├── VEN_out.geojson │ │ ├── VNM.geo.json │ │ ├── VNM_out.geojson │ │ ├── VUT.geo.json │ │ ├── VUT_out.geojson │ │ ├── YEM.geo.json │ │ ├── YEM_out.geojson │ │ ├── ZAF.geo.json │ │ ├── ZAF_out.geojson │ │ ├── ZMB.geo.json │ │ ├── ZMB_out.geojson │ │ ├── ZWE.geo.json │ │ └── ZWE_out.geojson │ ├── world.geojson │ ├── zero.geojson │ └── zero_out.geojson ├── test.js └── world.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # Logs logs *.log # Runtime data pids *.pid *.seed # Directory for instrumented libs generated by jscoverage/JSCover lib-cov # Coverage directory used by tools like istanbul coverage # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) .grunt # Compiled binary addons (http://nodejs.org/api/addons.html) build/Release # Dependency directory # Deployed apps should consider commenting this line out: # see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git node_modules ================================================ FILE: .npmignore ================================================ /node_modules /test ================================================ FILE: .travis.yml ================================================ language: node_js node_js: - "4" - "node" ================================================ FILE: LICENSE ================================================ The MIT License (MIT) Copyright (c) 2014 Morgan Herlocker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ tile-cover ========== [![Build Status](https://travis-ci.org/mapbox/tile-cover.svg?branch=master)](https://travis-ci.org/mapbox/tile-cover) Generate the minimum number of tiles to cover a [GeoJSON Geometry](http://geojson.org/geojson-spec.html#geometry-objects). ### Install ```bash npm install @mapbox/tile-cover ``` ### Usage ```js var cover = require('@mapbox/tile-cover'); var poly = JSON.parse(fs.readFileSync('./poly.geojson')); var limits = { min_zoom: 4, max_zoom: 9 }; cover.geojson(poly.geom, limits); cover.tiles(poly.geom, limits); cover.indexes(poly.geom, limits); ``` # API ## geojson(geom, limits) Given a [geometry](http://geojson.org/geojson-spec.html#geometry-objects), create cells and return them in a format easily readable by any software that reads GeoJSON. * `geom` (`Object`): GeoJSON geometry * `limits` (`Object`): an object with min_zoom and max_zoom properties specifying the minimum and maximum level to be tiled. **Returns** `Object`, FeatureCollection of cells formatted as GeoJSON Features ## tiles(geom, limits) Given a [geometry](http://geojson.org/geojson-spec.html#geometry-objects), create cells and return them in their raw form, as an array of cell identifiers. * `geom` (`Object`): GeoJSON geometry * `limits` (`Object`): an object with min_zoom and max_zoom properties specifying the minimum and maximum level to be tiled. **Returns** `Array.>`, An array of tiles given as [x, y, z] arrays ## indexes(geom, limits) Given a [geometry](http://geojson.org/geojson-spec.html#geometry-objects), create cells and return them as quadkey indexes. * `geom` (`Object`): GeoJSON geometry * `limits` (`Object`): an object with min_zoom and max_zoom properties specifying the minimum and maximum level to be tiled. **Returns** `Array.`, An array of tiles given as quadkeys. ### Tests ```bash npm test ``` ### Benchmarks ```bash node bench.js ``` ### Examples ##### Polygons: ![img](https://dl.dropbox.com/s/48cj16fvt8nyh3o/Screenshot%202014-08-06%2013.34.12.png) ##### Lines: ![img](https://dl.dropbox.com/s/u32bq56adqwhpyy/Screenshot%202014-08-06%2013.30.31.png) ##### Points: ![img](https://dl.dropbox.com/s/7kkmmm8owg1ezb0/Screenshot%202014-08-06%2014.02.01.png) ================================================ FILE: bench.js ================================================ 'use strict'; var Benchmark = require('benchmark'); var cover = require('./index.js').tiles; var fs = require('fs'); var building = JSON.parse(fs.readFileSync('./test/fixtures/building.geojson')); var line = JSON.parse(fs.readFileSync('./test/fixtures/road.geojson')); var point = JSON.parse(fs.readFileSync('./test/fixtures/point.geojson')); var russia = JSON.parse(fs.readFileSync('./test/fixtures/russia.geojson')); var russiaLine = {type: 'LineString', coordinates: russia.coordinates[0]}; var zooms = [6, 8, 10, 12, 18, 20, 25, 28]; var suite = new Benchmark.Suite('tile-cover', { onError: function (err) { console.log(err); } }); addBench(suite, point, 'point', zooms[0], zooms[0]); zooms.forEach(function (zoom) { addBench(suite, line, 'road', zoom, zoom); }); zooms.forEach(function (zoom) { addBench(suite, building, 'building', zoom, zoom); }); zooms.slice(0, 3).forEach(function (zoom) { addBench(suite, russia, 'russia polygon', zoom, zoom); }); zooms.slice(0, 3).forEach(function (zoom) { addBench(suite, russiaLine, 'russia polyline', zoom, zoom); }); addBench(suite, russia, 'russia polygon multizoom', 0, 9); suite.on('cycle', function (event) { console.log(String(event.target)); }).run(); function addBench(suite, geometry, name, min_zoom, max_zoom) { suite.add('scan ' + name + ' - z' + min_zoom + ' - z' + max_zoom, { fn: function () { cover(geometry, {min_zoom: min_zoom, max_zoom: max_zoom}); }, maxTime: 1 }); } ================================================ FILE: index.js ================================================ 'use strict'; var tilebelt = require('@mapbox/tilebelt'); /** * Given a geometry, create cells and return them in a format easily readable * by any software that reads GeoJSON. * * @alias geojson * @param {Object} geom GeoJSON geometry * @param {Object} limits an object with min_zoom and max_zoom properties * specifying the minimum and maximum level to be tiled. * @returns {Object} FeatureCollection of cells formatted as GeoJSON Features */ exports.geojson = function (geom, limits) { return { type: 'FeatureCollection', features: getTiles(geom, limits).map(tileToFeature) }; }; function tileToFeature(t) { return { type: 'Feature', geometry: tilebelt.tileToGeoJSON(t), properties: {} }; } /** * Given a geometry, create cells and return them in their raw form, * as an array of cell identifiers. * * @alias tiles * @param {Object} geom GeoJSON geometry * @param {Object} limits an object with min_zoom and max_zoom properties * specifying the minimum and maximum level to be tiled. * @returns {Array>} An array of tiles given as [x, y, z] arrays */ exports.tiles = getTiles; /** * Given a geometry, create cells and return them as * [quadkey](http://msdn.microsoft.com/en-us/library/bb259689.aspx) indexes. * * @alias indexes * @param {Object} geom GeoJSON geometry * @param {Object} limits an object with min_zoom and max_zoom properties * specifying the minimum and maximum level to be tiled. * @returns {Array} An array of tiles given as quadkeys. */ exports.indexes = function (geom, limits) { return getTiles(geom, limits).map(tilebelt.tileToQuadkey); }; function getTiles(geom, limits) { var i, tile, coords = geom.coordinates, maxZoom = limits.max_zoom, tileHash = {}, tiles = []; if (geom.type === 'Point') { return [tilebelt.pointToTile(coords[0], coords[1], maxZoom)]; } else if (geom.type === 'MultiPoint') { for (i = 0; i < coords.length; i++) { tile = tilebelt.pointToTile(coords[i][0], coords[i][1], maxZoom); tileHash[toID(tile[0], tile[1], tile[2])] = true; } } else if (geom.type === 'LineString') { lineCover(tileHash, coords, maxZoom); } else if (geom.type === 'MultiLineString') { for (i = 0; i < coords.length; i++) { lineCover(tileHash, coords[i], maxZoom); } } else if (geom.type === 'Polygon') { polygonCover(tileHash, tiles, coords, maxZoom); } else if (geom.type === 'MultiPolygon') { for (i = 0; i < coords.length; i++) { polygonCover(tileHash, tiles, coords[i], maxZoom); } } else { throw new Error('Geometry type not implemented'); } if (limits.min_zoom !== maxZoom) { // sync tile hash and tile array so that both contain the same tiles var len = tiles.length; appendHashTiles(tileHash, tiles); for (i = 0; i < len; i++) { var t = tiles[i]; tileHash[toID(t[0], t[1], t[2])] = true; } return mergeTiles(tileHash, tiles, limits); } appendHashTiles(tileHash, tiles); return tiles; } function mergeTiles(tileHash, tiles, limits) { var mergedTiles = []; for (var z = limits.max_zoom; z > limits.min_zoom; z--) { var parentTileHash = {}; var parentTiles = []; for (var i = 0; i < tiles.length; i++) { var t = tiles[i]; if (t[0] % 2 === 0 && t[1] % 2 === 0) { var id2 = toID(t[0] + 1, t[1], z), id3 = toID(t[0], t[1] + 1, z), id4 = toID(t[0] + 1, t[1] + 1, z); if (tileHash[id2] && tileHash[id3] && tileHash[id4]) { tileHash[toID(t[0], t[1], t[2])] = false; tileHash[id2] = false; tileHash[id3] = false; tileHash[id4] = false; var parentTile = [t[0] / 2, t[1] / 2, z - 1]; if (z - 1 === limits.min_zoom) mergedTiles.push(parentTile); else { parentTileHash[toID(t[0] / 2, t[1] / 2, z - 1)] = true; parentTiles.push(parentTile); } } } } for (i = 0; i < tiles.length; i++) { t = tiles[i]; if (tileHash[toID(t[0], t[1], t[2])]) mergedTiles.push(t); } tileHash = parentTileHash; tiles = parentTiles; } return mergedTiles; } function polygonCover(tileHash, tileArray, geom, zoom) { var intersections = []; for (var i = 0; i < geom.length; i++) { var ring = []; lineCover(tileHash, geom[i], zoom, ring); for (var j = 0, len = ring.length, k = len - 1; j < len; k = j++) { var m = (j + 1) % len; var y = ring[j][1]; // add interesction if it's not local extremum or duplicate if ((y > ring[k][1] || y > ring[m][1]) && // not local minimum (y < ring[k][1] || y < ring[m][1]) && // not local maximum y !== ring[m][1]) intersections.push(ring[j]); } } intersections.sort(compareTiles); // sort by y, then x for (i = 0; i < intersections.length; i += 2) { // fill tiles between pairs of intersections y = intersections[i][1]; for (var x = intersections[i][0] + 1; x < intersections[i + 1][0]; x++) { var id = toID(x, y, zoom); if (!tileHash[id]) { tileArray.push([x, y, zoom]); } } } } function compareTiles(a, b) { return (a[1] - b[1]) || (a[0] - b[0]); } function lineCover(tileHash, coords, maxZoom, ring) { var prevX, prevY; for (var i = 0; i < coords.length - 1; i++) { var start = tilebelt.pointToTileFraction(coords[i][0], coords[i][1], maxZoom), stop = tilebelt.pointToTileFraction(coords[i + 1][0], coords[i + 1][1], maxZoom), x0 = start[0], y0 = start[1], x1 = stop[0], y1 = stop[1], dx = x1 - x0, dy = y1 - y0; if (dy === 0 && dx === 0) continue; var sx = dx > 0 ? 1 : -1, sy = dy > 0 ? 1 : -1, x = Math.floor(x0), y = Math.floor(y0), tMaxX = dx === 0 ? Infinity : Math.abs(((dx > 0 ? 1 : 0) + x - x0) / dx), tMaxY = dy === 0 ? Infinity : Math.abs(((dy > 0 ? 1 : 0) + y - y0) / dy), tdx = Math.abs(sx / dx), tdy = Math.abs(sy / dy); if (x !== prevX || y !== prevY) { tileHash[toID(x, y, maxZoom)] = true; if (ring && y !== prevY) ring.push([x, y]); prevX = x; prevY = y; } while (tMaxX < 1 || tMaxY < 1) { if (tMaxX < tMaxY) { tMaxX += tdx; x += sx; } else { tMaxY += tdy; y += sy; } tileHash[toID(x, y, maxZoom)] = true; if (ring && y !== prevY) ring.push([x, y]); prevX = x; prevY = y; } } if (ring && y === ring[0][1]) ring.pop(); } function appendHashTiles(hash, tiles) { var keys = Object.keys(hash); for (var i = 0; i < keys.length; i++) { tiles.push(fromID(+keys[i])); } } function toID(x, y, z) { var dim = 2 * (1 << z); return ((dim * y + x) * 32) + z; } function fromID(id) { var z = id % 32, dim = 2 * (1 << z), xy = ((id - z) / 32), x = xy % dim, y = ((xy - x) / dim) % dim; return [x, y, z]; } ================================================ FILE: package.json ================================================ { "name": "@mapbox/tile-cover", "version": "3.0.2", "description": "generate the minimum number of tiles to cover a geojson geometry", "main": "index.js", "directories": { "test": "test" }, "scripts": { "lint": "eslint *.js test/*.js --fix", "test": "npm run lint && tape test/*.js", "doc": "dox < index.js | doxme" }, "repository": { "type": "git", "url": "https://github.com/mapbox/tile-cover.git" }, "keywords": [ "tile", "cover", "geojson", "index" ], "author": "morganherlocker", "license": "MIT", "bugs": { "url": "https://github.com/mapbox/tile-cover/issues" }, "homepage": "https://github.com/mapbox/tile-cover", "devDependencies": { "@turf/area": "^4.0.1", "@turf/difference": "^4.0.1", "@turf/intersect": "^3.0.14", "@turf/union": "^3.0.14", "benchmark": "^2.1.4", "dox": "^0.9.0", "doxme": "^1.8.2", "eslint": "^3.19.0", "eslint-config-mourner": "^2.0.1", "tape": "^4.6.3" }, "dependencies": { "@mapbox/tilebelt": "^1.0.1" }, "eslintConfig": { "extends": "mourner", "rules": { "camelcase": 0 } } } ================================================ FILE: test/fixtures/blocky.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ -123.74855171115327, 31.950713949178226 ], [ -118.125, 31.950713949178226 ], [ -118.12471745286253, 31.95074177764231 ], [ -118.12444576385307, 31.950824193602298 ], [ -118.12419537382794, 31.950958029859063 ], [ -118.12397590513537, 31.951138143160318 ], [ -118.12379579183411, 31.9513576118529 ], [ -118.12366195557735, 31.951608001878032 ], [ -118.12357953961735, 31.951879690887473 ], [ -118.12355171115327, 31.952162238024954 ], [ -118.12355171115327, 36.59644084422347 ], [ -84.37644828884673, 36.59644084422347 ], [ -84.37644828884673, 11.17985016255852 ], [ -118.12355171115327, 11.17985016255852 ], [ -118.12355171115327, 27.05912578437406 ], [ -118.12357953961735, 27.05940833151154 ], [ -118.12366195557735, 27.059680020520982 ], [ -118.12379579183411, 27.059930410546116 ], [ -118.12397590513537, 27.060149879238697 ], [ -118.12419537382794, 27.060329992539952 ], [ -118.12444576385307, 27.060463828796717 ], [ -118.12471745286253, 27.060546244756704 ], [ -118.125, 27.06057407322079 ], [ -123.74855171115327, 27.06057407322079 ], [ -123.74855171115327, 31.950713949178226 ] ] ] } ================================================ FILE: test/fixtures/blocky_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 11.17840187 ], [ -101.25, 16.63619188 ], [ -95.625, 16.63619188 ], [ -95.625, 11.17840187 ], [ -101.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 16.63619188 ], [ -101.25, 21.94304553 ], [ -95.625, 21.94304553 ], [ -95.625, 16.63619188 ], [ -101.25, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 21.94304553 ], [ -101.25, 27.05912578 ], [ -95.625, 27.05912578 ], [ -95.625, 21.94304553 ], [ -101.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 27.05912578 ], [ -101.25, 31.95216224 ], [ -95.625, 31.95216224 ], [ -95.625, 27.05912578 ], [ -101.25, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 31.95216224 ], [ -101.25, 36.59788913 ], [ -95.625, 36.59788913 ], [ -95.625, 31.95216224 ], [ -101.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.875, 11.17840187 ], [ -106.875, 16.63619188 ], [ -101.25, 16.63619188 ], [ -101.25, 11.17840187 ], [ -106.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.875, 16.63619188 ], [ -106.875, 21.94304553 ], [ -101.25, 21.94304553 ], [ -101.25, 16.63619188 ], [ -106.875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.875, 21.94304553 ], [ -106.875, 27.05912578 ], [ -101.25, 27.05912578 ], [ -101.25, 21.94304553 ], [ -106.875, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.875, 27.05912578 ], [ -106.875, 31.95216224 ], [ -101.25, 31.95216224 ], [ -101.25, 27.05912578 ], [ -106.875, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.875, 31.95216224 ], [ -106.875, 36.59788913 ], [ -101.25, 36.59788913 ], [ -101.25, 31.95216224 ], [ -106.875, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 11.17840187 ], [ -112.5, 16.63619188 ], [ -106.875, 16.63619188 ], [ -106.875, 11.17840187 ], [ -112.5, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 16.63619188 ], [ -112.5, 21.94304553 ], [ -106.875, 21.94304553 ], [ -106.875, 16.63619188 ], [ -112.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 21.94304553 ], [ -112.5, 27.05912578 ], [ -106.875, 27.05912578 ], [ -106.875, 21.94304553 ], [ -112.5, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 27.05912578 ], [ -112.5, 31.95216224 ], [ -106.875, 31.95216224 ], [ -106.875, 27.05912578 ], [ -112.5, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 31.95216224 ], [ -112.5, 36.59788913 ], [ -106.875, 36.59788913 ], [ -106.875, 31.95216224 ], [ -112.5, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 11.17840187 ], [ -118.125, 16.63619188 ], [ -112.5, 16.63619188 ], [ -112.5, 11.17840187 ], [ -118.125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 16.63619188 ], [ -118.125, 21.94304553 ], [ -112.5, 21.94304553 ], [ -112.5, 16.63619188 ], [ -118.125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 21.94304553 ], [ -118.125, 27.05912578 ], [ -112.5, 27.05912578 ], [ -112.5, 21.94304553 ], [ -118.125, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 27.05912578 ], [ -118.125, 31.95216224 ], [ -112.5, 31.95216224 ], [ -112.5, 27.05912578 ], [ -118.125, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 31.95216224 ], [ -118.125, 36.59788913 ], [ -112.5, 36.59788913 ], [ -112.5, 31.95216224 ], [ -118.125, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 27.05912578 ], [ -123.75, 31.95216224 ], [ -118.125, 31.95216224 ], [ -118.125, 27.05912578 ], [ -123.75, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 11.17840187 ], [ -90, 16.63619188 ], [ -84.375, 16.63619188 ], [ -84.375, 11.17840187 ], [ -90, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 16.63619188 ], [ -90, 21.94304553 ], [ -84.375, 21.94304553 ], [ -84.375, 16.63619188 ], [ -90, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 21.94304553 ], [ -90, 27.05912578 ], [ -84.375, 27.05912578 ], [ -84.375, 21.94304553 ], [ -90, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 27.05912578 ], [ -90, 31.95216224 ], [ -84.375, 31.95216224 ], [ -84.375, 27.05912578 ], [ -90, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 31.95216224 ], [ -90, 36.59788913 ], [ -84.375, 36.59788913 ], [ -84.375, 31.95216224 ], [ -90, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 11.17840187 ], [ -95.625, 16.63619188 ], [ -90, 16.63619188 ], [ -90, 11.17840187 ], [ -95.625, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 16.63619188 ], [ -95.625, 21.94304553 ], [ -90, 21.94304553 ], [ -90, 16.63619188 ], [ -95.625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 21.94304553 ], [ -95.625, 27.05912578 ], [ -90, 27.05912578 ], [ -90, 21.94304553 ], [ -95.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 27.05912578 ], [ -95.625, 31.95216224 ], [ -90, 31.95216224 ], [ -90, 27.05912578 ], [ -95.625, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 31.95216224 ], [ -95.625, 36.59788913 ], [ -90, 36.59788913 ], [ -90, 31.95216224 ], [ -95.625, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.74855171, 31.95071395 ], [ -118.125, 31.95071395 ], [ -118.12471745, 31.95074178 ], [ -118.12444576, 31.95082419 ], [ -118.12419537, 31.95095803 ], [ -118.12397591, 31.95113814 ], [ -118.12379579, 31.95135761 ], [ -118.12366196, 31.951608 ], [ -118.12357954, 31.95187969 ], [ -118.12355171, 31.95216224 ], [ -118.12355171, 36.59644084 ], [ -84.37644829, 36.59644084 ], [ -84.37644829, 11.17985016 ], [ -118.12355171, 11.17985016 ], [ -118.12355171, 27.05912578 ], [ -118.12357954, 27.05940833 ], [ -118.12366196, 27.05968002 ], [ -118.12379579, 27.05993041 ], [ -118.12397591, 27.06014988 ], [ -118.12419537, 27.06032999 ], [ -118.12444576, 27.06046383 ], [ -118.12471745, 27.06054624 ], [ -118.125, 27.06057407 ], [ -123.74855171, 27.06057407 ], [ -123.74855171, 31.95071395 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/building.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ -77.15269088745116, 38.87153962460514 ], [ -77.1521383523941, 38.871322446566325 ], [ -77.15196132659912, 38.87159391901113 ], [ -77.15202569961546, 38.87162315444336 ], [ -77.1519023180008, 38.87179021382536 ], [ -77.15266406536102, 38.8727758561868 ], [ -77.1527713537216, 38.87274662122871 ], [ -77.15282499790192, 38.87282179681094 ], [ -77.15323269367218, 38.87267562199469 ], [ -77.15313613414764, 38.87254197618533 ], [ -77.15270698070526, 38.87236656567917 ], [ -77.1523904800415, 38.87198233162923 ], [ -77.15269088745116, 38.87153962460514 ] ] ] } ================================================ FILE: test/fixtures/building_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.15286255, 38.87072103 ], [ -77.15286255, 38.87179021 ], [ -77.15148926, 38.87179021 ], [ -77.15148926, 38.87072103 ], [ -77.15286255, 38.87072103 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.15286255, 38.87179021 ], [ -77.15286255, 38.87285938 ], [ -77.15148926, 38.87285938 ], [ -77.15148926, 38.87179021 ], [ -77.15286255, 38.87179021 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.15423584, 38.87179021 ], [ -77.15423584, 38.87285938 ], [ -77.15286255, 38.87285938 ], [ -77.15286255, 38.87179021 ], [ -77.15423584, 38.87179021 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.15269089, 38.87153962 ], [ -77.15213835, 38.87132245 ], [ -77.15196133, 38.87159392 ], [ -77.1520257, 38.87162315 ], [ -77.15190232, 38.87179021 ], [ -77.15266407, 38.87277586 ], [ -77.15277135, 38.87274662 ], [ -77.152825, 38.8728218 ], [ -77.15323269, 38.87267562 ], [ -77.15313613, 38.87254198 ], [ -77.15270698, 38.87236657 ], [ -77.15239048, 38.87198233 ], [ -77.15269089, 38.87153962 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/degenring.geojson ================================================ { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.061082, 31.363745 ], [ -87.04404, 31.377009 ], [ -87.040931, 31.379676 ], [ -87.036651, 31.383917 ], [ -87.029722, 31.391829 ], [ -87.032293, 31.392847 ], [ -87.034529, 31.392719 ], [ -87.03582, 31.393347 ], [ -87.036416, 31.393416 ], [ -87.03666, 31.393614 ], [ -87.038661, 31.394216 ], [ -87.039197, 31.39484 ], [ -87.040592, 31.395646 ], [ -87.04106, 31.395716 ], [ -87.041492, 31.396479 ], [ -87.041787, 31.396434 ], [ -87.042251, 31.396726 ], [ -87.042951, 31.396532 ], [ -87.043634, 31.396593 ], [ -87.043986, 31.395797 ], [ -87.043891, 31.395481 ], [ -87.044851, 31.395219 ], [ -87.045115, 31.395383 ], [ -87.045614, 31.395266 ], [ -87.046077, 31.395551 ], [ -87.046165, 31.395264 ], [ -87.046332, 31.395242 ], [ -87.046712, 31.395587 ], [ -87.047083, 31.395509 ], [ -87.047969, 31.395902 ], [ -87.049129, 31.395832 ], [ -87.049707, 31.396193 ], [ -87.050104, 31.395944 ], [ -87.050476, 31.396102 ], [ -87.050886, 31.396013 ], [ -87.052146, 31.396811 ], [ -87.052353, 31.397366 ], [ -87.052285, 31.397928 ], [ -87.051391, 31.398541 ], [ -87.051198, 31.399031 ], [ -87.052079, 31.400327 ], [ -87.053346, 31.401213 ], [ -87.054238, 31.402899 ], [ -87.054733, 31.403216 ], [ -87.055169, 31.403248 ], [ -87.055552, 31.402994 ], [ -87.055788, 31.402564 ], [ -87.056271, 31.402482 ], [ -87.05764, 31.402884 ], [ -87.057626, 31.405208 ], [ -87.05781, 31.407063 ], [ -87.057079, 31.407207 ], [ -87.056814, 31.408185 ], [ -87.057382, 31.410012 ], [ -87.057346, 31.41046 ], [ -87.057738, 31.412362 ], [ -87.057759, 31.413781 ], [ -87.057595, 31.414034 ], [ -87.057126, 31.414229 ], [ -87.054669, 31.414633 ], [ -87.054379, 31.415116 ], [ -87.053828, 31.415577 ], [ -87.053114, 31.41689 ], [ -87.053799, 31.416989 ], [ -87.054736, 31.416187 ], [ -87.05499, 31.415642 ], [ -87.055509, 31.415464 ], [ -87.055949, 31.41505 ], [ -87.057237, 31.41498 ], [ -87.057692, 31.414775 ], [ -87.057864, 31.414587 ], [ -87.057818, 31.414351 ], [ -87.058894, 31.414209 ], [ -87.059756, 31.41348 ], [ -87.060434, 31.413137 ], [ -87.060833, 31.41269 ], [ -87.061653, 31.412326 ], [ -87.061693, 31.411705 ], [ -87.061977, 31.411399 ], [ -87.063125, 31.411395 ], [ -87.064559, 31.410728 ], [ -87.065074, 31.410753 ], [ -87.066483, 31.411213 ], [ -87.068129, 31.412148 ], [ -87.070265, 31.411901 ], [ -87.072532, 31.412033 ], [ -87.074344, 31.411587 ], [ -87.076002, 31.411699 ], [ -87.076609, 31.411909 ], [ -87.077447, 31.412841 ], [ -87.078506, 31.413674 ], [ -87.079376, 31.414045 ], [ -87.079843, 31.415099 ], [ -87.079904, 31.41566 ], [ -87.080625, 31.416803 ], [ -87.081086, 31.417285 ], [ -87.081851, 31.417728 ], [ -87.082589, 31.419001 ], [ -87.083427, 31.4194 ], [ -87.085324, 31.420978 ], [ -87.085732, 31.421619 ], [ -87.102116, 31.421889 ], [ -87.101674, 31.423915 ], [ -87.108863, 31.427137 ], [ -87.109155, 31.430902 ], [ -87.108913, 31.432205 ], [ -87.108021, 31.433511 ], [ -87.091931, 31.444431 ], [ -87.091085, 31.444424 ], [ -87.090467, 31.444605 ], [ -87.088594, 31.444496 ], [ -87.087714, 31.444257 ], [ -87.086677, 31.444755 ], [ -87.085755, 31.444362 ], [ -87.083995, 31.443981 ], [ -87.082914, 31.444534 ], [ -87.082036, 31.444763 ], [ -87.0819, 31.445649 ], [ -87.081159, 31.446367 ], [ -87.081002, 31.446885 ], [ -87.080502, 31.446897 ], [ -87.080246, 31.447102 ], [ -87.079944, 31.447042 ], [ -87.079157, 31.447463 ], [ -87.077464, 31.447469 ], [ -87.07701, 31.447877 ], [ -87.07723, 31.448234 ], [ -87.077214, 31.448812 ], [ -87.076831, 31.449165 ], [ -87.076299, 31.449299 ], [ -87.074674, 31.451318 ], [ -87.073168, 31.451653 ], [ -87.072224, 31.451595 ], [ -87.071387, 31.452299 ], [ -87.069857, 31.45283 ], [ -87.096487, 31.457022 ], [ -87.093436, 31.458081 ], [ -87.091872, 31.459226 ], [ -87.089862, 31.46033 ], [ -87.088151, 31.461012 ], [ -87.086716, 31.461911 ], [ -87.084809, 31.462003 ], [ -87.079994, 31.463564 ], [ -87.07657, 31.464218 ], [ -87.074356, 31.465346 ], [ -87.072572, 31.465427 ], [ -87.071604, 31.465715 ], [ -87.070759, 31.466181 ], [ -87.070371, 31.466752 ], [ -87.069546, 31.467393 ], [ -87.067735, 31.469703 ], [ -87.063379, 31.469836 ], [ -87.061271, 31.470106 ], [ -87.061054, 31.470406 ], [ -87.0607, 31.471685 ], [ -87.05862, 31.473508 ], [ -87.058097, 31.474423 ], [ -87.05939, 31.475254 ], [ -87.062603, 31.477929 ], [ -87.06419, 31.478745 ], [ -87.072444, 31.480423 ], [ -87.075817, 31.481428 ], [ -87.085923, 31.485835 ], [ -87.112143, 31.495845 ], [ -87.116658, 31.496826 ], [ -87.117962, 31.496734 ], [ -87.119119, 31.496258 ], [ -87.122696, 31.502124 ], [ -87.124718, 31.502094 ], [ -87.125753, 31.502262 ], [ -87.12614, 31.50253 ], [ -87.126018, 31.503814 ], [ -87.124527, 31.505132 ], [ -87.124105, 31.506528 ], [ -87.123559, 31.506701 ], [ -87.12436, 31.514752 ], [ -87.124558, 31.515813 ], [ -87.125063, 31.517129 ], [ -87.125814, 31.517216 ], [ -87.130505, 31.516259 ], [ -87.131885, 31.515591 ], [ -87.133614, 31.51517 ], [ -87.135986, 31.515331 ], [ -87.136742, 31.514551 ], [ -87.137135, 31.513372 ], [ -87.14078, 31.511446 ], [ -87.141738, 31.511108 ], [ -87.145183, 31.51034 ], [ -87.14628, 31.510483 ], [ -87.148412, 31.510283 ], [ -87.149954, 31.510416 ], [ -87.151993, 31.509845 ], [ -87.151895, 31.513551 ], [ -87.152454, 31.51618 ], [ -87.150858, 31.518153 ], [ -87.150174, 31.520491 ], [ -87.150041, 31.52181 ], [ -87.149493, 31.522782 ], [ -87.149124, 31.527349 ], [ -87.149371, 31.529928 ], [ -87.151121, 31.532333 ], [ -87.152914, 31.53297 ], [ -87.153899, 31.53363 ], [ -87.156149, 31.534501 ], [ -87.15698, 31.534979 ], [ -87.158434, 31.536424 ], [ -87.159947, 31.538575 ], [ -87.161607, 31.539244 ], [ -87.162069, 31.53959 ], [ -87.16322, 31.539599 ], [ -87.163806, 31.539797 ], [ -87.164269, 31.540368 ], [ -87.164444, 31.541073 ], [ -87.165225, 31.542485 ], [ -87.165662, 31.542897 ], [ -87.165351, 31.544138 ], [ -87.164501, 31.544318 ], [ -87.163724, 31.544709 ], [ -87.160629, 31.547472 ], [ -87.159765, 31.548894 ], [ -87.159581, 31.550384 ], [ -87.158204, 31.549104 ], [ -87.156773, 31.548446 ], [ -87.153558, 31.545886 ], [ -87.152672, 31.545444 ], [ -87.146778, 31.543812 ], [ -87.145517, 31.54362 ], [ -87.14319, 31.543522 ], [ -87.142574, 31.543891 ], [ -87.141972, 31.543981 ], [ -87.141589, 31.544513 ], [ -87.140982, 31.543833 ], [ -87.140176, 31.542439 ], [ -87.138474, 31.541352 ], [ -87.137805, 31.540682 ], [ -87.13607, 31.538235 ], [ -87.133545, 31.535448 ], [ -87.132629, 31.534119 ], [ -87.130598, 31.533522 ], [ -87.129581, 31.533606 ], [ -87.12463, 31.534813 ], [ -87.121846, 31.5344 ], [ -87.12082, 31.534439 ], [ -87.112588, 31.536199 ], [ -87.108337, 31.538226 ], [ -87.107139, 31.538628 ], [ -87.105372, 31.538906 ], [ -87.102467, 31.540337 ], [ -87.101512, 31.540629 ], [ -87.09896, 31.540448 ], [ -87.09689, 31.539172 ], [ -87.096175, 31.538934 ], [ -87.088064, 31.538981 ], [ -87.087067, 31.538776 ], [ -87.084123, 31.537626 ], [ -87.082563, 31.537813 ], [ -87.083466, 31.539986 ], [ -87.084363, 31.541313 ], [ -87.084505, 31.541957 ], [ -87.084716, 31.545752 ], [ -87.083678, 31.547551 ], [ -87.085941, 31.548296 ], [ -87.087626, 31.548503 ], [ -87.091193, 31.549665 ], [ -87.096026, 31.549414 ], [ -87.098008, 31.550674 ], [ -87.100512, 31.550903 ], [ -87.101754, 31.551593 ], [ -87.102643, 31.552421 ], [ -87.104959, 31.553569 ], [ -87.105326, 31.55392 ], [ -87.105773, 31.554871 ], [ -87.106726, 31.555666 ], [ -87.107511, 31.556093 ], [ -87.108104, 31.556696 ], [ -87.109262, 31.557166 ], [ -87.110312, 31.558104 ], [ -87.111148, 31.558498 ], [ -87.112399, 31.558367 ], [ -87.114423, 31.558774 ], [ -87.115636, 31.55877 ], [ -87.117275, 31.559078 ], [ -87.118284, 31.559466 ], [ -87.119499, 31.559157 ], [ -87.121633, 31.558905 ], [ -87.123123, 31.559066 ], [ -87.124215, 31.559382 ], [ -87.126905, 31.560768 ], [ -87.129755, 31.562776 ], [ -87.130541, 31.561749 ], [ -87.131279, 31.561124 ], [ -87.13632, 31.559437 ], [ -87.138421, 31.559183 ], [ -87.147042, 31.559183 ], [ -87.148537, 31.558883 ], [ -87.155547, 31.554691 ], [ -87.157462, 31.554048 ], [ -87.160096, 31.553688 ], [ -87.160887, 31.557306 ], [ -87.160782, 31.55943 ], [ -87.158925, 31.56614 ], [ -87.153825, 31.577805 ], [ -87.152341, 31.579871 ], [ -87.145126, 31.587168 ], [ -87.144205, 31.588658 ], [ -87.141064, 31.600965 ], [ -87.140545, 31.608316 ], [ -87.140044, 31.609348 ], [ -87.138009, 31.611685 ], [ -87.137371, 31.612872 ], [ -87.137278, 31.613547 ], [ -87.1374, 31.614446 ], [ -87.139476, 31.622646 ], [ -87.139574, 31.624784 ], [ -87.138303, 31.629655 ], [ -87.137558, 31.633861 ], [ -87.136879, 31.636405 ], [ -87.136198, 31.641232 ], [ -87.135652, 31.641978 ], [ -87.135051, 31.642417 ], [ -87.132666, 31.643145 ], [ -87.133142, 31.657931 ], [ -87.161902, 31.654982 ], [ -87.162415, 31.655497 ], [ -87.163353, 31.656052 ], [ -87.166918, 31.656889 ], [ -87.167767, 31.657548 ], [ -87.168743, 31.660035 ], [ -87.16837, 31.661817 ], [ -87.167934, 31.66222 ], [ -87.168099, 31.663229 ], [ -87.167353, 31.664044 ], [ -87.166025, 31.664589 ], [ -87.165233, 31.666155 ], [ -87.163007, 31.667029 ], [ -87.162801, 31.667244 ], [ -87.162695, 31.667929 ], [ -87.162477, 31.668102 ], [ -87.161485, 31.668063 ], [ -87.160985, 31.668347 ], [ -87.160811, 31.668832 ], [ -87.160921, 31.67062 ], [ -87.160512, 31.672374 ], [ -87.159031, 31.674071 ], [ -87.158084, 31.67411 ], [ -87.158115, 31.674785 ], [ -87.158593, 31.675687 ], [ -87.156072, 31.676339 ], [ -87.155294, 31.676728 ], [ -87.152719, 31.679045 ], [ -87.150486, 31.681597 ], [ -87.149579, 31.684755 ], [ -87.148797, 31.685974 ], [ -87.148734, 31.688817 ], [ -87.148511, 31.690299 ], [ -87.149236, 31.691807 ], [ -87.149737, 31.692221 ], [ -87.150211, 31.692374 ], [ -87.150882, 31.693249 ], [ -87.152369, 31.693497 ], [ -87.151267, 31.69493 ], [ -87.151177, 31.697218 ], [ -87.152476, 31.697313 ], [ -87.153234, 31.699463 ], [ -87.150791, 31.698025 ], [ -87.150228, 31.698048 ], [ -87.149531, 31.698368 ], [ -87.148888, 31.698345 ], [ -87.148432, 31.697978 ], [ -87.147709, 31.697726 ], [ -87.146422, 31.697795 ], [ -87.145377, 31.697405 ], [ -87.144948, 31.697496 ], [ -87.14476, 31.697702 ], [ -87.144921, 31.698688 ], [ -87.144251, 31.698963 ], [ -87.144331, 31.699627 ], [ -87.144116, 31.700383 ], [ -87.143472, 31.701048 ], [ -87.142104, 31.703477 ], [ -87.141836, 31.703591 ], [ -87.140925, 31.703362 ], [ -87.140469, 31.703476 ], [ -87.138619, 31.704277 ], [ -87.13819, 31.704942 ], [ -87.137171, 31.704873 ], [ -87.136876, 31.70517 ], [ -87.136635, 31.70517 ], [ -87.136287, 31.704781 ], [ -87.135697, 31.704643 ], [ -87.134223, 31.704688 ], [ -87.132212, 31.705008 ], [ -87.130818, 31.704824 ], [ -87.130388, 31.705603 ], [ -87.129182, 31.705786 ], [ -87.127091, 31.705716 ], [ -87.126555, 31.705899 ], [ -87.126125, 31.706701 ], [ -87.125857, 31.707984 ], [ -87.125321, 31.709084 ], [ -87.123682, 31.710528 ], [ -87.120359, 31.712203 ], [ -87.12036, 31.712638 ], [ -87.121218, 31.713807 ], [ -87.121166, 31.714105 ], [ -87.118806, 31.715251 ], [ -87.117708, 31.716237 ], [ -87.116797, 31.716467 ], [ -87.116314, 31.716834 ], [ -87.115322, 31.717041 ], [ -87.113956, 31.717912 ], [ -87.113447, 31.718829 ], [ -87.113206, 31.719654 ], [ -87.113554, 31.72002 ], [ -87.1135, 31.720433 ], [ -87.113099, 31.721075 ], [ -87.112804, 31.721121 ], [ -87.112455, 31.720617 ], [ -87.11181, 31.720571 ], [ -87.111435, 31.721144 ], [ -87.111462, 31.721442 ], [ -87.111757, 31.721763 ], [ -87.111543, 31.722084 ], [ -87.110416, 31.722107 ], [ -87.10988, 31.722314 ], [ -87.109532, 31.722657 ], [ -87.109317, 31.723184 ], [ -87.107252, 31.723094 ], [ -87.105375, 31.723667 ], [ -87.103578, 31.724424 ], [ -87.102961, 31.724906 ], [ -87.103042, 31.725479 ], [ -87.102291, 31.725845 ], [ -87.101538, 31.726905 ], [ -87.097966, 31.727435 ], [ -87.091166, 31.727668 ], [ -87.089938, 31.727517 ], [ -87.089093, 31.72682 ], [ -87.088207, 31.724562 ], [ -87.087666, 31.723883 ], [ -87.086306, 31.722977 ], [ -87.084829, 31.722342 ], [ -87.083401, 31.722163 ], [ -87.078484, 31.722258 ], [ -87.074292, 31.721871 ], [ -87.077018, 31.719337 ], [ -87.078061, 31.718014 ], [ -87.07851, 31.715385 ], [ -87.078506, 31.713879 ], [ -87.07772, 31.710133 ], [ -87.077046, 31.708511 ], [ -87.075862, 31.706935 ], [ -87.075618, 31.705607 ], [ -87.07519, 31.705239 ], [ -87.073582, 31.704916 ], [ -87.073019, 31.70464 ], [ -87.0716, 31.703444 ], [ -87.070153, 31.702755 ], [ -87.069831, 31.70248 ], [ -87.06943, 31.701653 ], [ -87.068091, 31.70094 ], [ -87.067663, 31.700091 ], [ -87.067584, 31.699149 ], [ -87.067236, 31.698299 ], [ -87.066486, 31.697541 ], [ -87.06603, 31.697449 ], [ -87.061396, 31.697488 ], [ -87.06109, 31.704063 ], [ -87.060954, 31.704848 ], [ -87.060497, 31.705909 ], [ -87.059539, 31.70712 ], [ -87.05629, 31.710053 ], [ -87.051453, 31.717944 ], [ -87.050785, 31.718595 ], [ -87.049855, 31.718803 ], [ -87.048903, 31.719321 ], [ -87.04564, 31.717007 ], [ -87.044354, 31.716442 ], [ -87.040494, 31.715991 ], [ -87.02799, 31.713087 ], [ -87.025316, 31.712859 ], [ -87.024453, 31.712553 ], [ -87.024141, 31.712559 ], [ -87.021726, 31.713762 ], [ -87.019431, 31.714214 ], [ -87.016872, 31.713746 ], [ -87.015664, 31.713899 ], [ -87.012351, 31.713444 ], [ -87.008496, 31.714384 ], [ -87.00447, 31.714859 ], [ -87.003958, 31.715017 ], [ -87.003073, 31.715713 ], [ -87.001619, 31.716428 ], [ -87.002251, 31.715113 ], [ -87.002453, 31.711764 ], [ -87.003309, 31.709269 ], [ -87.002779, 31.704444 ], [ -87.003081, 31.703525 ], [ -87.004436, 31.701387 ], [ -87.004543, 31.700728 ], [ -87.00435, 31.699867 ], [ -87.003429, 31.698814 ], [ -87.001712, 31.697999 ], [ -87.000455, 31.69778 ], [ -86.995523, 31.697826 ], [ -86.993897, 31.697642 ], [ -86.990544, 31.696721 ], [ -86.989663, 31.696264 ], [ -86.988696, 31.695488 ], [ -86.988688, 31.694771 ], [ -86.989155, 31.693344 ], [ -86.989227, 31.691088 ], [ -86.989795, 31.690016 ], [ -86.989693, 31.6893 ], [ -86.988434, 31.687242 ], [ -86.988649, 31.685357 ], [ -86.988529, 31.684409 ], [ -86.989546, 31.68272 ], [ -86.989546, 31.681813 ], [ -86.988888, 31.680938 ], [ -86.988804, 31.679053 ], [ -86.988266, 31.677724 ], [ -86.98768, 31.676786 ], [ -86.987608, 31.676251 ], [ -86.987943, 31.674953 ], [ -86.987824, 31.67417 ], [ -86.987393, 31.673479 ], [ -86.987441, 31.672192 ], [ -86.988015, 31.668947 ], [ -86.987967, 31.667978 ], [ -86.987465, 31.667381 ], [ -86.98701, 31.667216 ], [ -86.983386, 31.666567 ], [ -86.98274, 31.665805 ], [ -86.982668, 31.665156 ], [ -86.98299, 31.664423 ], [ -86.982908, 31.663464 ], [ -86.982531, 31.663304 ], [ -86.981218, 31.663444 ], [ -86.980521, 31.662623 ], [ -86.979205, 31.661892 ], [ -86.978588, 31.661115 ], [ -86.977622, 31.660453 ], [ -86.977408, 31.659904 ], [ -86.976603, 31.659632 ], [ -86.976281, 31.659289 ], [ -86.976199, 31.658284 ], [ -86.975796, 31.65755 ], [ -86.973999, 31.65721 ], [ -86.972524, 31.657169 ], [ -86.970647, 31.656874 ], [ -86.969976, 31.656533 ], [ -86.969735, 31.65619 ], [ -86.969007, 31.652944 ], [ -86.968122, 31.652533 ], [ -86.969088, 31.65163 ], [ -86.970278, 31.64985 ], [ -86.971718, 31.648778 ], [ -86.971289, 31.648274 ], [ -86.971074, 31.646945 ], [ -86.970804, 31.64628 ], [ -86.96799, 31.6436 ], [ -86.965898, 31.63959 ], [ -86.964505, 31.638032 ], [ -86.964746, 31.637162 ], [ -86.964183, 31.63652 ], [ -86.964183, 31.635833 ], [ -86.964879, 31.635237 ], [ -86.965334, 31.63432 ], [ -86.96761, 31.633242 ], [ -86.966887, 31.631042 ], [ -86.967636, 31.630217 ], [ -86.967797, 31.629209 ], [ -86.968599, 31.627238 ], [ -86.968251, 31.626481 ], [ -86.966724, 31.626046 ], [ -86.965318, 31.625159 ], [ -86.964849, 31.624458 ], [ -86.964715, 31.623908 ], [ -86.964527, 31.622418 ], [ -86.964741, 31.621478 ], [ -86.965062, 31.620653 ], [ -86.965544, 31.619966 ], [ -86.96632, 31.619255 ], [ -86.966454, 31.618774 ], [ -86.9664, 31.615657 ], [ -86.966078, 31.615015 ], [ -86.965649, 31.614649 ], [ -86.9653, 31.614488 ], [ -86.964309, 31.614512 ], [ -86.963747, 31.614283 ], [ -86.963158, 31.613733 ], [ -86.962863, 31.61316 ], [ -86.962863, 31.61151 ], [ -86.961068, 31.608256 ], [ -86.959836, 31.607019 ], [ -86.959434, 31.606011 ], [ -86.959193, 31.605759 ], [ -86.958309, 31.605324 ], [ -86.956461, 31.603651 ], [ -86.956193, 31.602597 ], [ -86.955738, 31.601772 ], [ -86.955121, 31.599297 ], [ -86.95405, 31.598907 ], [ -86.953702, 31.598426 ], [ -86.953434, 31.598357 ], [ -86.952471, 31.598358 ], [ -86.952096, 31.598106 ], [ -86.951052, 31.598404 ], [ -86.950944, 31.59767 ], [ -86.949847, 31.597074 ], [ -86.949552, 31.597029 ], [ -86.949258, 31.597304 ], [ -86.948749, 31.59735 ], [ -86.948481, 31.59712 ], [ -86.948481, 31.596731 ], [ -86.948106, 31.596364 ], [ -86.946634, 31.59586 ], [ -86.946419, 31.595631 ], [ -86.946418, 31.594714 ], [ -86.945829, 31.5946 ], [ -86.945535, 31.594714 ], [ -86.945722, 31.595402 ], [ -86.94516, 31.595562 ], [ -86.942268, 31.594439 ], [ -86.94184, 31.593798 ], [ -86.941599, 31.592537 ], [ -86.941117, 31.592881 ], [ -86.940608, 31.592973 ], [ -86.940126, 31.592675 ], [ -86.940448, 31.591827 ], [ -86.940448, 31.5913 ], [ -86.938707, 31.589146 ], [ -86.938306, 31.588825 ], [ -86.936994, 31.588733 ], [ -86.936833, 31.588596 ], [ -86.936833, 31.588343 ], [ -86.937342, 31.587587 ], [ -86.937235, 31.587358 ], [ -86.936352, 31.586877 ], [ -86.935602, 31.586212 ], [ -86.93512, 31.585731 ], [ -86.934799, 31.584974 ], [ -86.933942, 31.583943 ], [ -86.933246, 31.583554 ], [ -86.932818, 31.581743 ], [ -86.932363, 31.581583 ], [ -86.930462, 31.581789 ], [ -86.929552, 31.581514 ], [ -86.929124, 31.581628 ], [ -86.928856, 31.582728 ], [ -86.927464, 31.583003 ], [ -86.927089, 31.583324 ], [ -86.927892, 31.583897 ], [ -86.927973, 31.584195 ], [ -86.926527, 31.584264 ], [ -86.925965, 31.584722 ], [ -86.924492, 31.584905 ], [ -86.924332, 31.585134 ], [ -86.924465, 31.585913 ], [ -86.924037, 31.586257 ], [ -86.924144, 31.586395 ], [ -86.924867, 31.586693 ], [ -86.925938, 31.586784 ], [ -86.926286, 31.586991 ], [ -86.925964, 31.588091 ], [ -86.925964, 31.588983 ], [ -86.923528, 31.588709 ], [ -86.918866, 31.587288 ], [ -86.915785, 31.58669 ], [ -86.915518, 31.586736 ], [ -86.915302, 31.587011 ], [ -86.915275, 31.587974 ], [ -86.914792, 31.588455 ], [ -86.914749, 31.587057 ], [ -86.914983, 31.585476 ], [ -86.913848, 31.584857 ], [ -86.912904, 31.58465 ], [ -86.910664, 31.585108 ], [ -86.909827, 31.584994 ], [ -86.90891, 31.5852 ], [ -86.906804, 31.584375 ], [ -86.906502, 31.58355 ], [ -86.902781, 31.583984 ], [ -86.901523, 31.583915 ], [ -86.89898, 31.583319 ], [ -86.896142, 31.583318 ], [ -86.895285, 31.584188 ], [ -86.894883, 31.585792 ], [ -86.894882, 31.586824 ], [ -86.893731, 31.586273 ], [ -86.890065, 31.583797 ], [ -86.888647, 31.582192 ], [ -86.886855, 31.579648 ], [ -86.884794, 31.57944 ], [ -86.882866, 31.579715 ], [ -86.880617, 31.579095 ], [ -86.877726, 31.578796 ], [ -86.875933, 31.577947 ], [ -86.874545, 31.577844 ], [ -86.874308, 31.576755 ], [ -86.874441, 31.575472 ], [ -86.8742, 31.574738 ], [ -86.87533, 31.57389 ], [ -86.875331, 31.5735 ], [ -86.874038, 31.57302 ], [ -86.874118, 31.57247 ], [ -86.874563, 31.572103 ], [ -86.874537, 31.571851 ], [ -86.873903, 31.570981 ], [ -86.87467, 31.570522 ], [ -86.874683, 31.570087 ], [ -86.873715, 31.569537 ], [ -86.873607, 31.568942 ], [ -86.873955, 31.568391 ], [ -86.874549, 31.567956 ], [ -86.874642, 31.566947 ], [ -86.874462, 31.566764 ], [ -86.873204, 31.566604 ], [ -86.87283, 31.566375 ], [ -86.872294, 31.566307 ], [ -86.871598, 31.566605 ], [ -86.871278, 31.567361 ], [ -86.870448, 31.567797 ], [ -86.870047, 31.567591 ], [ -86.870287, 31.566766 ], [ -86.869591, 31.566193 ], [ -86.869591, 31.565827 ], [ -86.869697, 31.564979 ], [ -86.870205, 31.564428 ], [ -86.870098, 31.564199 ], [ -86.869322, 31.563741 ], [ -86.868732, 31.563123 ], [ -86.868705, 31.562618 ], [ -86.868973, 31.56216 ], [ -86.86841, 31.561679 ], [ -86.867982, 31.560465 ], [ -86.868276, 31.559754 ], [ -86.868757, 31.559479 ], [ -86.868784, 31.559318 ], [ -86.868275, 31.559089 ], [ -86.867523, 31.558289 ], [ -86.867123, 31.555324 ], [ -86.866668, 31.555056 ], [ -86.866589, 31.554256 ], [ -86.865655, 31.553776 ], [ -86.865588, 31.553602 ], [ -86.866129, 31.553044 ], [ -86.866575, 31.553021 ], [ -86.86712, 31.55364 ], [ -86.86747, 31.553679 ], [ -86.868244, 31.552743 ], [ -86.867044, 31.552551 ], [ -86.866826, 31.551203 ], [ -86.866579, 31.550817 ], [ -86.865913, 31.55033 ], [ -86.86589, 31.550122 ], [ -86.866591, 31.549625 ], [ -86.865268, 31.549425 ], [ -86.865059, 31.549056 ], [ -86.865016, 31.548061 ], [ -86.866302, 31.546981 ], [ -86.866453, 31.546597 ], [ -86.866254, 31.54642 ], [ -86.865406, 31.546393 ], [ -86.864863, 31.546121 ], [ -86.864379, 31.545715 ], [ -86.86414, 31.544934 ], [ -86.863151, 31.543855 ], [ -86.862644, 31.543786 ], [ -86.861254, 31.544219 ], [ -86.86104, 31.54415 ], [ -86.861013, 31.543623 ], [ -86.859836, 31.543371 ], [ -86.85922, 31.543073 ], [ -86.858658, 31.542478 ], [ -86.858497, 31.542088 ], [ -86.859032, 31.540829 ], [ -86.858362, 31.540073 ], [ -86.858335, 31.539431 ], [ -86.857961, 31.539385 ], [ -86.857158, 31.539867 ], [ -86.856463, 31.539729 ], [ -86.855418, 31.538378 ], [ -86.854214, 31.538011 ], [ -86.852528, 31.53721 ], [ -86.852421, 31.537049 ], [ -86.852528, 31.53627 ], [ -86.850628, 31.535698 ], [ -86.849825, 31.534988 ], [ -86.84953, 31.534919 ], [ -86.848888, 31.534919 ], [ -86.848193, 31.535492 ], [ -86.846828, 31.53602 ], [ -86.84533, 31.535745 ], [ -86.843777, 31.535814 ], [ -86.84351, 31.535654 ], [ -86.843456, 31.535173 ], [ -86.842706, 31.5335 ], [ -86.842144, 31.533019 ], [ -86.842331, 31.532308 ], [ -86.841769, 31.531116 ], [ -86.840672, 31.530475 ], [ -86.840404, 31.5302 ], [ -86.840297, 31.52965 ], [ -86.840003, 31.529444 ], [ -86.839467, 31.527679 ], [ -86.839253, 31.52635 ], [ -86.839386, 31.525204 ], [ -86.838022, 31.525204 ], [ -86.83845, 31.5247 ], [ -86.838476, 31.524242 ], [ -86.838102, 31.524013 ], [ -86.838048, 31.523623 ], [ -86.838449, 31.522981 ], [ -86.837272, 31.521698 ], [ -86.837245, 31.521332 ], [ -86.837378, 31.521171 ], [ -86.838609, 31.520827 ], [ -86.838716, 31.520575 ], [ -86.838475, 31.520208 ], [ -86.837699, 31.519681 ], [ -86.835933, 31.519223 ], [ -86.835024, 31.518696 ], [ -86.834489, 31.518101 ], [ -86.834248, 31.518032 ], [ -86.833445, 31.518536 ], [ -86.833338, 31.518192 ], [ -86.833713, 31.517322 ], [ -86.833445, 31.517253 ], [ -86.832803, 31.517826 ], [ -86.832455, 31.517826 ], [ -86.832536, 31.517459 ], [ -86.83299, 31.516932 ], [ -86.832963, 31.516542 ], [ -86.832669, 31.516267 ], [ -86.832348, 31.516313 ], [ -86.831867, 31.517047 ], [ -86.831118, 31.517322 ], [ -86.829673, 31.516772 ], [ -86.829646, 31.515787 ], [ -86.829512, 31.51558 ], [ -86.828656, 31.51542 ], [ -86.828041, 31.51636 ], [ -86.827051, 31.516887 ], [ -86.826944, 31.51636 ], [ -86.827372, 31.515649 ], [ -86.827265, 31.515374 ], [ -86.826195, 31.515077 ], [ -86.825928, 31.516039 ], [ -86.824482, 31.51565 ], [ -86.823733, 31.514664 ], [ -86.823706, 31.513977 ], [ -86.823974, 31.513427 ], [ -86.824027, 31.512877 ], [ -86.823358, 31.512418 ], [ -86.822476, 31.512258 ], [ -86.821914, 31.511937 ], [ -86.821807, 31.511296 ], [ -86.822181, 31.510883 ], [ -86.822181, 31.510516 ], [ -86.8217, 31.51015 ], [ -86.820442, 31.510241 ], [ -86.819827, 31.509943 ], [ -86.819586, 31.509646 ], [ -86.819827, 31.508568 ], [ -86.819131, 31.507424 ], [ -86.819131, 31.507057 ], [ -86.819399, 31.506759 ], [ -86.819426, 31.506415 ], [ -86.819078, 31.505957 ], [ -86.814156, 31.504307 ], [ -86.813541, 31.503917 ], [ -86.813514, 31.503734 ], [ -86.812846, 31.503436 ], [ -86.812418, 31.503574 ], [ -86.812177, 31.503917 ], [ -86.810331, 31.507217 ], [ -86.809502, 31.510287 ], [ -86.809127, 31.510952 ], [ -86.808325, 31.511342 ], [ -86.807924, 31.511365 ], [ -86.806506, 31.510998 ], [ -86.805677, 31.510539 ], [ -86.804821, 31.509531 ], [ -86.804687, 31.508706 ], [ -86.805008, 31.507606 ], [ -86.804982, 31.506988 ], [ -86.803671, 31.505292 ], [ -86.803671, 31.504559 ], [ -86.804046, 31.503367 ], [ -86.805116, 31.501534 ], [ -86.806319, 31.49887 ], [ -86.80656, 31.497586 ], [ -86.806453, 31.495363 ], [ -86.805971, 31.494607 ], [ -86.80557, 31.494332 ], [ -86.804848, 31.4944 ], [ -86.804286, 31.494653 ], [ -86.803617, 31.495317 ], [ -86.802815, 31.496463 ], [ -86.802093, 31.496669 ], [ -86.800755, 31.496646 ], [ -86.799472, 31.496348 ], [ -86.798268, 31.495706 ], [ -86.797653, 31.494766 ], [ -86.797226, 31.493162 ], [ -86.79661, 31.492589 ], [ -86.79645, 31.491764 ], [ -86.79728, 31.488968 ], [ -86.797521, 31.487066 ], [ -86.797815, 31.486333 ], [ -86.797815, 31.485485 ], [ -86.797441, 31.484408 ], [ -86.797414, 31.483468 ], [ -86.797762, 31.482597 ], [ -86.797789, 31.481772 ], [ -86.7968, 31.478655 ], [ -86.796372, 31.477899 ], [ -86.79426, 31.476202 ], [ -86.793672, 31.474989 ], [ -86.793352, 31.472834 ], [ -86.793673, 31.47123 ], [ -86.793192, 31.470222 ], [ -86.791373, 31.467815 ], [ -86.79132, 31.467036 ], [ -86.791775, 31.465752 ], [ -86.791747, 31.465119 ], [ -86.790865, 31.464329 ], [ -86.788698, 31.463596 ], [ -86.787788, 31.463605 ], [ -86.786717, 31.464006 ], [ -86.783721, 31.464724 ], [ -86.781606, 31.465664 ], [ -86.781232, 31.465553 ], [ -86.780724, 31.465171 ], [ -86.77885, 31.462684 ], [ -86.775881, 31.460045 ], [ -86.775372, 31.459367 ], [ -86.775372, 31.458733 ], [ -86.77556, 31.458485 ], [ -86.775879, 31.458259 ], [ -86.776414, 31.458173 ], [ -86.777937, 31.458948 ], [ -86.779486, 31.459262 ], [ -86.780261, 31.45927 ], [ -86.782211, 31.458832 ], [ -86.784909, 31.457535 ], [ -86.786325, 31.456432 ], [ -86.786752, 31.455572 ], [ -86.786886, 31.454893 ], [ -86.786888, 31.453592 ], [ -86.786656, 31.452528 ], [ -86.78555, 31.45035 ], [ -86.784481, 31.449135 ], [ -86.784294, 31.448379 ], [ -86.784401, 31.44799 ], [ -86.784989, 31.447394 ], [ -86.785711, 31.447119 ], [ -86.786674, 31.446432 ], [ -86.787315, 31.445125 ], [ -86.788065, 31.443018 ], [ -86.788252, 31.440497 ], [ -86.787985, 31.439557 ], [ -86.78721, 31.439076 ], [ -86.786729, 31.439099 ], [ -86.78558, 31.43958 ], [ -86.784135, 31.439809 ], [ -86.78336, 31.440175 ], [ -86.783199, 31.440656 ], [ -86.782905, 31.440908 ], [ -86.782745, 31.44265 ], [ -86.781355, 31.444368 ], [ -86.779083, 31.445032 ], [ -86.777638, 31.444733 ], [ -86.776649, 31.444344 ], [ -86.776088, 31.443748 ], [ -86.775981, 31.44322 ], [ -86.776223, 31.441136 ], [ -86.775583, 31.437331 ], [ -86.775583, 31.43575 ], [ -86.774862, 31.434971 ], [ -86.773152, 31.433962 ], [ -86.771362, 31.432563 ], [ -86.769331, 31.431967 ], [ -86.768636, 31.432035 ], [ -86.768208, 31.432264 ], [ -86.768181, 31.432562 ], [ -86.768422, 31.433089 ], [ -86.768956, 31.433525 ], [ -86.769998, 31.433984 ], [ -86.771361, 31.43419 ], [ -86.772617, 31.43497 ], [ -86.772643, 31.436047 ], [ -86.77144, 31.436734 ], [ -86.770718, 31.436871 ], [ -86.769382, 31.436665 ], [ -86.767458, 31.435587 ], [ -86.766416, 31.43467 ], [ -86.765722, 31.433317 ], [ -86.765268, 31.43279 ], [ -86.764066, 31.432125 ], [ -86.762783, 31.431987 ], [ -86.76019, 31.432101 ], [ -86.757705, 31.431435 ], [ -86.755861, 31.431274 ], [ -86.755567, 31.43109 ], [ -86.755407, 31.430746 ], [ -86.754739, 31.428821 ], [ -86.754258, 31.428592 ], [ -86.753804, 31.428568 ], [ -86.753189, 31.428843 ], [ -86.752734, 31.429714 ], [ -86.752012, 31.430286 ], [ -86.751531, 31.430378 ], [ -86.751103, 31.430217 ], [ -86.750596, 31.429667 ], [ -86.750265, 31.428727 ], [ -86.749683, 31.42859 ], [ -86.748107, 31.427032 ], [ -86.747572, 31.425703 ], [ -86.746395, 31.424856 ], [ -86.744283, 31.423871 ], [ -86.740192, 31.420229 ], [ -86.739791, 31.419679 ], [ -86.739469, 31.417525 ], [ -86.739015, 31.416402 ], [ -86.737705, 31.415761 ], [ -86.734418, 31.415006 ], [ -86.733643, 31.414686 ], [ -86.732866, 31.414182 ], [ -86.730476, 31.411974 ], [ -86.730393, 31.411607 ], [ -86.730577, 31.411031 ], [ -86.731029, 31.410938 ], [ -86.732145, 31.411163 ], [ -86.732384, 31.41107 ], [ -86.732701, 31.410541 ], [ -86.732722, 31.409781 ], [ -86.7299, 31.408304 ], [ -86.729788, 31.407609 ], [ -86.730111, 31.407079 ], [ -86.730164, 31.406575 ], [ -86.72979, 31.405635 ], [ -86.729628, 31.403023 ], [ -86.729521, 31.402633 ], [ -86.72912, 31.402175 ], [ -86.728425, 31.401969 ], [ -86.727704, 31.401969 ], [ -86.724097, 31.402497 ], [ -86.722547, 31.401993 ], [ -86.72212, 31.401512 ], [ -86.721665, 31.400573 ], [ -86.721798, 31.400206 ], [ -86.72276, 31.399358 ], [ -86.725431, 31.397913 ], [ -86.725992, 31.397111 ], [ -86.726205, 31.396034 ], [ -86.726097, 31.393788 ], [ -86.725803, 31.392711 ], [ -86.72476, 31.390029 ], [ -86.723236, 31.387005 ], [ -86.723208, 31.386409 ], [ -86.723742, 31.385973 ], [ -86.724116, 31.38595 ], [ -86.724972, 31.386248 ], [ -86.726228, 31.387462 ], [ -86.726763, 31.387622 ], [ -86.72711, 31.387485 ], [ -86.727804, 31.386041 ], [ -86.728097, 31.384895 ], [ -86.728097, 31.383818 ], [ -86.727748, 31.382718 ], [ -86.726572, 31.380976 ], [ -86.726412, 31.380449 ], [ -86.726518, 31.38006 ], [ -86.726865, 31.379717 ], [ -86.729029, 31.379624 ], [ -86.729964, 31.379211 ], [ -86.730444, 31.37857 ], [ -86.730337, 31.377905 ], [ -86.726303, 31.375167 ], [ -86.726114, 31.374304 ], [ -86.726434, 31.372998 ], [ -86.727449, 31.371164 ], [ -86.727448, 31.370385 ], [ -86.727074, 31.369858 ], [ -86.725605, 31.368529 ], [ -86.724615, 31.36594 ], [ -86.724054, 31.363167 ], [ -86.72392, 31.362869 ], [ -86.723012, 31.362021 ], [ -86.723758, 31.359523 ], [ -86.724479, 31.358125 ], [ -86.725012, 31.35448 ], [ -86.726026, 31.352647 ], [ -86.726052, 31.352326 ], [ -86.725598, 31.351799 ], [ -86.725278, 31.351684 ], [ -86.723435, 31.351731 ], [ -86.7221, 31.352396 ], [ -86.7217, 31.352923 ], [ -86.72162, 31.35384 ], [ -86.721086, 31.353977 ], [ -86.72007, 31.353313 ], [ -86.719349, 31.352534 ], [ -86.717906, 31.351801 ], [ -86.717025, 31.351893 ], [ -86.71553, 31.352718 ], [ -86.714782, 31.352604 ], [ -86.714275, 31.352031 ], [ -86.714167, 31.350771 ], [ -86.713794, 31.350313 ], [ -86.710936, 31.349672 ], [ -86.709708, 31.349901 ], [ -86.708427, 31.353728 ], [ -86.707652, 31.35382 ], [ -86.706317, 31.353041 ], [ -86.70597, 31.352583 ], [ -86.705676, 31.35201 ], [ -86.705675, 31.348687 ], [ -86.705862, 31.34816 ], [ -86.70677, 31.347037 ], [ -86.706716, 31.346578 ], [ -86.706102, 31.346166 ], [ -86.702791, 31.345387 ], [ -86.701402, 31.344333 ], [ -86.700147, 31.343073 ], [ -86.699693, 31.342546 ], [ -86.699586, 31.341996 ], [ -86.699506, 31.340804 ], [ -86.699746, 31.340093 ], [ -86.700867, 31.338076 ], [ -86.701642, 31.337503 ], [ -86.701139, 31.324358 ], [ -86.70113, 31.315663 ], [ -86.704306, 31.313394 ], [ -86.70524, 31.311812 ], [ -86.705988, 31.311262 ], [ -86.707509, 31.310597 ], [ -86.708363, 31.309589 ], [ -86.708763, 31.309474 ], [ -86.710659, 31.309543 ], [ -86.710739, 31.309864 ], [ -86.712447, 31.311582 ], [ -86.713462, 31.312109 ], [ -86.715891, 31.312773 ], [ -86.716505, 31.313323 ], [ -86.716452, 31.314011 ], [ -86.715785, 31.314882 ], [ -86.715892, 31.315134 ], [ -86.716826, 31.315661 ], [ -86.717253, 31.316142 ], [ -86.717334, 31.317563 ], [ -86.717494, 31.318021 ], [ -86.718215, 31.318731 ], [ -86.719176, 31.31864 ], [ -86.719683, 31.318387 ], [ -86.721927, 31.318593 ], [ -86.722942, 31.319646 ], [ -86.723632, 31.319873 ], [ -86.724667, 31.320693 ], [ -86.725384, 31.320805 ], [ -86.726101, 31.321329 ], [ -86.726392, 31.321762 ], [ -86.727295, 31.322057 ], [ -86.727905, 31.322673 ], [ -86.731305, 31.323303 ], [ -86.731889, 31.323164 ], [ -86.732367, 31.32268 ], [ -86.732924, 31.322586 ], [ -86.734253, 31.322788 ], [ -86.73474, 31.323031 ], [ -86.735502, 31.321827 ], [ -86.737666, 31.322129 ], [ -86.740766, 31.321671 ], [ -86.742346, 31.322446 ], [ -86.743551, 31.322495 ], [ -86.744008, 31.322367 ], [ -86.743534, 31.320316 ], [ -86.745215, 31.319828 ], [ -86.747161, 31.318628 ], [ -86.749601, 31.317946 ], [ -86.752166, 31.316634 ], [ -86.753563, 31.315654 ], [ -86.756581, 31.313168 ], [ -86.758881, 31.309562 ], [ -86.760044, 31.308384 ], [ -86.7599, 31.306236 ], [ -86.757967, 31.301655 ], [ -86.757431, 31.299153 ], [ -86.757386, 31.297701 ], [ -86.757782, 31.29471 ], [ -86.759516, 31.292024 ], [ -86.764082, 31.288519 ], [ -86.764349, 31.28813 ], [ -86.76467, 31.285632 ], [ -86.764725, 31.282699 ], [ -86.764299, 31.281438 ], [ -86.76438, 31.279192 ], [ -86.764167, 31.278505 ], [ -86.763286, 31.27745 ], [ -86.762566, 31.276052 ], [ -86.7611, 31.274378 ], [ -86.761207, 31.272934 ], [ -86.761101, 31.272453 ], [ -86.75913, 31.270891 ], [ -86.75891, 31.269476 ], [ -86.758543, 31.268805 ], [ -86.75724, 31.26932 ], [ -86.756288, 31.269942 ], [ -86.755509, 31.270713 ], [ -86.752536, 31.276337 ], [ -86.750382, 31.278805 ], [ -86.749075, 31.279853 ], [ -86.744701, 31.282557 ], [ -86.744052, 31.283418 ], [ -86.743035, 31.285282 ], [ -86.739785, 31.287592 ], [ -86.738687, 31.288859 ], [ -86.737647, 31.287869 ], [ -86.736666, 31.287759 ], [ -86.735872, 31.288084 ], [ -86.735231, 31.288084 ], [ -86.73331, 31.287604 ], [ -86.732642, 31.287581 ], [ -86.730588, 31.288338 ], [ -86.727413, 31.290998 ], [ -86.726266, 31.291319 ], [ -86.725625, 31.291158 ], [ -86.725038, 31.290425 ], [ -86.725438, 31.28866 ], [ -86.725064, 31.287446 ], [ -86.726024, 31.287079 ], [ -86.727652, 31.286872 ], [ -86.727999, 31.286666 ], [ -86.728212, 31.286299 ], [ -86.728212, 31.285544 ], [ -86.727464, 31.28426 ], [ -86.72637, 31.283321 ], [ -86.724475, 31.282313 ], [ -86.724368, 31.282153 ], [ -86.724768, 31.281007 ], [ -86.724233, 31.279723 ], [ -86.723565, 31.278876 ], [ -86.722657, 31.278234 ], [ -86.720976, 31.277983 ], [ -86.720736, 31.277593 ], [ -86.720843, 31.27702 ], [ -86.724043, 31.273856 ], [ -86.723189, 31.273238 ], [ -86.723029, 31.272917 ], [ -86.722939, 31.27117 ], [ -86.723147, 31.270296 ], [ -86.722664, 31.269836 ], [ -86.721483, 31.269146 ], [ -86.721505, 31.268341 ], [ -86.721096, 31.266731 ], [ -86.720828, 31.266524 ], [ -86.720245, 31.265506 ], [ -86.721364, 31.264414 ], [ -86.727037, 31.261524 ], [ -86.729424, 31.260955 ], [ -86.73146, 31.261173 ], [ -86.732221, 31.261082 ], [ -86.734251, 31.260501 ], [ -86.735013, 31.260025 ], [ -86.736148, 31.260618 ], [ -86.736758, 31.260729 ], [ -86.738669, 31.260121 ], [ -86.74005, 31.260251 ], [ -86.740582, 31.260133 ], [ -86.741746, 31.258931 ], [ -86.742357, 31.258745 ], [ -86.743419, 31.259059 ], [ -86.743604, 31.259309 ], [ -86.743467, 31.26006 ], [ -86.743838, 31.260516 ], [ -86.744741, 31.260464 ], [ -86.744847, 31.260052 ], [ -86.74578, 31.259249 ], [ -86.746607, 31.258836 ], [ -86.748448, 31.258262 ], [ -86.749009, 31.258308 ], [ -86.749382, 31.258399 ], [ -86.749623, 31.258789 ], [ -86.75025, 31.259086 ], [ -86.750437, 31.259682 ], [ -86.751049, 31.260645 ], [ -86.752116, 31.261517 ], [ -86.753103, 31.261517 ], [ -86.754277, 31.261151 ], [ -86.754624, 31.261335 ], [ -86.75481, 31.26161 ], [ -86.754676, 31.263924 ], [ -86.754862, 31.264772 ], [ -86.755582, 31.265598 ], [ -86.756462, 31.266034 ], [ -86.757129, 31.266149 ], [ -86.757876, 31.26608 ], [ -86.759584, 31.26521 ], [ -86.761319, 31.262529 ], [ -86.76164, 31.262277 ], [ -86.761667, 31.261979 ], [ -86.76212, 31.26159 ], [ -86.763961, 31.261293 ], [ -86.827502, 31.261911 ], [ -86.871022, 31.261902 ], [ -86.870452, 31.265111 ], [ -86.870508, 31.265803 ], [ -86.873552, 31.272211 ], [ -86.875011, 31.273642 ], [ -86.877085, 31.276434 ], [ -86.888569, 31.27349 ], [ -86.889742, 31.273371 ], [ -86.896535, 31.274229 ], [ -86.897462, 31.274601 ], [ -86.901082, 31.276813 ], [ -86.899022, 31.279731 ], [ -86.898647, 31.279893 ], [ -86.896083, 31.280033 ], [ -86.89494, 31.280794 ], [ -86.895262, 31.284526 ], [ -86.895152, 31.285845 ], [ -86.893037, 31.289288 ], [ -86.891698, 31.29207 ], [ -86.891119, 31.292797 ], [ -86.888522, 31.294718 ], [ -86.884814, 31.296071 ], [ -86.882076, 31.297708 ], [ -86.877941, 31.299496 ], [ -86.877552, 31.299833 ], [ -86.878593, 31.300682 ], [ -86.879109, 31.301451 ], [ -86.880613, 31.306971 ], [ -86.881319, 31.308478 ], [ -86.886935, 31.316066 ], [ -86.888351, 31.317446 ], [ -86.893027, 31.321241 ], [ -86.893719, 31.322083 ], [ -86.895064, 31.324305 ], [ -86.896287, 31.325637 ], [ -86.897111, 31.326166 ], [ -86.900029, 31.327221 ], [ -86.901081, 31.327973 ], [ -86.901739, 31.328673 ], [ -86.902227, 31.329614 ], [ -86.903182, 31.3329 ], [ -86.903849, 31.337638 ], [ -86.905362, 31.340282 ], [ -86.907602, 31.340702 ], [ -86.909042, 31.341249 ], [ -86.909736, 31.341237 ], [ -86.911043, 31.340706 ], [ -86.911923, 31.340147 ], [ -86.915844, 31.336217 ], [ -86.917658, 31.335602 ], [ -86.91717, 31.333192 ], [ -86.91347, 31.321437 ], [ -86.913336, 31.320406 ], [ -86.91387, 31.320337 ], [ -86.914538, 31.319673 ], [ -86.915419, 31.318023 ], [ -86.91622, 31.315868 ], [ -86.919318, 31.312799 ], [ -86.919905, 31.311722 ], [ -86.919799, 31.309934 ], [ -86.919612, 31.309384 ], [ -86.919612, 31.307848 ], [ -86.919853, 31.306084 ], [ -86.921281, 31.303568 ], [ -86.923146, 31.296611 ], [ -86.923635, 31.295453 ], [ -86.925781, 31.291794 ], [ -86.926153, 31.289654 ], [ -86.931555, 31.291451 ], [ -86.933073, 31.291677 ], [ -86.941279, 31.290688 ], [ -86.948782, 31.289352 ], [ -86.950744, 31.2894 ], [ -86.956328, 31.290778 ], [ -86.972996, 31.298051 ], [ -86.977942, 31.299299 ], [ -86.981368, 31.299649 ], [ -86.980937, 31.300599 ], [ -86.9809, 31.30281 ], [ -86.980598, 31.303875 ], [ -86.975966, 31.309626 ], [ -86.975385, 31.310851 ], [ -86.97542, 31.316735 ], [ -86.975644, 31.319544 ], [ -86.976333, 31.319666 ], [ -86.98036, 31.319624 ], [ -86.981103, 31.31913 ], [ -86.985274, 31.31761 ], [ -86.988225, 31.316147 ], [ -86.99287, 31.316136 ], [ -86.992984, 31.315636 ], [ -86.993591, 31.314832 ], [ -86.993615, 31.314331 ], [ -86.992753, 31.312165 ], [ -86.992642, 31.311478 ], [ -86.993451, 31.309167 ], [ -86.995977, 31.307391 ], [ -86.997469, 31.307152 ], [ -86.998406, 31.306353 ], [ -86.999972, 31.305411 ], [ -87.001923, 31.303786 ], [ -87.002961, 31.304429 ], [ -87.003972, 31.304585 ], [ -87.00479, 31.304357 ], [ -87.008525, 31.302549 ], [ -87.010247, 31.301909 ], [ -87.015201, 31.301838 ], [ -87.016357, 31.301554 ], [ -87.017216, 31.301156 ], [ -87.022895, 31.301182 ], [ -87.023471, 31.302347 ], [ -87.023156, 31.316 ], [ -87.027469, 31.315991 ], [ -87.027645, 31.346666 ], [ -87.027378, 31.349973 ], [ -87.028076, 31.350091 ], [ -87.028547, 31.350657 ], [ -87.029226, 31.35055 ], [ -87.029747, 31.351038 ], [ -87.030651, 31.351157 ], [ -87.031237, 31.352242 ], [ -87.032222, 31.352818 ], [ -87.033334, 31.353765 ], [ -87.035598, 31.354281 ], [ -87.037303, 31.354336 ], [ -87.040652, 31.355475 ], [ -87.042535, 31.356569 ], [ -87.044469, 31.357075 ], [ -87.045027, 31.357936 ], [ -87.046411, 31.359235 ], [ -87.046767, 31.360185 ], [ -87.047412, 31.360914 ], [ -87.047505, 31.3617 ], [ -87.048339, 31.36261 ], [ -87.049522, 31.361929 ], [ -87.05228, 31.360946 ], [ -87.053803, 31.359828 ], [ -87.054699, 31.358721 ], [ -87.055051, 31.357742 ], [ -87.055764, 31.353686 ], [ -87.056091, 31.350606 ], [ -87.056523, 31.349057 ], [ -87.060018, 31.349843 ], [ -87.064603, 31.351212 ], [ -87.070189, 31.353567 ], [ -87.07309, 31.355317 ], [ -87.068122, 31.358376 ], [ -87.061082, 31.363745 ] ], [ [ -86.824213, 31.274995 ], [ -86.823886, 31.277248 ], [ -86.823001, 31.279791 ], [ -86.82293, 31.280604 ], [ -86.823065, 31.281315 ], [ -86.799263, 31.300056 ], [ -86.799654, 31.300056 ], [ -86.800241, 31.300697 ], [ -86.801656, 31.300537 ], [ -86.80267, 31.301019 ], [ -86.803337, 31.301569 ], [ -86.805499, 31.301798 ], [ -86.807287, 31.302394 ], [ -86.807527, 31.302302 ], [ -86.808035, 31.301615 ], [ -86.807928, 31.300492 ], [ -86.808408, 31.300285 ], [ -86.810196, 31.301156 ], [ -86.811425, 31.30134 ], [ -86.812626, 31.301775 ], [ -86.814281, 31.301867 ], [ -86.814895, 31.302096 ], [ -86.815589, 31.302875 ], [ -86.816016, 31.302967 ], [ -86.816443, 31.302921 ], [ -86.81703, 31.302554 ], [ -86.819859, 31.301844 ], [ -86.820393, 31.301454 ], [ -86.821167, 31.301317 ], [ -86.822101, 31.300789 ], [ -86.822635, 31.300881 ], [ -86.823329, 31.301912 ], [ -86.823596, 31.301981 ], [ -86.824503, 31.301408 ], [ -86.824877, 31.301362 ], [ -86.825678, 31.301683 ], [ -86.827519, 31.301568 ], [ -86.829078, 31.301263 ], [ -86.831208, 31.301793 ], [ -86.831109, 31.299229 ], [ -86.831215, 31.298527 ], [ -86.844877, 31.298424 ], [ -86.845094, 31.297616 ], [ -86.845328, 31.295204 ], [ -86.846331, 31.291481 ], [ -86.846717, 31.290832 ], [ -86.848543, 31.289411 ], [ -86.849514, 31.287128 ], [ -86.84969, 31.286107 ], [ -86.849953, 31.285536 ], [ -86.848787, 31.285265 ], [ -86.846736, 31.285357 ], [ -86.839803, 31.287799 ], [ -86.837122, 31.288262 ], [ -86.834481, 31.28826 ], [ -86.828877, 31.280784 ], [ -86.825664, 31.277897 ], [ -86.825881, 31.275982 ], [ -86.824213, 31.274995 ] ] ] ] } ================================================ FILE: test/fixtures/degenring_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.70410156, 31.30671516 ], [ -86.70410156, 31.31610138 ], [ -86.69311523, 31.31610138 ], [ -86.69311523, 31.30671516 ], [ -86.70410156, 31.30671516 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.70410156, 31.31610138 ], [ -86.70410156, 31.32548668 ], [ -86.69311523, 31.32548668 ], [ -86.69311523, 31.31610138 ], [ -86.70410156, 31.31610138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.70410156, 31.32548668 ], [ -86.70410156, 31.33487103 ], [ -86.69311523, 31.33487103 ], [ -86.69311523, 31.32548668 ], [ -86.70410156, 31.32548668 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.70410156, 31.33487103 ], [ -86.70410156, 31.34425446 ], [ -86.69311523, 31.34425446 ], [ -86.69311523, 31.33487103 ], [ -86.70410156, 31.33487103 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.70410156, 31.34425446 ], [ -86.70410156, 31.35363694 ], [ -86.69311523, 31.35363694 ], [ -86.69311523, 31.34425446 ], [ -86.70410156, 31.34425446 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.71508789, 31.30671516 ], [ -86.71508789, 31.31610138 ], [ -86.70410156, 31.31610138 ], [ -86.70410156, 31.30671516 ], [ -86.71508789, 31.30671516 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.71508789, 31.35363694 ], [ -86.71508789, 31.36301849 ], [ -86.70410156, 31.36301849 ], [ -86.70410156, 31.35363694 ], [ -86.71508789, 31.35363694 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.25976999 ], [ -86.72607422, 31.26916089 ], [ -86.71508789, 31.26916089 ], [ -86.71508789, 31.25976999 ], [ -86.72607422, 31.25976999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.26916089 ], [ -86.72607422, 31.27855086 ], [ -86.71508789, 31.27855086 ], [ -86.71508789, 31.26916089 ], [ -86.72607422, 31.26916089 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.27855086 ], [ -86.72607422, 31.28793989 ], [ -86.71508789, 31.28793989 ], [ -86.71508789, 31.27855086 ], [ -86.72607422, 31.27855086 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.28793989 ], [ -86.72607422, 31.29732799 ], [ -86.71508789, 31.29732799 ], [ -86.71508789, 31.28793989 ], [ -86.72607422, 31.28793989 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.30671516 ], [ -86.72607422, 31.31610138 ], [ -86.71508789, 31.31610138 ], [ -86.71508789, 31.30671516 ], [ -86.72607422, 31.30671516 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.35363694 ], [ -86.72607422, 31.36301849 ], [ -86.71508789, 31.36301849 ], [ -86.71508789, 31.35363694 ], [ -86.72607422, 31.35363694 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.36301849 ], [ -86.72607422, 31.3723991 ], [ -86.71508789, 31.3723991 ], [ -86.71508789, 31.36301849 ], [ -86.72607422, 31.36301849 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.38177878 ], [ -86.72607422, 31.39115752 ], [ -86.71508789, 31.39115752 ], [ -86.71508789, 31.38177878 ], [ -86.72607422, 31.38177878 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.39115752 ], [ -86.72607422, 31.40053533 ], [ -86.71508789, 31.40053533 ], [ -86.71508789, 31.39115752 ], [ -86.72607422, 31.39115752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.72607422, 31.40053533 ], [ -86.72607422, 31.40991219 ], [ -86.71508789, 31.40991219 ], [ -86.71508789, 31.40053533 ], [ -86.72607422, 31.40053533 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.73706055, 31.40991219 ], [ -86.73706055, 31.41928812 ], [ -86.72607422, 31.41928812 ], [ -86.72607422, 31.40991219 ], [ -86.73706055, 31.40991219 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.74804688, 31.25037815 ], [ -86.74804688, 31.25976999 ], [ -86.73706055, 31.25976999 ], [ -86.73706055, 31.25037815 ], [ -86.74804688, 31.25037815 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.74804688, 31.25976999 ], [ -86.74804688, 31.27855086 ], [ -86.72607422, 31.27855086 ], [ -86.72607422, 31.25976999 ], [ -86.74804688, 31.25976999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.74804688, 31.27855086 ], [ -86.74804688, 31.29732799 ], [ -86.72607422, 31.29732799 ], [ -86.72607422, 31.27855086 ], [ -86.74804688, 31.27855086 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.74804688, 31.31610138 ], [ -86.74804688, 31.35363694 ], [ -86.70410156, 31.35363694 ], [ -86.70410156, 31.31610138 ], [ -86.74804688, 31.31610138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.74804688, 31.35363694 ], [ -86.74804688, 31.3723991 ], [ -86.72607422, 31.3723991 ], [ -86.72607422, 31.35363694 ], [ -86.74804688, 31.35363694 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.74804688, 31.3723991 ], [ -86.74804688, 31.39115752 ], [ -86.72607422, 31.39115752 ], [ -86.72607422, 31.3723991 ], [ -86.74804688, 31.3723991 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.74804688, 31.39115752 ], [ -86.74804688, 31.40991219 ], [ -86.72607422, 31.40991219 ], [ -86.72607422, 31.39115752 ], [ -86.74804688, 31.39115752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.74804688, 31.40991219 ], [ -86.74804688, 31.41928812 ], [ -86.73706055, 31.41928812 ], [ -86.73706055, 31.40991219 ], [ -86.74804688, 31.40991219 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.74804688, 31.41928812 ], [ -86.74804688, 31.42866312 ], [ -86.73706055, 31.42866312 ], [ -86.73706055, 31.41928812 ], [ -86.74804688, 31.41928812 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.7590332, 31.25037815 ], [ -86.7590332, 31.25976999 ], [ -86.74804688, 31.25976999 ], [ -86.74804688, 31.25037815 ], [ -86.7590332, 31.25037815 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.7590332, 31.42866312 ], [ -86.7590332, 31.43803717 ], [ -86.74804688, 31.43803717 ], [ -86.74804688, 31.42866312 ], [ -86.7590332, 31.42866312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.77001953, 31.25976999 ], [ -86.77001953, 31.27855086 ], [ -86.74804688, 31.27855086 ], [ -86.74804688, 31.25976999 ], [ -86.77001953, 31.25976999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.77001953, 31.42866312 ], [ -86.77001953, 31.43803717 ], [ -86.7590332, 31.43803717 ], [ -86.7590332, 31.42866312 ], [ -86.77001953, 31.42866312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.78100586, 31.45678247 ], [ -86.78100586, 31.46615372 ], [ -86.77001953, 31.46615372 ], [ -86.77001953, 31.45678247 ], [ -86.78100586, 31.45678247 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.79199219, 31.25976999 ], [ -86.79199219, 31.27855086 ], [ -86.77001953, 31.27855086 ], [ -86.77001953, 31.25976999 ], [ -86.79199219, 31.25976999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.79199219, 31.42866312 ], [ -86.79199219, 31.44741029 ], [ -86.77001953, 31.44741029 ], [ -86.77001953, 31.42866312 ], [ -86.79199219, 31.42866312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.79199219, 31.44741029 ], [ -86.79199219, 31.45678247 ], [ -86.78100586, 31.45678247 ], [ -86.78100586, 31.44741029 ], [ -86.79199219, 31.44741029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.79199219, 31.45678247 ], [ -86.79199219, 31.46615372 ], [ -86.78100586, 31.46615372 ], [ -86.78100586, 31.45678247 ], [ -86.79199219, 31.45678247 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.79199219, 31.46615372 ], [ -86.79199219, 31.47552402 ], [ -86.78100586, 31.47552402 ], [ -86.78100586, 31.46615372 ], [ -86.79199219, 31.46615372 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.81396484, 31.25976999 ], [ -86.81396484, 31.27855086 ], [ -86.79199219, 31.27855086 ], [ -86.79199219, 31.25976999 ], [ -86.81396484, 31.25976999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.81396484, 31.50362931 ], [ -86.81396484, 31.51299586 ], [ -86.80297852, 31.51299586 ], [ -86.80297852, 31.50362931 ], [ -86.81396484, 31.50362931 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.8359375, 31.25976999 ], [ -86.8359375, 31.27855086 ], [ -86.81396484, 31.27855086 ], [ -86.81396484, 31.25976999 ], [ -86.8359375, 31.25976999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.8359375, 31.27855086 ], [ -86.8359375, 31.35363694 ], [ -86.74804688, 31.35363694 ], [ -86.74804688, 31.27855086 ], [ -86.8359375, 31.27855086 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.8359375, 31.35363694 ], [ -86.8359375, 31.42866312 ], [ -86.74804688, 31.42866312 ], [ -86.74804688, 31.35363694 ], [ -86.8359375, 31.35363694 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.8359375, 31.42866312 ], [ -86.8359375, 31.46615372 ], [ -86.79199219, 31.46615372 ], [ -86.79199219, 31.42866312 ], [ -86.8359375, 31.42866312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.8359375, 31.46615372 ], [ -86.8359375, 31.50362931 ], [ -86.79199219, 31.50362931 ], [ -86.79199219, 31.46615372 ], [ -86.8359375, 31.46615372 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.8359375, 31.50362931 ], [ -86.8359375, 31.52236147 ], [ -86.81396484, 31.52236147 ], [ -86.81396484, 31.50362931 ], [ -86.8359375, 31.50362931 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.85791016, 31.25976999 ], [ -86.85791016, 31.27855086 ], [ -86.8359375, 31.27855086 ], [ -86.8359375, 31.25976999 ], [ -86.85791016, 31.25976999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.86889648, 31.55981453 ], [ -86.86889648, 31.56917545 ], [ -86.85791016, 31.56917545 ], [ -86.85791016, 31.55981453 ], [ -86.86889648, 31.55981453 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.87988281, 31.25976999 ], [ -86.87988281, 31.27855086 ], [ -86.85791016, 31.27855086 ], [ -86.85791016, 31.25976999 ], [ -86.87988281, 31.25976999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.87988281, 31.27855086 ], [ -86.87988281, 31.31610138 ], [ -86.8359375, 31.31610138 ], [ -86.8359375, 31.27855086 ], [ -86.87988281, 31.27855086 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.87988281, 31.31610138 ], [ -86.87988281, 31.35363694 ], [ -86.8359375, 31.35363694 ], [ -86.8359375, 31.31610138 ], [ -86.87988281, 31.31610138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.87988281, 31.50362931 ], [ -86.87988281, 31.54108988 ], [ -86.8359375, 31.54108988 ], [ -86.8359375, 31.50362931 ], [ -86.87988281, 31.50362931 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.87988281, 31.54108988 ], [ -86.87988281, 31.55981453 ], [ -86.85791016, 31.55981453 ], [ -86.85791016, 31.54108988 ], [ -86.87988281, 31.54108988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.87988281, 31.55981453 ], [ -86.87988281, 31.56917545 ], [ -86.86889648, 31.56917545 ], [ -86.86889648, 31.55981453 ], [ -86.87988281, 31.55981453 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.87988281, 31.56917545 ], [ -86.87988281, 31.57853543 ], [ -86.86889648, 31.57853543 ], [ -86.86889648, 31.56917545 ], [ -86.87988281, 31.56917545 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.87988281, 31.57853543 ], [ -86.87988281, 31.58789446 ], [ -86.86889648, 31.58789446 ], [ -86.86889648, 31.57853543 ], [ -86.87988281, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.89086914, 31.26916089 ], [ -86.89086914, 31.27855086 ], [ -86.87988281, 31.27855086 ], [ -86.87988281, 31.26916089 ], [ -86.89086914, 31.26916089 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.89086914, 31.29732799 ], [ -86.89086914, 31.30671516 ], [ -86.87988281, 31.30671516 ], [ -86.87988281, 31.29732799 ], [ -86.89086914, 31.29732799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.89086914, 31.30671516 ], [ -86.89086914, 31.31610138 ], [ -86.87988281, 31.31610138 ], [ -86.87988281, 31.30671516 ], [ -86.89086914, 31.30671516 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.89086914, 31.57853543 ], [ -86.89086914, 31.58789446 ], [ -86.87988281, 31.58789446 ], [ -86.87988281, 31.57853543 ], [ -86.89086914, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.90185547, 31.26916089 ], [ -86.90185547, 31.27855086 ], [ -86.89086914, 31.27855086 ], [ -86.89086914, 31.26916089 ], [ -86.90185547, 31.26916089 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.90185547, 31.27855086 ], [ -86.90185547, 31.29732799 ], [ -86.87988281, 31.29732799 ], [ -86.87988281, 31.27855086 ], [ -86.90185547, 31.27855086 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.90185547, 31.31610138 ], [ -86.90185547, 31.33487103 ], [ -86.87988281, 31.33487103 ], [ -86.87988281, 31.31610138 ], [ -86.90185547, 31.31610138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.90185547, 31.33487103 ], [ -86.90185547, 31.35363694 ], [ -86.87988281, 31.35363694 ], [ -86.87988281, 31.33487103 ], [ -86.90185547, 31.33487103 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.90185547, 31.57853543 ], [ -86.90185547, 31.58789446 ], [ -86.89086914, 31.58789446 ], [ -86.89086914, 31.57853543 ], [ -86.90185547, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.9128418, 31.32548668 ], [ -86.9128418, 31.33487103 ], [ -86.90185547, 31.33487103 ], [ -86.90185547, 31.32548668 ], [ -86.9128418, 31.32548668 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.9128418, 31.57853543 ], [ -86.9128418, 31.58789446 ], [ -86.90185547, 31.58789446 ], [ -86.90185547, 31.57853543 ], [ -86.9128418, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.28793989 ], [ -86.92382813, 31.29732799 ], [ -86.9128418, 31.29732799 ], [ -86.9128418, 31.28793989 ], [ -86.92382813, 31.28793989 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.29732799 ], [ -86.92382813, 31.30671516 ], [ -86.9128418, 31.30671516 ], [ -86.9128418, 31.29732799 ], [ -86.92382813, 31.29732799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.30671516 ], [ -86.92382813, 31.31610138 ], [ -86.9128418, 31.31610138 ], [ -86.9128418, 31.30671516 ], [ -86.92382813, 31.30671516 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.31610138 ], [ -86.92382813, 31.32548668 ], [ -86.9128418, 31.32548668 ], [ -86.9128418, 31.31610138 ], [ -86.92382813, 31.31610138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.32548668 ], [ -86.92382813, 31.33487103 ], [ -86.9128418, 31.33487103 ], [ -86.9128418, 31.32548668 ], [ -86.92382813, 31.32548668 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.33487103 ], [ -86.92382813, 31.35363694 ], [ -86.90185547, 31.35363694 ], [ -86.90185547, 31.33487103 ], [ -86.92382813, 31.33487103 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.50362931 ], [ -86.92382813, 31.54108988 ], [ -86.87988281, 31.54108988 ], [ -86.87988281, 31.50362931 ], [ -86.92382813, 31.50362931 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.54108988 ], [ -86.92382813, 31.57853543 ], [ -86.87988281, 31.57853543 ], [ -86.87988281, 31.54108988 ], [ -86.92382813, 31.54108988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.57853543 ], [ -86.92382813, 31.58789446 ], [ -86.9128418, 31.58789446 ], [ -86.9128418, 31.57853543 ], [ -86.92382813, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.92382813, 31.58789446 ], [ -86.92382813, 31.59725256 ], [ -86.9128418, 31.59725256 ], [ -86.9128418, 31.58789446 ], [ -86.92382813, 31.58789446 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.93481445, 31.28793989 ], [ -86.93481445, 31.29732799 ], [ -86.92382813, 31.29732799 ], [ -86.92382813, 31.28793989 ], [ -86.93481445, 31.28793989 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.94580078, 31.28793989 ], [ -86.94580078, 31.29732799 ], [ -86.93481445, 31.29732799 ], [ -86.93481445, 31.28793989 ], [ -86.94580078, 31.28793989 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.94580078, 31.29732799 ], [ -86.94580078, 31.31610138 ], [ -86.92382813, 31.31610138 ], [ -86.92382813, 31.29732799 ], [ -86.94580078, 31.29732799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.94580078, 31.57853543 ], [ -86.94580078, 31.59725256 ], [ -86.92382813, 31.59725256 ], [ -86.92382813, 31.57853543 ], [ -86.94580078, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.95678711, 31.28793989 ], [ -86.95678711, 31.29732799 ], [ -86.94580078, 31.29732799 ], [ -86.94580078, 31.28793989 ], [ -86.95678711, 31.28793989 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.95678711, 31.59725256 ], [ -86.95678711, 31.60660972 ], [ -86.94580078, 31.60660972 ], [ -86.94580078, 31.59725256 ], [ -86.95678711, 31.59725256 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.96777344, 31.28793989 ], [ -86.96777344, 31.29732799 ], [ -86.95678711, 31.29732799 ], [ -86.95678711, 31.28793989 ], [ -86.96777344, 31.28793989 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.96777344, 31.29732799 ], [ -86.96777344, 31.31610138 ], [ -86.94580078, 31.31610138 ], [ -86.94580078, 31.29732799 ], [ -86.96777344, 31.29732799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.96777344, 31.31610138 ], [ -86.96777344, 31.35363694 ], [ -86.92382813, 31.35363694 ], [ -86.92382813, 31.31610138 ], [ -86.96777344, 31.31610138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.96777344, 31.57853543 ], [ -86.96777344, 31.59725256 ], [ -86.94580078, 31.59725256 ], [ -86.94580078, 31.57853543 ], [ -86.96777344, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.96777344, 31.59725256 ], [ -86.96777344, 31.60660972 ], [ -86.95678711, 31.60660972 ], [ -86.95678711, 31.59725256 ], [ -86.96777344, 31.59725256 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.96777344, 31.60660972 ], [ -86.96777344, 31.61596594 ], [ -86.95678711, 31.61596594 ], [ -86.95678711, 31.60660972 ], [ -86.96777344, 31.60660972 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.96777344, 31.61596594 ], [ -86.96777344, 31.62532121 ], [ -86.95678711, 31.62532121 ], [ -86.95678711, 31.61596594 ], [ -86.96777344, 31.61596594 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.96777344, 31.62532121 ], [ -86.96777344, 31.63467555 ], [ -86.95678711, 31.63467555 ], [ -86.95678711, 31.62532121 ], [ -86.96777344, 31.62532121 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.96777344, 31.63467555 ], [ -86.96777344, 31.64402895 ], [ -86.95678711, 31.64402895 ], [ -86.95678711, 31.63467555 ], [ -86.96777344, 31.63467555 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.97875977, 31.28793989 ], [ -86.97875977, 31.29732799 ], [ -86.96777344, 31.29732799 ], [ -86.96777344, 31.28793989 ], [ -86.97875977, 31.28793989 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.97875977, 31.29732799 ], [ -86.97875977, 31.30671516 ], [ -86.96777344, 31.30671516 ], [ -86.96777344, 31.29732799 ], [ -86.97875977, 31.29732799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.97875977, 31.30671516 ], [ -86.97875977, 31.31610138 ], [ -86.96777344, 31.31610138 ], [ -86.96777344, 31.30671516 ], [ -86.97875977, 31.30671516 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.97875977, 31.6533814 ], [ -86.97875977, 31.66273291 ], [ -86.96777344, 31.66273291 ], [ -86.96777344, 31.6533814 ], [ -86.97875977, 31.6533814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.98974609, 31.29732799 ], [ -86.98974609, 31.30671516 ], [ -86.97875977, 31.30671516 ], [ -86.97875977, 31.29732799 ], [ -86.98974609, 31.29732799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.98974609, 31.6533814 ], [ -86.98974609, 31.66273291 ], [ -86.97875977, 31.66273291 ], [ -86.97875977, 31.6533814 ], [ -86.98974609, 31.6533814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.98974609, 31.66273291 ], [ -86.98974609, 31.67208349 ], [ -86.97875977, 31.67208349 ], [ -86.97875977, 31.66273291 ], [ -86.98974609, 31.66273291 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.98974609, 31.67208349 ], [ -86.98974609, 31.68143312 ], [ -86.97875977, 31.68143312 ], [ -86.97875977, 31.67208349 ], [ -86.98974609, 31.67208349 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.98974609, 31.68143312 ], [ -86.98974609, 31.69078181 ], [ -86.97875977, 31.69078181 ], [ -86.97875977, 31.68143312 ], [ -86.98974609, 31.68143312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.98974609, 31.69078181 ], [ -86.98974609, 31.70012955 ], [ -86.97875977, 31.70012955 ], [ -86.97875977, 31.69078181 ], [ -86.98974609, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.00073242, 31.69078181 ], [ -87.00073242, 31.70012955 ], [ -86.98974609, 31.70012955 ], [ -86.98974609, 31.69078181 ], [ -87.00073242, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.29732799 ], [ -87.01171875, 31.31610138 ], [ -86.98974609, 31.31610138 ], [ -86.98974609, 31.29732799 ], [ -87.01171875, 31.29732799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.31610138 ], [ -87.01171875, 31.35363694 ], [ -86.96777344, 31.35363694 ], [ -86.96777344, 31.31610138 ], [ -87.01171875, 31.31610138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.35363694 ], [ -87.01171875, 31.50362931 ], [ -86.8359375, 31.50362931 ], [ -86.8359375, 31.35363694 ], [ -87.01171875, 31.35363694 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.50362931 ], [ -87.01171875, 31.57853543 ], [ -86.92382813, 31.57853543 ], [ -86.92382813, 31.50362931 ], [ -87.01171875, 31.50362931 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.57853543 ], [ -87.01171875, 31.61596594 ], [ -86.96777344, 31.61596594 ], [ -86.96777344, 31.57853543 ], [ -87.01171875, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.61596594 ], [ -87.01171875, 31.6533814 ], [ -86.96777344, 31.6533814 ], [ -86.96777344, 31.61596594 ], [ -87.01171875, 31.61596594 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.6533814 ], [ -87.01171875, 31.67208349 ], [ -86.98974609, 31.67208349 ], [ -86.98974609, 31.6533814 ], [ -87.01171875, 31.6533814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.67208349 ], [ -87.01171875, 31.69078181 ], [ -86.98974609, 31.69078181 ], [ -86.98974609, 31.67208349 ], [ -87.01171875, 31.67208349 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.69078181 ], [ -87.01171875, 31.70012955 ], [ -87.00073242, 31.70012955 ], [ -87.00073242, 31.69078181 ], [ -87.01171875, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.70012955 ], [ -87.01171875, 31.70947636 ], [ -87.00073242, 31.70947636 ], [ -87.00073242, 31.70012955 ], [ -87.01171875, 31.70012955 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.01171875, 31.70947636 ], [ -87.01171875, 31.71882222 ], [ -87.00073242, 31.71882222 ], [ -87.00073242, 31.70947636 ], [ -87.01171875, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.02270508, 31.70947636 ], [ -87.02270508, 31.71882222 ], [ -87.01171875, 31.71882222 ], [ -87.01171875, 31.70947636 ], [ -87.02270508, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.03369141, 31.29732799 ], [ -87.03369141, 31.31610138 ], [ -87.01171875, 31.31610138 ], [ -87.01171875, 31.29732799 ], [ -87.03369141, 31.29732799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.03369141, 31.31610138 ], [ -87.03369141, 31.33487103 ], [ -87.01171875, 31.33487103 ], [ -87.01171875, 31.31610138 ], [ -87.03369141, 31.31610138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.03369141, 31.33487103 ], [ -87.03369141, 31.35363694 ], [ -87.01171875, 31.35363694 ], [ -87.01171875, 31.33487103 ], [ -87.03369141, 31.33487103 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.03369141, 31.35363694 ], [ -87.03369141, 31.3723991 ], [ -87.01171875, 31.3723991 ], [ -87.01171875, 31.35363694 ], [ -87.03369141, 31.35363694 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.03369141, 31.3723991 ], [ -87.03369141, 31.39115752 ], [ -87.01171875, 31.39115752 ], [ -87.01171875, 31.3723991 ], [ -87.03369141, 31.3723991 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.03369141, 31.69078181 ], [ -87.03369141, 31.70947636 ], [ -87.01171875, 31.70947636 ], [ -87.01171875, 31.69078181 ], [ -87.03369141, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.03369141, 31.70947636 ], [ -87.03369141, 31.71882222 ], [ -87.02270508, 31.71882222 ], [ -87.02270508, 31.70947636 ], [ -87.03369141, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.04467773, 31.3723991 ], [ -87.04467773, 31.38177878 ], [ -87.03369141, 31.38177878 ], [ -87.03369141, 31.3723991 ], [ -87.04467773, 31.3723991 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.04467773, 31.38177878 ], [ -87.04467773, 31.39115752 ], [ -87.03369141, 31.39115752 ], [ -87.03369141, 31.38177878 ], [ -87.04467773, 31.38177878 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.04467773, 31.70947636 ], [ -87.04467773, 31.71882222 ], [ -87.03369141, 31.71882222 ], [ -87.03369141, 31.70947636 ], [ -87.04467773, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.05566406, 31.35363694 ], [ -87.05566406, 31.3723991 ], [ -87.03369141, 31.3723991 ], [ -87.03369141, 31.35363694 ], [ -87.05566406, 31.35363694 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.05566406, 31.3723991 ], [ -87.05566406, 31.38177878 ], [ -87.04467773, 31.38177878 ], [ -87.04467773, 31.3723991 ], [ -87.05566406, 31.3723991 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.05566406, 31.39115752 ], [ -87.05566406, 31.42866312 ], [ -87.01171875, 31.42866312 ], [ -87.01171875, 31.39115752 ], [ -87.05566406, 31.39115752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.05566406, 31.42866312 ], [ -87.05566406, 31.46615372 ], [ -87.01171875, 31.46615372 ], [ -87.01171875, 31.42866312 ], [ -87.05566406, 31.42866312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.05566406, 31.46615372 ], [ -87.05566406, 31.50362931 ], [ -87.01171875, 31.50362931 ], [ -87.01171875, 31.46615372 ], [ -87.05566406, 31.46615372 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.05566406, 31.6533814 ], [ -87.05566406, 31.69078181 ], [ -87.01171875, 31.69078181 ], [ -87.01171875, 31.6533814 ], [ -87.05566406, 31.6533814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.05566406, 31.69078181 ], [ -87.05566406, 31.70947636 ], [ -87.03369141, 31.70947636 ], [ -87.03369141, 31.69078181 ], [ -87.05566406, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.05566406, 31.70947636 ], [ -87.05566406, 31.71882222 ], [ -87.04467773, 31.71882222 ], [ -87.04467773, 31.70947636 ], [ -87.05566406, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.05566406, 31.71882222 ], [ -87.05566406, 31.72816715 ], [ -87.04467773, 31.72816715 ], [ -87.04467773, 31.71882222 ], [ -87.05566406, 31.71882222 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.06665039, 31.34425446 ], [ -87.06665039, 31.35363694 ], [ -87.05566406, 31.35363694 ], [ -87.05566406, 31.34425446 ], [ -87.06665039, 31.34425446 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.06665039, 31.35363694 ], [ -87.06665039, 31.36301849 ], [ -87.05566406, 31.36301849 ], [ -87.05566406, 31.35363694 ], [ -87.06665039, 31.35363694 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.06665039, 31.36301849 ], [ -87.06665039, 31.3723991 ], [ -87.05566406, 31.3723991 ], [ -87.05566406, 31.36301849 ], [ -87.06665039, 31.36301849 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.06665039, 31.40053533 ], [ -87.06665039, 31.40991219 ], [ -87.05566406, 31.40991219 ], [ -87.05566406, 31.40053533 ], [ -87.06665039, 31.40053533 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.06665039, 31.70947636 ], [ -87.06665039, 31.71882222 ], [ -87.05566406, 31.71882222 ], [ -87.05566406, 31.70947636 ], [ -87.06665039, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.07763672, 31.34425446 ], [ -87.07763672, 31.35363694 ], [ -87.06665039, 31.35363694 ], [ -87.06665039, 31.34425446 ], [ -87.07763672, 31.34425446 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.07763672, 31.35363694 ], [ -87.07763672, 31.36301849 ], [ -87.06665039, 31.36301849 ], [ -87.06665039, 31.35363694 ], [ -87.07763672, 31.35363694 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.07763672, 31.40991219 ], [ -87.07763672, 31.42866312 ], [ -87.05566406, 31.42866312 ], [ -87.05566406, 31.40991219 ], [ -87.07763672, 31.40991219 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.07763672, 31.46615372 ], [ -87.07763672, 31.48489339 ], [ -87.05566406, 31.48489339 ], [ -87.05566406, 31.46615372 ], [ -87.07763672, 31.46615372 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.07763672, 31.48489339 ], [ -87.07763672, 31.50362931 ], [ -87.05566406, 31.50362931 ], [ -87.05566406, 31.48489339 ], [ -87.07763672, 31.48489339 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.07763672, 31.69078181 ], [ -87.07763672, 31.70947636 ], [ -87.05566406, 31.70947636 ], [ -87.05566406, 31.69078181 ], [ -87.07763672, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.07763672, 31.70947636 ], [ -87.07763672, 31.71882222 ], [ -87.06665039, 31.71882222 ], [ -87.06665039, 31.70947636 ], [ -87.07763672, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.07763672, 31.71882222 ], [ -87.07763672, 31.72816715 ], [ -87.06665039, 31.72816715 ], [ -87.06665039, 31.71882222 ], [ -87.07763672, 31.71882222 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.08862305, 31.40991219 ], [ -87.08862305, 31.41928812 ], [ -87.07763672, 31.41928812 ], [ -87.07763672, 31.40991219 ], [ -87.08862305, 31.40991219 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.08862305, 31.41928812 ], [ -87.08862305, 31.42866312 ], [ -87.07763672, 31.42866312 ], [ -87.07763672, 31.41928812 ], [ -87.08862305, 31.41928812 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.08862305, 31.47552402 ], [ -87.08862305, 31.48489339 ], [ -87.07763672, 31.48489339 ], [ -87.07763672, 31.47552402 ], [ -87.08862305, 31.47552402 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.09960938, 31.41928812 ], [ -87.09960938, 31.42866312 ], [ -87.08862305, 31.42866312 ], [ -87.08862305, 31.41928812 ], [ -87.09960938, 31.41928812 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.09960938, 31.42866312 ], [ -87.09960938, 31.46615372 ], [ -87.05566406, 31.46615372 ], [ -87.05566406, 31.42866312 ], [ -87.09960938, 31.42866312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.09960938, 31.48489339 ], [ -87.09960938, 31.50362931 ], [ -87.07763672, 31.50362931 ], [ -87.07763672, 31.48489339 ], [ -87.09960938, 31.48489339 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.09960938, 31.50362931 ], [ -87.09960938, 31.57853543 ], [ -87.01171875, 31.57853543 ], [ -87.01171875, 31.50362931 ], [ -87.09960938, 31.50362931 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.09960938, 31.57853543 ], [ -87.09960938, 31.6533814 ], [ -87.01171875, 31.6533814 ], [ -87.01171875, 31.57853543 ], [ -87.09960938, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.09960938, 31.6533814 ], [ -87.09960938, 31.69078181 ], [ -87.05566406, 31.69078181 ], [ -87.05566406, 31.6533814 ], [ -87.09960938, 31.6533814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.09960938, 31.69078181 ], [ -87.09960938, 31.70947636 ], [ -87.07763672, 31.70947636 ], [ -87.07763672, 31.69078181 ], [ -87.09960938, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.09960938, 31.70947636 ], [ -87.09960938, 31.72816715 ], [ -87.07763672, 31.72816715 ], [ -87.07763672, 31.70947636 ], [ -87.09960938, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.1105957, 31.41928812 ], [ -87.1105957, 31.42866312 ], [ -87.09960938, 31.42866312 ], [ -87.09960938, 31.41928812 ], [ -87.1105957, 31.41928812 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.1105957, 31.42866312 ], [ -87.1105957, 31.43803717 ], [ -87.09960938, 31.43803717 ], [ -87.09960938, 31.42866312 ], [ -87.1105957, 31.42866312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.1105957, 31.43803717 ], [ -87.1105957, 31.44741029 ], [ -87.09960938, 31.44741029 ], [ -87.09960938, 31.43803717 ], [ -87.1105957, 31.43803717 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.1105957, 31.48489339 ], [ -87.1105957, 31.49426182 ], [ -87.09960938, 31.49426182 ], [ -87.09960938, 31.48489339 ], [ -87.1105957, 31.48489339 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.1105957, 31.49426182 ], [ -87.1105957, 31.50362931 ], [ -87.09960938, 31.50362931 ], [ -87.09960938, 31.49426182 ], [ -87.1105957, 31.49426182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.1105957, 31.55045268 ], [ -87.1105957, 31.55981453 ], [ -87.09960938, 31.55981453 ], [ -87.09960938, 31.55045268 ], [ -87.1105957, 31.55045268 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.12158203, 31.49426182 ], [ -87.12158203, 31.50362931 ], [ -87.1105957, 31.50362931 ], [ -87.1105957, 31.49426182 ], [ -87.12158203, 31.49426182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.12158203, 31.55045268 ], [ -87.12158203, 31.55981453 ], [ -87.1105957, 31.55981453 ], [ -87.1105957, 31.55045268 ], [ -87.12158203, 31.55045268 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.12158203, 31.55981453 ], [ -87.12158203, 31.57853543 ], [ -87.09960938, 31.57853543 ], [ -87.09960938, 31.55981453 ], [ -87.12158203, 31.55981453 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.12158203, 31.69078181 ], [ -87.12158203, 31.70947636 ], [ -87.09960938, 31.70947636 ], [ -87.09960938, 31.69078181 ], [ -87.12158203, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.12158203, 31.70947636 ], [ -87.12158203, 31.72816715 ], [ -87.09960938, 31.72816715 ], [ -87.09960938, 31.70947636 ], [ -87.12158203, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.13256836, 31.49426182 ], [ -87.13256836, 31.50362931 ], [ -87.12158203, 31.50362931 ], [ -87.12158203, 31.49426182 ], [ -87.13256836, 31.49426182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.13256836, 31.55045268 ], [ -87.13256836, 31.55981453 ], [ -87.12158203, 31.55981453 ], [ -87.12158203, 31.55045268 ], [ -87.13256836, 31.55045268 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.13256836, 31.70947636 ], [ -87.13256836, 31.71882222 ], [ -87.12158203, 31.71882222 ], [ -87.12158203, 31.70947636 ], [ -87.13256836, 31.70947636 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.14355469, 31.50362931 ], [ -87.14355469, 31.54108988 ], [ -87.09960938, 31.54108988 ], [ -87.09960938, 31.50362931 ], [ -87.14355469, 31.50362931 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.14355469, 31.54108988 ], [ -87.14355469, 31.55045268 ], [ -87.13256836, 31.55045268 ], [ -87.13256836, 31.54108988 ], [ -87.14355469, 31.54108988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.14355469, 31.55045268 ], [ -87.14355469, 31.55981453 ], [ -87.13256836, 31.55981453 ], [ -87.13256836, 31.55045268 ], [ -87.14355469, 31.55045268 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.14355469, 31.55981453 ], [ -87.14355469, 31.57853543 ], [ -87.12158203, 31.57853543 ], [ -87.12158203, 31.55981453 ], [ -87.14355469, 31.55981453 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.14355469, 31.57853543 ], [ -87.14355469, 31.61596594 ], [ -87.09960938, 31.61596594 ], [ -87.09960938, 31.57853543 ], [ -87.14355469, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.14355469, 31.61596594 ], [ -87.14355469, 31.6533814 ], [ -87.09960938, 31.6533814 ], [ -87.09960938, 31.61596594 ], [ -87.14355469, 31.61596594 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.14355469, 31.6533814 ], [ -87.14355469, 31.69078181 ], [ -87.09960938, 31.69078181 ], [ -87.09960938, 31.6533814 ], [ -87.14355469, 31.6533814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.14355469, 31.69078181 ], [ -87.14355469, 31.70947636 ], [ -87.12158203, 31.70947636 ], [ -87.12158203, 31.69078181 ], [ -87.14355469, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.50362931 ], [ -87.15454102, 31.51299586 ], [ -87.14355469, 31.51299586 ], [ -87.14355469, 31.50362931 ], [ -87.15454102, 31.50362931 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.51299586 ], [ -87.15454102, 31.52236147 ], [ -87.14355469, 31.52236147 ], [ -87.14355469, 31.51299586 ], [ -87.15454102, 31.51299586 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.52236147 ], [ -87.15454102, 31.53172614 ], [ -87.14355469, 31.53172614 ], [ -87.14355469, 31.52236147 ], [ -87.15454102, 31.52236147 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.53172614 ], [ -87.15454102, 31.54108988 ], [ -87.14355469, 31.54108988 ], [ -87.14355469, 31.53172614 ], [ -87.15454102, 31.53172614 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.57853543 ], [ -87.15454102, 31.58789446 ], [ -87.14355469, 31.58789446 ], [ -87.14355469, 31.57853543 ], [ -87.15454102, 31.57853543 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.58789446 ], [ -87.15454102, 31.59725256 ], [ -87.14355469, 31.59725256 ], [ -87.14355469, 31.58789446 ], [ -87.15454102, 31.58789446 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.67208349 ], [ -87.15454102, 31.68143312 ], [ -87.14355469, 31.68143312 ], [ -87.14355469, 31.67208349 ], [ -87.15454102, 31.67208349 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.68143312 ], [ -87.15454102, 31.69078181 ], [ -87.14355469, 31.69078181 ], [ -87.14355469, 31.68143312 ], [ -87.15454102, 31.68143312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.69078181 ], [ -87.15454102, 31.70012955 ], [ -87.14355469, 31.70012955 ], [ -87.14355469, 31.69078181 ], [ -87.15454102, 31.69078181 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.15454102, 31.70012955 ], [ -87.15454102, 31.70947636 ], [ -87.14355469, 31.70947636 ], [ -87.14355469, 31.70012955 ], [ -87.15454102, 31.70012955 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.16552734, 31.53172614 ], [ -87.16552734, 31.54108988 ], [ -87.15454102, 31.54108988 ], [ -87.15454102, 31.53172614 ], [ -87.16552734, 31.53172614 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.16552734, 31.54108988 ], [ -87.16552734, 31.55981453 ], [ -87.14355469, 31.55981453 ], [ -87.14355469, 31.54108988 ], [ -87.16552734, 31.54108988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.16552734, 31.55981453 ], [ -87.16552734, 31.57853543 ], [ -87.14355469, 31.57853543 ], [ -87.14355469, 31.55981453 ], [ -87.16552734, 31.55981453 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.16552734, 31.6533814 ], [ -87.16552734, 31.67208349 ], [ -87.14355469, 31.67208349 ], [ -87.14355469, 31.6533814 ], [ -87.16552734, 31.6533814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.16552734, 31.67208349 ], [ -87.16552734, 31.68143312 ], [ -87.15454102, 31.68143312 ], [ -87.15454102, 31.67208349 ], [ -87.16552734, 31.67208349 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.17651367, 31.54108988 ], [ -87.17651367, 31.55045268 ], [ -87.16552734, 31.55045268 ], [ -87.16552734, 31.54108988 ], [ -87.17651367, 31.54108988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.17651367, 31.6533814 ], [ -87.17651367, 31.66273291 ], [ -87.16552734, 31.66273291 ], [ -87.16552734, 31.6533814 ], [ -87.17651367, 31.6533814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.17651367, 31.66273291 ], [ -87.17651367, 31.67208349 ], [ -87.16552734, 31.67208349 ], [ -87.16552734, 31.66273291 ], [ -87.17651367, 31.66273291 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.061082, 31.363745 ], [ -87.04404, 31.377009 ], [ -87.040931, 31.379676 ], [ -87.036651, 31.383917 ], [ -87.029722, 31.391829 ], [ -87.032293, 31.392847 ], [ -87.034529, 31.392719 ], [ -87.03582, 31.393347 ], [ -87.036416, 31.393416 ], [ -87.03666, 31.393614 ], [ -87.038661, 31.394216 ], [ -87.039197, 31.39484 ], [ -87.040592, 31.395646 ], [ -87.04106, 31.395716 ], [ -87.041492, 31.396479 ], [ -87.041787, 31.396434 ], [ -87.042251, 31.396726 ], [ -87.042951, 31.396532 ], [ -87.043634, 31.396593 ], [ -87.043986, 31.395797 ], [ -87.043891, 31.395481 ], [ -87.044851, 31.395219 ], [ -87.045115, 31.395383 ], [ -87.045614, 31.395266 ], [ -87.046077, 31.395551 ], [ -87.046165, 31.395264 ], [ -87.046332, 31.395242 ], [ -87.046712, 31.395587 ], [ -87.047083, 31.395509 ], [ -87.047969, 31.395902 ], [ -87.049129, 31.395832 ], [ -87.049707, 31.396193 ], [ -87.050104, 31.395944 ], [ -87.050476, 31.396102 ], [ -87.050886, 31.396013 ], [ -87.052146, 31.396811 ], [ -87.052353, 31.397366 ], [ -87.052285, 31.397928 ], [ -87.051391, 31.398541 ], [ -87.051198, 31.399031 ], [ -87.052079, 31.400327 ], [ -87.053346, 31.401213 ], [ -87.054238, 31.402899 ], [ -87.054733, 31.403216 ], [ -87.055169, 31.403248 ], [ -87.055552, 31.402994 ], [ -87.055788, 31.402564 ], [ -87.056271, 31.402482 ], [ -87.05764, 31.402884 ], [ -87.057626, 31.405208 ], [ -87.05781, 31.407063 ], [ -87.057079, 31.407207 ], [ -87.056814, 31.408185 ], [ -87.057382, 31.410012 ], [ -87.057346, 31.41046 ], [ -87.057738, 31.412362 ], [ -87.057759, 31.413781 ], [ -87.057595, 31.414034 ], [ -87.057126, 31.414229 ], [ -87.054669, 31.414633 ], [ -87.054379, 31.415116 ], [ -87.053828, 31.415577 ], [ -87.053114, 31.41689 ], [ -87.053799, 31.416989 ], [ -87.054736, 31.416187 ], [ -87.05499, 31.415642 ], [ -87.055509, 31.415464 ], [ -87.055949, 31.41505 ], [ -87.057237, 31.41498 ], [ -87.057692, 31.414775 ], [ -87.057864, 31.414587 ], [ -87.057818, 31.414351 ], [ -87.058894, 31.414209 ], [ -87.059756, 31.41348 ], [ -87.060434, 31.413137 ], [ -87.060833, 31.41269 ], [ -87.061653, 31.412326 ], [ -87.061693, 31.411705 ], [ -87.061977, 31.411399 ], [ -87.063125, 31.411395 ], [ -87.064559, 31.410728 ], [ -87.065074, 31.410753 ], [ -87.066483, 31.411213 ], [ -87.068129, 31.412148 ], [ -87.070265, 31.411901 ], [ -87.072532, 31.412033 ], [ -87.074344, 31.411587 ], [ -87.076002, 31.411699 ], [ -87.076609, 31.411909 ], [ -87.077447, 31.412841 ], [ -87.078506, 31.413674 ], [ -87.079376, 31.414045 ], [ -87.079843, 31.415099 ], [ -87.079904, 31.41566 ], [ -87.080625, 31.416803 ], [ -87.081086, 31.417285 ], [ -87.081851, 31.417728 ], [ -87.082589, 31.419001 ], [ -87.083427, 31.4194 ], [ -87.085324, 31.420978 ], [ -87.085732, 31.421619 ], [ -87.102116, 31.421889 ], [ -87.101674, 31.423915 ], [ -87.108863, 31.427137 ], [ -87.109155, 31.430902 ], [ -87.108913, 31.432205 ], [ -87.108021, 31.433511 ], [ -87.091931, 31.444431 ], [ -87.091085, 31.444424 ], [ -87.090467, 31.444605 ], [ -87.088594, 31.444496 ], [ -87.087714, 31.444257 ], [ -87.086677, 31.444755 ], [ -87.085755, 31.444362 ], [ -87.083995, 31.443981 ], [ -87.082914, 31.444534 ], [ -87.082036, 31.444763 ], [ -87.0819, 31.445649 ], [ -87.081159, 31.446367 ], [ -87.081002, 31.446885 ], [ -87.080502, 31.446897 ], [ -87.080246, 31.447102 ], [ -87.079944, 31.447042 ], [ -87.079157, 31.447463 ], [ -87.077464, 31.447469 ], [ -87.07701, 31.447877 ], [ -87.07723, 31.448234 ], [ -87.077214, 31.448812 ], [ -87.076831, 31.449165 ], [ -87.076299, 31.449299 ], [ -87.074674, 31.451318 ], [ -87.073168, 31.451653 ], [ -87.072224, 31.451595 ], [ -87.071387, 31.452299 ], [ -87.069857, 31.45283 ], [ -87.096487, 31.457022 ], [ -87.093436, 31.458081 ], [ -87.091872, 31.459226 ], [ -87.089862, 31.46033 ], [ -87.088151, 31.461012 ], [ -87.086716, 31.461911 ], [ -87.084809, 31.462003 ], [ -87.079994, 31.463564 ], [ -87.07657, 31.464218 ], [ -87.074356, 31.465346 ], [ -87.072572, 31.465427 ], [ -87.071604, 31.465715 ], [ -87.070759, 31.466181 ], [ -87.070371, 31.466752 ], [ -87.069546, 31.467393 ], [ -87.067735, 31.469703 ], [ -87.063379, 31.469836 ], [ -87.061271, 31.470106 ], [ -87.061054, 31.470406 ], [ -87.0607, 31.471685 ], [ -87.05862, 31.473508 ], [ -87.058097, 31.474423 ], [ -87.05939, 31.475254 ], [ -87.062603, 31.477929 ], [ -87.06419, 31.478745 ], [ -87.072444, 31.480423 ], [ -87.075817, 31.481428 ], [ -87.085923, 31.485835 ], [ -87.112143, 31.495845 ], [ -87.116658, 31.496826 ], [ -87.117962, 31.496734 ], [ -87.119119, 31.496258 ], [ -87.122696, 31.502124 ], [ -87.124718, 31.502094 ], [ -87.125753, 31.502262 ], [ -87.12614, 31.50253 ], [ -87.126018, 31.503814 ], [ -87.124527, 31.505132 ], [ -87.124105, 31.506528 ], [ -87.123559, 31.506701 ], [ -87.12436, 31.514752 ], [ -87.124558, 31.515813 ], [ -87.125063, 31.517129 ], [ -87.125814, 31.517216 ], [ -87.130505, 31.516259 ], [ -87.131885, 31.515591 ], [ -87.133614, 31.51517 ], [ -87.135986, 31.515331 ], [ -87.136742, 31.514551 ], [ -87.137135, 31.513372 ], [ -87.14078, 31.511446 ], [ -87.141738, 31.511108 ], [ -87.145183, 31.51034 ], [ -87.14628, 31.510483 ], [ -87.148412, 31.510283 ], [ -87.149954, 31.510416 ], [ -87.151993, 31.509845 ], [ -87.151895, 31.513551 ], [ -87.152454, 31.51618 ], [ -87.150858, 31.518153 ], [ -87.150174, 31.520491 ], [ -87.150041, 31.52181 ], [ -87.149493, 31.522782 ], [ -87.149124, 31.527349 ], [ -87.149371, 31.529928 ], [ -87.151121, 31.532333 ], [ -87.152914, 31.53297 ], [ -87.153899, 31.53363 ], [ -87.156149, 31.534501 ], [ -87.15698, 31.534979 ], [ -87.158434, 31.536424 ], [ -87.159947, 31.538575 ], [ -87.161607, 31.539244 ], [ -87.162069, 31.53959 ], [ -87.16322, 31.539599 ], [ -87.163806, 31.539797 ], [ -87.164269, 31.540368 ], [ -87.164444, 31.541073 ], [ -87.165225, 31.542485 ], [ -87.165662, 31.542897 ], [ -87.165351, 31.544138 ], [ -87.164501, 31.544318 ], [ -87.163724, 31.544709 ], [ -87.160629, 31.547472 ], [ -87.159765, 31.548894 ], [ -87.159581, 31.550384 ], [ -87.158204, 31.549104 ], [ -87.156773, 31.548446 ], [ -87.153558, 31.545886 ], [ -87.152672, 31.545444 ], [ -87.146778, 31.543812 ], [ -87.145517, 31.54362 ], [ -87.14319, 31.543522 ], [ -87.142574, 31.543891 ], [ -87.141972, 31.543981 ], [ -87.141589, 31.544513 ], [ -87.140982, 31.543833 ], [ -87.140176, 31.542439 ], [ -87.138474, 31.541352 ], [ -87.137805, 31.540682 ], [ -87.13607, 31.538235 ], [ -87.133545, 31.535448 ], [ -87.132629, 31.534119 ], [ -87.130598, 31.533522 ], [ -87.129581, 31.533606 ], [ -87.12463, 31.534813 ], [ -87.121846, 31.5344 ], [ -87.12082, 31.534439 ], [ -87.112588, 31.536199 ], [ -87.108337, 31.538226 ], [ -87.107139, 31.538628 ], [ -87.105372, 31.538906 ], [ -87.102467, 31.540337 ], [ -87.101512, 31.540629 ], [ -87.09896, 31.540448 ], [ -87.09689, 31.539172 ], [ -87.096175, 31.538934 ], [ -87.088064, 31.538981 ], [ -87.087067, 31.538776 ], [ -87.084123, 31.537626 ], [ -87.082563, 31.537813 ], [ -87.083466, 31.539986 ], [ -87.084363, 31.541313 ], [ -87.084505, 31.541957 ], [ -87.084716, 31.545752 ], [ -87.083678, 31.547551 ], [ -87.085941, 31.548296 ], [ -87.087626, 31.548503 ], [ -87.091193, 31.549665 ], [ -87.096026, 31.549414 ], [ -87.098008, 31.550674 ], [ -87.100512, 31.550903 ], [ -87.101754, 31.551593 ], [ -87.102643, 31.552421 ], [ -87.104959, 31.553569 ], [ -87.105326, 31.55392 ], [ -87.105773, 31.554871 ], [ -87.106726, 31.555666 ], [ -87.107511, 31.556093 ], [ -87.108104, 31.556696 ], [ -87.109262, 31.557166 ], [ -87.110312, 31.558104 ], [ -87.111148, 31.558498 ], [ -87.112399, 31.558367 ], [ -87.114423, 31.558774 ], [ -87.115636, 31.55877 ], [ -87.117275, 31.559078 ], [ -87.118284, 31.559466 ], [ -87.119499, 31.559157 ], [ -87.121633, 31.558905 ], [ -87.123123, 31.559066 ], [ -87.124215, 31.559382 ], [ -87.126905, 31.560768 ], [ -87.129755, 31.562776 ], [ -87.130541, 31.561749 ], [ -87.131279, 31.561124 ], [ -87.13632, 31.559437 ], [ -87.138421, 31.559183 ], [ -87.147042, 31.559183 ], [ -87.148537, 31.558883 ], [ -87.155547, 31.554691 ], [ -87.157462, 31.554048 ], [ -87.160096, 31.553688 ], [ -87.160887, 31.557306 ], [ -87.160782, 31.55943 ], [ -87.158925, 31.56614 ], [ -87.153825, 31.577805 ], [ -87.152341, 31.579871 ], [ -87.145126, 31.587168 ], [ -87.144205, 31.588658 ], [ -87.141064, 31.600965 ], [ -87.140545, 31.608316 ], [ -87.140044, 31.609348 ], [ -87.138009, 31.611685 ], [ -87.137371, 31.612872 ], [ -87.137278, 31.613547 ], [ -87.1374, 31.614446 ], [ -87.139476, 31.622646 ], [ -87.139574, 31.624784 ], [ -87.138303, 31.629655 ], [ -87.137558, 31.633861 ], [ -87.136879, 31.636405 ], [ -87.136198, 31.641232 ], [ -87.135652, 31.641978 ], [ -87.135051, 31.642417 ], [ -87.132666, 31.643145 ], [ -87.133142, 31.657931 ], [ -87.161902, 31.654982 ], [ -87.162415, 31.655497 ], [ -87.163353, 31.656052 ], [ -87.166918, 31.656889 ], [ -87.167767, 31.657548 ], [ -87.168743, 31.660035 ], [ -87.16837, 31.661817 ], [ -87.167934, 31.66222 ], [ -87.168099, 31.663229 ], [ -87.167353, 31.664044 ], [ -87.166025, 31.664589 ], [ -87.165233, 31.666155 ], [ -87.163007, 31.667029 ], [ -87.162801, 31.667244 ], [ -87.162695, 31.667929 ], [ -87.162477, 31.668102 ], [ -87.161485, 31.668063 ], [ -87.160985, 31.668347 ], [ -87.160811, 31.668832 ], [ -87.160921, 31.67062 ], [ -87.160512, 31.672374 ], [ -87.159031, 31.674071 ], [ -87.158084, 31.67411 ], [ -87.158115, 31.674785 ], [ -87.158593, 31.675687 ], [ -87.156072, 31.676339 ], [ -87.155294, 31.676728 ], [ -87.152719, 31.679045 ], [ -87.150486, 31.681597 ], [ -87.149579, 31.684755 ], [ -87.148797, 31.685974 ], [ -87.148734, 31.688817 ], [ -87.148511, 31.690299 ], [ -87.149236, 31.691807 ], [ -87.149737, 31.692221 ], [ -87.150211, 31.692374 ], [ -87.150882, 31.693249 ], [ -87.152369, 31.693497 ], [ -87.151267, 31.69493 ], [ -87.151177, 31.697218 ], [ -87.152476, 31.697313 ], [ -87.153234, 31.699463 ], [ -87.150791, 31.698025 ], [ -87.150228, 31.698048 ], [ -87.149531, 31.698368 ], [ -87.148888, 31.698345 ], [ -87.148432, 31.697978 ], [ -87.147709, 31.697726 ], [ -87.146422, 31.697795 ], [ -87.145377, 31.697405 ], [ -87.144948, 31.697496 ], [ -87.14476, 31.697702 ], [ -87.144921, 31.698688 ], [ -87.144251, 31.698963 ], [ -87.144331, 31.699627 ], [ -87.144116, 31.700383 ], [ -87.143472, 31.701048 ], [ -87.142104, 31.703477 ], [ -87.141836, 31.703591 ], [ -87.140925, 31.703362 ], [ -87.140469, 31.703476 ], [ -87.138619, 31.704277 ], [ -87.13819, 31.704942 ], [ -87.137171, 31.704873 ], [ -87.136876, 31.70517 ], [ -87.136635, 31.70517 ], [ -87.136287, 31.704781 ], [ -87.135697, 31.704643 ], [ -87.134223, 31.704688 ], [ -87.132212, 31.705008 ], [ -87.130818, 31.704824 ], [ -87.130388, 31.705603 ], [ -87.129182, 31.705786 ], [ -87.127091, 31.705716 ], [ -87.126555, 31.705899 ], [ -87.126125, 31.706701 ], [ -87.125857, 31.707984 ], [ -87.125321, 31.709084 ], [ -87.123682, 31.710528 ], [ -87.120359, 31.712203 ], [ -87.12036, 31.712638 ], [ -87.121218, 31.713807 ], [ -87.121166, 31.714105 ], [ -87.118806, 31.715251 ], [ -87.117708, 31.716237 ], [ -87.116797, 31.716467 ], [ -87.116314, 31.716834 ], [ -87.115322, 31.717041 ], [ -87.113956, 31.717912 ], [ -87.113447, 31.718829 ], [ -87.113206, 31.719654 ], [ -87.113554, 31.72002 ], [ -87.1135, 31.720433 ], [ -87.113099, 31.721075 ], [ -87.112804, 31.721121 ], [ -87.112455, 31.720617 ], [ -87.11181, 31.720571 ], [ -87.111435, 31.721144 ], [ -87.111462, 31.721442 ], [ -87.111757, 31.721763 ], [ -87.111543, 31.722084 ], [ -87.110416, 31.722107 ], [ -87.10988, 31.722314 ], [ -87.109532, 31.722657 ], [ -87.109317, 31.723184 ], [ -87.107252, 31.723094 ], [ -87.105375, 31.723667 ], [ -87.103578, 31.724424 ], [ -87.102961, 31.724906 ], [ -87.103042, 31.725479 ], [ -87.102291, 31.725845 ], [ -87.101538, 31.726905 ], [ -87.097966, 31.727435 ], [ -87.091166, 31.727668 ], [ -87.089938, 31.727517 ], [ -87.089093, 31.72682 ], [ -87.088207, 31.724562 ], [ -87.087666, 31.723883 ], [ -87.086306, 31.722977 ], [ -87.084829, 31.722342 ], [ -87.083401, 31.722163 ], [ -87.078484, 31.722258 ], [ -87.074292, 31.721871 ], [ -87.077018, 31.719337 ], [ -87.078061, 31.718014 ], [ -87.07851, 31.715385 ], [ -87.078506, 31.713879 ], [ -87.07772, 31.710133 ], [ -87.077046, 31.708511 ], [ -87.075862, 31.706935 ], [ -87.075618, 31.705607 ], [ -87.07519, 31.705239 ], [ -87.073582, 31.704916 ], [ -87.073019, 31.70464 ], [ -87.0716, 31.703444 ], [ -87.070153, 31.702755 ], [ -87.069831, 31.70248 ], [ -87.06943, 31.701653 ], [ -87.068091, 31.70094 ], [ -87.067663, 31.700091 ], [ -87.067584, 31.699149 ], [ -87.067236, 31.698299 ], [ -87.066486, 31.697541 ], [ -87.06603, 31.697449 ], [ -87.061396, 31.697488 ], [ -87.06109, 31.704063 ], [ -87.060954, 31.704848 ], [ -87.060497, 31.705909 ], [ -87.059539, 31.70712 ], [ -87.05629, 31.710053 ], [ -87.051453, 31.717944 ], [ -87.050785, 31.718595 ], [ -87.049855, 31.718803 ], [ -87.048903, 31.719321 ], [ -87.04564, 31.717007 ], [ -87.044354, 31.716442 ], [ -87.040494, 31.715991 ], [ -87.02799, 31.713087 ], [ -87.025316, 31.712859 ], [ -87.024453, 31.712553 ], [ -87.024141, 31.712559 ], [ -87.021726, 31.713762 ], [ -87.019431, 31.714214 ], [ -87.016872, 31.713746 ], [ -87.015664, 31.713899 ], [ -87.012351, 31.713444 ], [ -87.008496, 31.714384 ], [ -87.00447, 31.714859 ], [ -87.003958, 31.715017 ], [ -87.003073, 31.715713 ], [ -87.001619, 31.716428 ], [ -87.002251, 31.715113 ], [ -87.002453, 31.711764 ], [ -87.003309, 31.709269 ], [ -87.002779, 31.704444 ], [ -87.003081, 31.703525 ], [ -87.004436, 31.701387 ], [ -87.004543, 31.700728 ], [ -87.00435, 31.699867 ], [ -87.003429, 31.698814 ], [ -87.001712, 31.697999 ], [ -87.000455, 31.69778 ], [ -86.995523, 31.697826 ], [ -86.993897, 31.697642 ], [ -86.990544, 31.696721 ], [ -86.989663, 31.696264 ], [ -86.988696, 31.695488 ], [ -86.988688, 31.694771 ], [ -86.989155, 31.693344 ], [ -86.989227, 31.691088 ], [ -86.989795, 31.690016 ], [ -86.989693, 31.6893 ], [ -86.988434, 31.687242 ], [ -86.988649, 31.685357 ], [ -86.988529, 31.684409 ], [ -86.989546, 31.68272 ], [ -86.989546, 31.681813 ], [ -86.988888, 31.680938 ], [ -86.988804, 31.679053 ], [ -86.988266, 31.677724 ], [ -86.98768, 31.676786 ], [ -86.987608, 31.676251 ], [ -86.987943, 31.674953 ], [ -86.987824, 31.67417 ], [ -86.987393, 31.673479 ], [ -86.987441, 31.672192 ], [ -86.988015, 31.668947 ], [ -86.987967, 31.667978 ], [ -86.987465, 31.667381 ], [ -86.98701, 31.667216 ], [ -86.983386, 31.666567 ], [ -86.98274, 31.665805 ], [ -86.982668, 31.665156 ], [ -86.98299, 31.664423 ], [ -86.982908, 31.663464 ], [ -86.982531, 31.663304 ], [ -86.981218, 31.663444 ], [ -86.980521, 31.662623 ], [ -86.979205, 31.661892 ], [ -86.978588, 31.661115 ], [ -86.977622, 31.660453 ], [ -86.977408, 31.659904 ], [ -86.976603, 31.659632 ], [ -86.976281, 31.659289 ], [ -86.976199, 31.658284 ], [ -86.975796, 31.65755 ], [ -86.973999, 31.65721 ], [ -86.972524, 31.657169 ], [ -86.970647, 31.656874 ], [ -86.969976, 31.656533 ], [ -86.969735, 31.65619 ], [ -86.969007, 31.652944 ], [ -86.968122, 31.652533 ], [ -86.969088, 31.65163 ], [ -86.970278, 31.64985 ], [ -86.971718, 31.648778 ], [ -86.971289, 31.648274 ], [ -86.971074, 31.646945 ], [ -86.970804, 31.64628 ], [ -86.96799, 31.6436 ], [ -86.965898, 31.63959 ], [ -86.964505, 31.638032 ], [ -86.964746, 31.637162 ], [ -86.964183, 31.63652 ], [ -86.964183, 31.635833 ], [ -86.964879, 31.635237 ], [ -86.965334, 31.63432 ], [ -86.96761, 31.633242 ], [ -86.966887, 31.631042 ], [ -86.967636, 31.630217 ], [ -86.967797, 31.629209 ], [ -86.968599, 31.627238 ], [ -86.968251, 31.626481 ], [ -86.966724, 31.626046 ], [ -86.965318, 31.625159 ], [ -86.964849, 31.624458 ], [ -86.964715, 31.623908 ], [ -86.964527, 31.622418 ], [ -86.964741, 31.621478 ], [ -86.965062, 31.620653 ], [ -86.965544, 31.619966 ], [ -86.96632, 31.619255 ], [ -86.966454, 31.618774 ], [ -86.9664, 31.615657 ], [ -86.966078, 31.615015 ], [ -86.965649, 31.614649 ], [ -86.9653, 31.614488 ], [ -86.964309, 31.614512 ], [ -86.963747, 31.614283 ], [ -86.963158, 31.613733 ], [ -86.962863, 31.61316 ], [ -86.962863, 31.61151 ], [ -86.961068, 31.608256 ], [ -86.959836, 31.607019 ], [ -86.959434, 31.606011 ], [ -86.959193, 31.605759 ], [ -86.958309, 31.605324 ], [ -86.956461, 31.603651 ], [ -86.956193, 31.602597 ], [ -86.955738, 31.601772 ], [ -86.955121, 31.599297 ], [ -86.95405, 31.598907 ], [ -86.953702, 31.598426 ], [ -86.953434, 31.598357 ], [ -86.952471, 31.598358 ], [ -86.952096, 31.598106 ], [ -86.951052, 31.598404 ], [ -86.950944, 31.59767 ], [ -86.949847, 31.597074 ], [ -86.949552, 31.597029 ], [ -86.949258, 31.597304 ], [ -86.948749, 31.59735 ], [ -86.948481, 31.59712 ], [ -86.948481, 31.596731 ], [ -86.948106, 31.596364 ], [ -86.946634, 31.59586 ], [ -86.946419, 31.595631 ], [ -86.946418, 31.594714 ], [ -86.945829, 31.5946 ], [ -86.945535, 31.594714 ], [ -86.945722, 31.595402 ], [ -86.94516, 31.595562 ], [ -86.942268, 31.594439 ], [ -86.94184, 31.593798 ], [ -86.941599, 31.592537 ], [ -86.941117, 31.592881 ], [ -86.940608, 31.592973 ], [ -86.940126, 31.592675 ], [ -86.940448, 31.591827 ], [ -86.940448, 31.5913 ], [ -86.938707, 31.589146 ], [ -86.938306, 31.588825 ], [ -86.936994, 31.588733 ], [ -86.936833, 31.588596 ], [ -86.936833, 31.588343 ], [ -86.937342, 31.587587 ], [ -86.937235, 31.587358 ], [ -86.936352, 31.586877 ], [ -86.935602, 31.586212 ], [ -86.93512, 31.585731 ], [ -86.934799, 31.584974 ], [ -86.933942, 31.583943 ], [ -86.933246, 31.583554 ], [ -86.932818, 31.581743 ], [ -86.932363, 31.581583 ], [ -86.930462, 31.581789 ], [ -86.929552, 31.581514 ], [ -86.929124, 31.581628 ], [ -86.928856, 31.582728 ], [ -86.927464, 31.583003 ], [ -86.927089, 31.583324 ], [ -86.927892, 31.583897 ], [ -86.927973, 31.584195 ], [ -86.926527, 31.584264 ], [ -86.925965, 31.584722 ], [ -86.924492, 31.584905 ], [ -86.924332, 31.585134 ], [ -86.924465, 31.585913 ], [ -86.924037, 31.586257 ], [ -86.924144, 31.586395 ], [ -86.924867, 31.586693 ], [ -86.925938, 31.586784 ], [ -86.926286, 31.586991 ], [ -86.925964, 31.588091 ], [ -86.925964, 31.588983 ], [ -86.923528, 31.588709 ], [ -86.918866, 31.587288 ], [ -86.915785, 31.58669 ], [ -86.915518, 31.586736 ], [ -86.915302, 31.587011 ], [ -86.915275, 31.587974 ], [ -86.914792, 31.588455 ], [ -86.914749, 31.587057 ], [ -86.914983, 31.585476 ], [ -86.913848, 31.584857 ], [ -86.912904, 31.58465 ], [ -86.910664, 31.585108 ], [ -86.909827, 31.584994 ], [ -86.90891, 31.5852 ], [ -86.906804, 31.584375 ], [ -86.906502, 31.58355 ], [ -86.902781, 31.583984 ], [ -86.901523, 31.583915 ], [ -86.89898, 31.583319 ], [ -86.896142, 31.583318 ], [ -86.895285, 31.584188 ], [ -86.894883, 31.585792 ], [ -86.894882, 31.586824 ], [ -86.893731, 31.586273 ], [ -86.890065, 31.583797 ], [ -86.888647, 31.582192 ], [ -86.886855, 31.579648 ], [ -86.884794, 31.57944 ], [ -86.882866, 31.579715 ], [ -86.880617, 31.579095 ], [ -86.877726, 31.578796 ], [ -86.875933, 31.577947 ], [ -86.874545, 31.577844 ], [ -86.874308, 31.576755 ], [ -86.874441, 31.575472 ], [ -86.8742, 31.574738 ], [ -86.87533, 31.57389 ], [ -86.875331, 31.5735 ], [ -86.874038, 31.57302 ], [ -86.874118, 31.57247 ], [ -86.874563, 31.572103 ], [ -86.874537, 31.571851 ], [ -86.873903, 31.570981 ], [ -86.87467, 31.570522 ], [ -86.874683, 31.570087 ], [ -86.873715, 31.569537 ], [ -86.873607, 31.568942 ], [ -86.873955, 31.568391 ], [ -86.874549, 31.567956 ], [ -86.874642, 31.566947 ], [ -86.874462, 31.566764 ], [ -86.873204, 31.566604 ], [ -86.87283, 31.566375 ], [ -86.872294, 31.566307 ], [ -86.871598, 31.566605 ], [ -86.871278, 31.567361 ], [ -86.870448, 31.567797 ], [ -86.870047, 31.567591 ], [ -86.870287, 31.566766 ], [ -86.869591, 31.566193 ], [ -86.869591, 31.565827 ], [ -86.869697, 31.564979 ], [ -86.870205, 31.564428 ], [ -86.870098, 31.564199 ], [ -86.869322, 31.563741 ], [ -86.868732, 31.563123 ], [ -86.868705, 31.562618 ], [ -86.868973, 31.56216 ], [ -86.86841, 31.561679 ], [ -86.867982, 31.560465 ], [ -86.868276, 31.559754 ], [ -86.868757, 31.559479 ], [ -86.868784, 31.559318 ], [ -86.868275, 31.559089 ], [ -86.867523, 31.558289 ], [ -86.867123, 31.555324 ], [ -86.866668, 31.555056 ], [ -86.866589, 31.554256 ], [ -86.865655, 31.553776 ], [ -86.865588, 31.553602 ], [ -86.866129, 31.553044 ], [ -86.866575, 31.553021 ], [ -86.86712, 31.55364 ], [ -86.86747, 31.553679 ], [ -86.868244, 31.552743 ], [ -86.867044, 31.552551 ], [ -86.866826, 31.551203 ], [ -86.866579, 31.550817 ], [ -86.865913, 31.55033 ], [ -86.86589, 31.550122 ], [ -86.866591, 31.549625 ], [ -86.865268, 31.549425 ], [ -86.865059, 31.549056 ], [ -86.865016, 31.548061 ], [ -86.866302, 31.546981 ], [ -86.866453, 31.546597 ], [ -86.866254, 31.54642 ], [ -86.865406, 31.546393 ], [ -86.864863, 31.546121 ], [ -86.864379, 31.545715 ], [ -86.86414, 31.544934 ], [ -86.863151, 31.543855 ], [ -86.862644, 31.543786 ], [ -86.861254, 31.544219 ], [ -86.86104, 31.54415 ], [ -86.861013, 31.543623 ], [ -86.859836, 31.543371 ], [ -86.85922, 31.543073 ], [ -86.858658, 31.542478 ], [ -86.858497, 31.542088 ], [ -86.859032, 31.540829 ], [ -86.858362, 31.540073 ], [ -86.858335, 31.539431 ], [ -86.857961, 31.539385 ], [ -86.857158, 31.539867 ], [ -86.856463, 31.539729 ], [ -86.855418, 31.538378 ], [ -86.854214, 31.538011 ], [ -86.852528, 31.53721 ], [ -86.852421, 31.537049 ], [ -86.852528, 31.53627 ], [ -86.850628, 31.535698 ], [ -86.849825, 31.534988 ], [ -86.84953, 31.534919 ], [ -86.848888, 31.534919 ], [ -86.848193, 31.535492 ], [ -86.846828, 31.53602 ], [ -86.84533, 31.535745 ], [ -86.843777, 31.535814 ], [ -86.84351, 31.535654 ], [ -86.843456, 31.535173 ], [ -86.842706, 31.5335 ], [ -86.842144, 31.533019 ], [ -86.842331, 31.532308 ], [ -86.841769, 31.531116 ], [ -86.840672, 31.530475 ], [ -86.840404, 31.5302 ], [ -86.840297, 31.52965 ], [ -86.840003, 31.529444 ], [ -86.839467, 31.527679 ], [ -86.839253, 31.52635 ], [ -86.839386, 31.525204 ], [ -86.838022, 31.525204 ], [ -86.83845, 31.5247 ], [ -86.838476, 31.524242 ], [ -86.838102, 31.524013 ], [ -86.838048, 31.523623 ], [ -86.838449, 31.522981 ], [ -86.837272, 31.521698 ], [ -86.837245, 31.521332 ], [ -86.837378, 31.521171 ], [ -86.838609, 31.520827 ], [ -86.838716, 31.520575 ], [ -86.838475, 31.520208 ], [ -86.837699, 31.519681 ], [ -86.835933, 31.519223 ], [ -86.835024, 31.518696 ], [ -86.834489, 31.518101 ], [ -86.834248, 31.518032 ], [ -86.833445, 31.518536 ], [ -86.833338, 31.518192 ], [ -86.833713, 31.517322 ], [ -86.833445, 31.517253 ], [ -86.832803, 31.517826 ], [ -86.832455, 31.517826 ], [ -86.832536, 31.517459 ], [ -86.83299, 31.516932 ], [ -86.832963, 31.516542 ], [ -86.832669, 31.516267 ], [ -86.832348, 31.516313 ], [ -86.831867, 31.517047 ], [ -86.831118, 31.517322 ], [ -86.829673, 31.516772 ], [ -86.829646, 31.515787 ], [ -86.829512, 31.51558 ], [ -86.828656, 31.51542 ], [ -86.828041, 31.51636 ], [ -86.827051, 31.516887 ], [ -86.826944, 31.51636 ], [ -86.827372, 31.515649 ], [ -86.827265, 31.515374 ], [ -86.826195, 31.515077 ], [ -86.825928, 31.516039 ], [ -86.824482, 31.51565 ], [ -86.823733, 31.514664 ], [ -86.823706, 31.513977 ], [ -86.823974, 31.513427 ], [ -86.824027, 31.512877 ], [ -86.823358, 31.512418 ], [ -86.822476, 31.512258 ], [ -86.821914, 31.511937 ], [ -86.821807, 31.511296 ], [ -86.822181, 31.510883 ], [ -86.822181, 31.510516 ], [ -86.8217, 31.51015 ], [ -86.820442, 31.510241 ], [ -86.819827, 31.509943 ], [ -86.819586, 31.509646 ], [ -86.819827, 31.508568 ], [ -86.819131, 31.507424 ], [ -86.819131, 31.507057 ], [ -86.819399, 31.506759 ], [ -86.819426, 31.506415 ], [ -86.819078, 31.505957 ], [ -86.814156, 31.504307 ], [ -86.813541, 31.503917 ], [ -86.813514, 31.503734 ], [ -86.812846, 31.503436 ], [ -86.812418, 31.503574 ], [ -86.812177, 31.503917 ], [ -86.810331, 31.507217 ], [ -86.809502, 31.510287 ], [ -86.809127, 31.510952 ], [ -86.808325, 31.511342 ], [ -86.807924, 31.511365 ], [ -86.806506, 31.510998 ], [ -86.805677, 31.510539 ], [ -86.804821, 31.509531 ], [ -86.804687, 31.508706 ], [ -86.805008, 31.507606 ], [ -86.804982, 31.506988 ], [ -86.803671, 31.505292 ], [ -86.803671, 31.504559 ], [ -86.804046, 31.503367 ], [ -86.805116, 31.501534 ], [ -86.806319, 31.49887 ], [ -86.80656, 31.497586 ], [ -86.806453, 31.495363 ], [ -86.805971, 31.494607 ], [ -86.80557, 31.494332 ], [ -86.804848, 31.4944 ], [ -86.804286, 31.494653 ], [ -86.803617, 31.495317 ], [ -86.802815, 31.496463 ], [ -86.802093, 31.496669 ], [ -86.800755, 31.496646 ], [ -86.799472, 31.496348 ], [ -86.798268, 31.495706 ], [ -86.797653, 31.494766 ], [ -86.797226, 31.493162 ], [ -86.79661, 31.492589 ], [ -86.79645, 31.491764 ], [ -86.79728, 31.488968 ], [ -86.797521, 31.487066 ], [ -86.797815, 31.486333 ], [ -86.797815, 31.485485 ], [ -86.797441, 31.484408 ], [ -86.797414, 31.483468 ], [ -86.797762, 31.482597 ], [ -86.797789, 31.481772 ], [ -86.7968, 31.478655 ], [ -86.796372, 31.477899 ], [ -86.79426, 31.476202 ], [ -86.793672, 31.474989 ], [ -86.793352, 31.472834 ], [ -86.793673, 31.47123 ], [ -86.793192, 31.470222 ], [ -86.791373, 31.467815 ], [ -86.79132, 31.467036 ], [ -86.791775, 31.465752 ], [ -86.791747, 31.465119 ], [ -86.790865, 31.464329 ], [ -86.788698, 31.463596 ], [ -86.787788, 31.463605 ], [ -86.786717, 31.464006 ], [ -86.783721, 31.464724 ], [ -86.781606, 31.465664 ], [ -86.781232, 31.465553 ], [ -86.780724, 31.465171 ], [ -86.77885, 31.462684 ], [ -86.775881, 31.460045 ], [ -86.775372, 31.459367 ], [ -86.775372, 31.458733 ], [ -86.77556, 31.458485 ], [ -86.775879, 31.458259 ], [ -86.776414, 31.458173 ], [ -86.777937, 31.458948 ], [ -86.779486, 31.459262 ], [ -86.780261, 31.45927 ], [ -86.782211, 31.458832 ], [ -86.784909, 31.457535 ], [ -86.786325, 31.456432 ], [ -86.786752, 31.455572 ], [ -86.786886, 31.454893 ], [ -86.786888, 31.453592 ], [ -86.786656, 31.452528 ], [ -86.78555, 31.45035 ], [ -86.784481, 31.449135 ], [ -86.784294, 31.448379 ], [ -86.784401, 31.44799 ], [ -86.784989, 31.447394 ], [ -86.785711, 31.447119 ], [ -86.786674, 31.446432 ], [ -86.787315, 31.445125 ], [ -86.788065, 31.443018 ], [ -86.788252, 31.440497 ], [ -86.787985, 31.439557 ], [ -86.78721, 31.439076 ], [ -86.786729, 31.439099 ], [ -86.78558, 31.43958 ], [ -86.784135, 31.439809 ], [ -86.78336, 31.440175 ], [ -86.783199, 31.440656 ], [ -86.782905, 31.440908 ], [ -86.782745, 31.44265 ], [ -86.781355, 31.444368 ], [ -86.779083, 31.445032 ], [ -86.777638, 31.444733 ], [ -86.776649, 31.444344 ], [ -86.776088, 31.443748 ], [ -86.775981, 31.44322 ], [ -86.776223, 31.441136 ], [ -86.775583, 31.437331 ], [ -86.775583, 31.43575 ], [ -86.774862, 31.434971 ], [ -86.773152, 31.433962 ], [ -86.771362, 31.432563 ], [ -86.769331, 31.431967 ], [ -86.768636, 31.432035 ], [ -86.768208, 31.432264 ], [ -86.768181, 31.432562 ], [ -86.768422, 31.433089 ], [ -86.768956, 31.433525 ], [ -86.769998, 31.433984 ], [ -86.771361, 31.43419 ], [ -86.772617, 31.43497 ], [ -86.772643, 31.436047 ], [ -86.77144, 31.436734 ], [ -86.770718, 31.436871 ], [ -86.769382, 31.436665 ], [ -86.767458, 31.435587 ], [ -86.766416, 31.43467 ], [ -86.765722, 31.433317 ], [ -86.765268, 31.43279 ], [ -86.764066, 31.432125 ], [ -86.762783, 31.431987 ], [ -86.76019, 31.432101 ], [ -86.757705, 31.431435 ], [ -86.755861, 31.431274 ], [ -86.755567, 31.43109 ], [ -86.755407, 31.430746 ], [ -86.754739, 31.428821 ], [ -86.754258, 31.428592 ], [ -86.753804, 31.428568 ], [ -86.753189, 31.428843 ], [ -86.752734, 31.429714 ], [ -86.752012, 31.430286 ], [ -86.751531, 31.430378 ], [ -86.751103, 31.430217 ], [ -86.750596, 31.429667 ], [ -86.750265, 31.428727 ], [ -86.749683, 31.42859 ], [ -86.748107, 31.427032 ], [ -86.747572, 31.425703 ], [ -86.746395, 31.424856 ], [ -86.744283, 31.423871 ], [ -86.740192, 31.420229 ], [ -86.739791, 31.419679 ], [ -86.739469, 31.417525 ], [ -86.739015, 31.416402 ], [ -86.737705, 31.415761 ], [ -86.734418, 31.415006 ], [ -86.733643, 31.414686 ], [ -86.732866, 31.414182 ], [ -86.730476, 31.411974 ], [ -86.730393, 31.411607 ], [ -86.730577, 31.411031 ], [ -86.731029, 31.410938 ], [ -86.732145, 31.411163 ], [ -86.732384, 31.41107 ], [ -86.732701, 31.410541 ], [ -86.732722, 31.409781 ], [ -86.7299, 31.408304 ], [ -86.729788, 31.407609 ], [ -86.730111, 31.407079 ], [ -86.730164, 31.406575 ], [ -86.72979, 31.405635 ], [ -86.729628, 31.403023 ], [ -86.729521, 31.402633 ], [ -86.72912, 31.402175 ], [ -86.728425, 31.401969 ], [ -86.727704, 31.401969 ], [ -86.724097, 31.402497 ], [ -86.722547, 31.401993 ], [ -86.72212, 31.401512 ], [ -86.721665, 31.400573 ], [ -86.721798, 31.400206 ], [ -86.72276, 31.399358 ], [ -86.725431, 31.397913 ], [ -86.725992, 31.397111 ], [ -86.726205, 31.396034 ], [ -86.726097, 31.393788 ], [ -86.725803, 31.392711 ], [ -86.72476, 31.390029 ], [ -86.723236, 31.387005 ], [ -86.723208, 31.386409 ], [ -86.723742, 31.385973 ], [ -86.724116, 31.38595 ], [ -86.724972, 31.386248 ], [ -86.726228, 31.387462 ], [ -86.726763, 31.387622 ], [ -86.72711, 31.387485 ], [ -86.727804, 31.386041 ], [ -86.728097, 31.384895 ], [ -86.728097, 31.383818 ], [ -86.727748, 31.382718 ], [ -86.726572, 31.380976 ], [ -86.726412, 31.380449 ], [ -86.726518, 31.38006 ], [ -86.726865, 31.379717 ], [ -86.729029, 31.379624 ], [ -86.729964, 31.379211 ], [ -86.730444, 31.37857 ], [ -86.730337, 31.377905 ], [ -86.726303, 31.375167 ], [ -86.726114, 31.374304 ], [ -86.726434, 31.372998 ], [ -86.727449, 31.371164 ], [ -86.727448, 31.370385 ], [ -86.727074, 31.369858 ], [ -86.725605, 31.368529 ], [ -86.724615, 31.36594 ], [ -86.724054, 31.363167 ], [ -86.72392, 31.362869 ], [ -86.723012, 31.362021 ], [ -86.723758, 31.359523 ], [ -86.724479, 31.358125 ], [ -86.725012, 31.35448 ], [ -86.726026, 31.352647 ], [ -86.726052, 31.352326 ], [ -86.725598, 31.351799 ], [ -86.725278, 31.351684 ], [ -86.723435, 31.351731 ], [ -86.7221, 31.352396 ], [ -86.7217, 31.352923 ], [ -86.72162, 31.35384 ], [ -86.721086, 31.353977 ], [ -86.72007, 31.353313 ], [ -86.719349, 31.352534 ], [ -86.717906, 31.351801 ], [ -86.717025, 31.351893 ], [ -86.71553, 31.352718 ], [ -86.714782, 31.352604 ], [ -86.714275, 31.352031 ], [ -86.714167, 31.350771 ], [ -86.713794, 31.350313 ], [ -86.710936, 31.349672 ], [ -86.709708, 31.349901 ], [ -86.708427, 31.353728 ], [ -86.707652, 31.35382 ], [ -86.706317, 31.353041 ], [ -86.70597, 31.352583 ], [ -86.705676, 31.35201 ], [ -86.705675, 31.348687 ], [ -86.705862, 31.34816 ], [ -86.70677, 31.347037 ], [ -86.706716, 31.346578 ], [ -86.706102, 31.346166 ], [ -86.702791, 31.345387 ], [ -86.701402, 31.344333 ], [ -86.700147, 31.343073 ], [ -86.699693, 31.342546 ], [ -86.699586, 31.341996 ], [ -86.699506, 31.340804 ], [ -86.699746, 31.340093 ], [ -86.700867, 31.338076 ], [ -86.701642, 31.337503 ], [ -86.701139, 31.324358 ], [ -86.70113, 31.315663 ], [ -86.704306, 31.313394 ], [ -86.70524, 31.311812 ], [ -86.705988, 31.311262 ], [ -86.707509, 31.310597 ], [ -86.708363, 31.309589 ], [ -86.708763, 31.309474 ], [ -86.710659, 31.309543 ], [ -86.710739, 31.309864 ], [ -86.712447, 31.311582 ], [ -86.713462, 31.312109 ], [ -86.715891, 31.312773 ], [ -86.716505, 31.313323 ], [ -86.716452, 31.314011 ], [ -86.715785, 31.314882 ], [ -86.715892, 31.315134 ], [ -86.716826, 31.315661 ], [ -86.717253, 31.316142 ], [ -86.717334, 31.317563 ], [ -86.717494, 31.318021 ], [ -86.718215, 31.318731 ], [ -86.719176, 31.31864 ], [ -86.719683, 31.318387 ], [ -86.721927, 31.318593 ], [ -86.722942, 31.319646 ], [ -86.723632, 31.319873 ], [ -86.724667, 31.320693 ], [ -86.725384, 31.320805 ], [ -86.726101, 31.321329 ], [ -86.726392, 31.321762 ], [ -86.727295, 31.322057 ], [ -86.727905, 31.322673 ], [ -86.731305, 31.323303 ], [ -86.731889, 31.323164 ], [ -86.732367, 31.32268 ], [ -86.732924, 31.322586 ], [ -86.734253, 31.322788 ], [ -86.73474, 31.323031 ], [ -86.735502, 31.321827 ], [ -86.737666, 31.322129 ], [ -86.740766, 31.321671 ], [ -86.742346, 31.322446 ], [ -86.743551, 31.322495 ], [ -86.744008, 31.322367 ], [ -86.743534, 31.320316 ], [ -86.745215, 31.319828 ], [ -86.747161, 31.318628 ], [ -86.749601, 31.317946 ], [ -86.752166, 31.316634 ], [ -86.753563, 31.315654 ], [ -86.756581, 31.313168 ], [ -86.758881, 31.309562 ], [ -86.760044, 31.308384 ], [ -86.7599, 31.306236 ], [ -86.757967, 31.301655 ], [ -86.757431, 31.299153 ], [ -86.757386, 31.297701 ], [ -86.757782, 31.29471 ], [ -86.759516, 31.292024 ], [ -86.764082, 31.288519 ], [ -86.764349, 31.28813 ], [ -86.76467, 31.285632 ], [ -86.764725, 31.282699 ], [ -86.764299, 31.281438 ], [ -86.76438, 31.279192 ], [ -86.764167, 31.278505 ], [ -86.763286, 31.27745 ], [ -86.762566, 31.276052 ], [ -86.7611, 31.274378 ], [ -86.761207, 31.272934 ], [ -86.761101, 31.272453 ], [ -86.75913, 31.270891 ], [ -86.75891, 31.269476 ], [ -86.758543, 31.268805 ], [ -86.75724, 31.26932 ], [ -86.756288, 31.269942 ], [ -86.755509, 31.270713 ], [ -86.752536, 31.276337 ], [ -86.750382, 31.278805 ], [ -86.749075, 31.279853 ], [ -86.744701, 31.282557 ], [ -86.744052, 31.283418 ], [ -86.743035, 31.285282 ], [ -86.739785, 31.287592 ], [ -86.738687, 31.288859 ], [ -86.737647, 31.287869 ], [ -86.736666, 31.287759 ], [ -86.735872, 31.288084 ], [ -86.735231, 31.288084 ], [ -86.73331, 31.287604 ], [ -86.732642, 31.287581 ], [ -86.730588, 31.288338 ], [ -86.727413, 31.290998 ], [ -86.726266, 31.291319 ], [ -86.725625, 31.291158 ], [ -86.725038, 31.290425 ], [ -86.725438, 31.28866 ], [ -86.725064, 31.287446 ], [ -86.726024, 31.287079 ], [ -86.727652, 31.286872 ], [ -86.727999, 31.286666 ], [ -86.728212, 31.286299 ], [ -86.728212, 31.285544 ], [ -86.727464, 31.28426 ], [ -86.72637, 31.283321 ], [ -86.724475, 31.282313 ], [ -86.724368, 31.282153 ], [ -86.724768, 31.281007 ], [ -86.724233, 31.279723 ], [ -86.723565, 31.278876 ], [ -86.722657, 31.278234 ], [ -86.720976, 31.277983 ], [ -86.720736, 31.277593 ], [ -86.720843, 31.27702 ], [ -86.724043, 31.273856 ], [ -86.723189, 31.273238 ], [ -86.723029, 31.272917 ], [ -86.722939, 31.27117 ], [ -86.723147, 31.270296 ], [ -86.722664, 31.269836 ], [ -86.721483, 31.269146 ], [ -86.721505, 31.268341 ], [ -86.721096, 31.266731 ], [ -86.720828, 31.266524 ], [ -86.720245, 31.265506 ], [ -86.721364, 31.264414 ], [ -86.727037, 31.261524 ], [ -86.729424, 31.260955 ], [ -86.73146, 31.261173 ], [ -86.732221, 31.261082 ], [ -86.734251, 31.260501 ], [ -86.735013, 31.260025 ], [ -86.736148, 31.260618 ], [ -86.736758, 31.260729 ], [ -86.738669, 31.260121 ], [ -86.74005, 31.260251 ], [ -86.740582, 31.260133 ], [ -86.741746, 31.258931 ], [ -86.742357, 31.258745 ], [ -86.743419, 31.259059 ], [ -86.743604, 31.259309 ], [ -86.743467, 31.26006 ], [ -86.743838, 31.260516 ], [ -86.744741, 31.260464 ], [ -86.744847, 31.260052 ], [ -86.74578, 31.259249 ], [ -86.746607, 31.258836 ], [ -86.748448, 31.258262 ], [ -86.749009, 31.258308 ], [ -86.749382, 31.258399 ], [ -86.749623, 31.258789 ], [ -86.75025, 31.259086 ], [ -86.750437, 31.259682 ], [ -86.751049, 31.260645 ], [ -86.752116, 31.261517 ], [ -86.753103, 31.261517 ], [ -86.754277, 31.261151 ], [ -86.754624, 31.261335 ], [ -86.75481, 31.26161 ], [ -86.754676, 31.263924 ], [ -86.754862, 31.264772 ], [ -86.755582, 31.265598 ], [ -86.756462, 31.266034 ], [ -86.757129, 31.266149 ], [ -86.757876, 31.26608 ], [ -86.759584, 31.26521 ], [ -86.761319, 31.262529 ], [ -86.76164, 31.262277 ], [ -86.761667, 31.261979 ], [ -86.76212, 31.26159 ], [ -86.763961, 31.261293 ], [ -86.827502, 31.261911 ], [ -86.871022, 31.261902 ], [ -86.870452, 31.265111 ], [ -86.870508, 31.265803 ], [ -86.873552, 31.272211 ], [ -86.875011, 31.273642 ], [ -86.877085, 31.276434 ], [ -86.888569, 31.27349 ], [ -86.889742, 31.273371 ], [ -86.896535, 31.274229 ], [ -86.897462, 31.274601 ], [ -86.901082, 31.276813 ], [ -86.899022, 31.279731 ], [ -86.898647, 31.279893 ], [ -86.896083, 31.280033 ], [ -86.89494, 31.280794 ], [ -86.895262, 31.284526 ], [ -86.895152, 31.285845 ], [ -86.893037, 31.289288 ], [ -86.891698, 31.29207 ], [ -86.891119, 31.292797 ], [ -86.888522, 31.294718 ], [ -86.884814, 31.296071 ], [ -86.882076, 31.297708 ], [ -86.877941, 31.299496 ], [ -86.877552, 31.299833 ], [ -86.878593, 31.300682 ], [ -86.879109, 31.301451 ], [ -86.880613, 31.306971 ], [ -86.881319, 31.308478 ], [ -86.886935, 31.316066 ], [ -86.888351, 31.317446 ], [ -86.893027, 31.321241 ], [ -86.893719, 31.322083 ], [ -86.895064, 31.324305 ], [ -86.896287, 31.325637 ], [ -86.897111, 31.326166 ], [ -86.900029, 31.327221 ], [ -86.901081, 31.327973 ], [ -86.901739, 31.328673 ], [ -86.902227, 31.329614 ], [ -86.903182, 31.3329 ], [ -86.903849, 31.337638 ], [ -86.905362, 31.340282 ], [ -86.907602, 31.340702 ], [ -86.909042, 31.341249 ], [ -86.909736, 31.341237 ], [ -86.911043, 31.340706 ], [ -86.911923, 31.340147 ], [ -86.915844, 31.336217 ], [ -86.917658, 31.335602 ], [ -86.91717, 31.333192 ], [ -86.91347, 31.321437 ], [ -86.913336, 31.320406 ], [ -86.91387, 31.320337 ], [ -86.914538, 31.319673 ], [ -86.915419, 31.318023 ], [ -86.91622, 31.315868 ], [ -86.919318, 31.312799 ], [ -86.919905, 31.311722 ], [ -86.919799, 31.309934 ], [ -86.919612, 31.309384 ], [ -86.919612, 31.307848 ], [ -86.919853, 31.306084 ], [ -86.921281, 31.303568 ], [ -86.923146, 31.296611 ], [ -86.923635, 31.295453 ], [ -86.925781, 31.291794 ], [ -86.926153, 31.289654 ], [ -86.931555, 31.291451 ], [ -86.933073, 31.291677 ], [ -86.941279, 31.290688 ], [ -86.948782, 31.289352 ], [ -86.950744, 31.2894 ], [ -86.956328, 31.290778 ], [ -86.972996, 31.298051 ], [ -86.977942, 31.299299 ], [ -86.981368, 31.299649 ], [ -86.980937, 31.300599 ], [ -86.9809, 31.30281 ], [ -86.980598, 31.303875 ], [ -86.975966, 31.309626 ], [ -86.975385, 31.310851 ], [ -86.97542, 31.316735 ], [ -86.975644, 31.319544 ], [ -86.976333, 31.319666 ], [ -86.98036, 31.319624 ], [ -86.981103, 31.31913 ], [ -86.985274, 31.31761 ], [ -86.988225, 31.316147 ], [ -86.99287, 31.316136 ], [ -86.992984, 31.315636 ], [ -86.993591, 31.314832 ], [ -86.993615, 31.314331 ], [ -86.992753, 31.312165 ], [ -86.992642, 31.311478 ], [ -86.993451, 31.309167 ], [ -86.995977, 31.307391 ], [ -86.997469, 31.307152 ], [ -86.998406, 31.306353 ], [ -86.999972, 31.305411 ], [ -87.001923, 31.303786 ], [ -87.002961, 31.304429 ], [ -87.003972, 31.304585 ], [ -87.00479, 31.304357 ], [ -87.008525, 31.302549 ], [ -87.010247, 31.301909 ], [ -87.015201, 31.301838 ], [ -87.016357, 31.301554 ], [ -87.017216, 31.301156 ], [ -87.022895, 31.301182 ], [ -87.023471, 31.302347 ], [ -87.023156, 31.316 ], [ -87.027469, 31.315991 ], [ -87.027645, 31.346666 ], [ -87.027378, 31.349973 ], [ -87.028076, 31.350091 ], [ -87.028547, 31.350657 ], [ -87.029226, 31.35055 ], [ -87.029747, 31.351038 ], [ -87.030651, 31.351157 ], [ -87.031237, 31.352242 ], [ -87.032222, 31.352818 ], [ -87.033334, 31.353765 ], [ -87.035598, 31.354281 ], [ -87.037303, 31.354336 ], [ -87.040652, 31.355475 ], [ -87.042535, 31.356569 ], [ -87.044469, 31.357075 ], [ -87.045027, 31.357936 ], [ -87.046411, 31.359235 ], [ -87.046767, 31.360185 ], [ -87.047412, 31.360914 ], [ -87.047505, 31.3617 ], [ -87.048339, 31.36261 ], [ -87.049522, 31.361929 ], [ -87.05228, 31.360946 ], [ -87.053803, 31.359828 ], [ -87.054699, 31.358721 ], [ -87.055051, 31.357742 ], [ -87.055764, 31.353686 ], [ -87.056091, 31.350606 ], [ -87.056523, 31.349057 ], [ -87.060018, 31.349843 ], [ -87.064603, 31.351212 ], [ -87.070189, 31.353567 ], [ -87.07309, 31.355317 ], [ -87.068122, 31.358376 ], [ -87.061082, 31.363745 ] ], [ [ -86.824213, 31.274995 ], [ -86.823886, 31.277248 ], [ -86.823001, 31.279791 ], [ -86.82293, 31.280604 ], [ -86.823065, 31.281315 ], [ -86.799263, 31.300056 ], [ -86.799654, 31.300056 ], [ -86.800241, 31.300697 ], [ -86.801656, 31.300537 ], [ -86.80267, 31.301019 ], [ -86.803337, 31.301569 ], [ -86.805499, 31.301798 ], [ -86.807287, 31.302394 ], [ -86.807527, 31.302302 ], [ -86.808035, 31.301615 ], [ -86.807928, 31.300492 ], [ -86.808408, 31.300285 ], [ -86.810196, 31.301156 ], [ -86.811425, 31.30134 ], [ -86.812626, 31.301775 ], [ -86.814281, 31.301867 ], [ -86.814895, 31.302096 ], [ -86.815589, 31.302875 ], [ -86.816016, 31.302967 ], [ -86.816443, 31.302921 ], [ -86.81703, 31.302554 ], [ -86.819859, 31.301844 ], [ -86.820393, 31.301454 ], [ -86.821167, 31.301317 ], [ -86.822101, 31.300789 ], [ -86.822635, 31.300881 ], [ -86.823329, 31.301912 ], [ -86.823596, 31.301981 ], [ -86.824503, 31.301408 ], [ -86.824877, 31.301362 ], [ -86.825678, 31.301683 ], [ -86.827519, 31.301568 ], [ -86.829078, 31.301263 ], [ -86.831208, 31.301793 ], [ -86.831109, 31.299229 ], [ -86.831215, 31.298527 ], [ -86.844877, 31.298424 ], [ -86.845094, 31.297616 ], [ -86.845328, 31.295204 ], [ -86.846331, 31.291481 ], [ -86.846717, 31.290832 ], [ -86.848543, 31.289411 ], [ -86.849514, 31.287128 ], [ -86.84969, 31.286107 ], [ -86.849953, 31.285536 ], [ -86.848787, 31.285265 ], [ -86.846736, 31.285357 ], [ -86.839803, 31.287799 ], [ -86.837122, 31.288262 ], [ -86.834481, 31.28826 ], [ -86.828877, 31.280784 ], [ -86.825664, 31.277897 ], [ -86.825881, 31.275982 ], [ -86.824213, 31.274995 ] ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/donut.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ -76.165286, 45.479514 ], [ -76.140095, 45.457437 ], [ -76.162348, 45.444872 ], [ -76.168656, 45.441087 ], [ -76.201963, 45.420225 ], [ -76.213668, 45.429276 ], [ -76.214261, 45.429917 ], [ -76.227477, 45.440383 ], [ -76.263056, 45.467983 ], [ -76.245084, 45.468609 ], [ -76.240206, 45.471202 ], [ -76.238518, 45.475254 ], [ -76.233483, 45.507829 ], [ -76.227816, 45.511836 ], [ -76.212117, 45.51623 ], [ -76.191776, 45.50154 ], [ -76.174016, 45.486911 ], [ -76.165286, 45.479514 ] ], [ [ -76.227618, 45.489247 ], [ -76.232113, 45.486983 ], [ -76.232151, 45.486379 ], [ -76.231812, 45.485106 ], [ -76.230698, 45.483236 ], [ -76.225664, 45.477365 ], [ -76.223568, 45.475174 ], [ -76.202829, 45.458815 ], [ -76.200229, 45.458822 ], [ -76.199069, 45.459164 ], [ -76.188361, 45.465784 ], [ -76.204505, 45.479018 ], [ -76.215555, 45.488534 ], [ -76.220249, 45.492175 ], [ -76.221154, 45.493315 ], [ -76.22631, 45.490189 ], [ -76.226543, 45.489754 ], [ -76.227618, 45.489247 ] ] ] } ================================================ FILE: test/fixtures/donut_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.14074707, 45.45627757 ], [ -76.14074707, 45.46013064 ], [ -76.13525391, 45.46013064 ], [ -76.13525391, 45.45627757 ], [ -76.14074707, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.14624023, 45.45242424 ], [ -76.14624023, 45.45627757 ], [ -76.14074707, 45.45627757 ], [ -76.14074707, 45.45242424 ], [ -76.14624023, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.14624023, 45.45627757 ], [ -76.14624023, 45.46013064 ], [ -76.14074707, 45.46013064 ], [ -76.14074707, 45.45627757 ], [ -76.14624023, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.14624023, 45.46013064 ], [ -76.14624023, 45.46398344 ], [ -76.14074707, 45.46398344 ], [ -76.14074707, 45.46013064 ], [ -76.14624023, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.1517334, 45.44857065 ], [ -76.1517334, 45.45242424 ], [ -76.14624023, 45.45242424 ], [ -76.14624023, 45.44857065 ], [ -76.1517334, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.1517334, 45.45242424 ], [ -76.1517334, 45.45627757 ], [ -76.14624023, 45.45627757 ], [ -76.14624023, 45.45242424 ], [ -76.1517334, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.1517334, 45.45627757 ], [ -76.1517334, 45.46013064 ], [ -76.14624023, 45.46013064 ], [ -76.14624023, 45.45627757 ], [ -76.1517334, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.1517334, 45.46013064 ], [ -76.1517334, 45.46398344 ], [ -76.14624023, 45.46398344 ], [ -76.14624023, 45.46013064 ], [ -76.1517334, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.1517334, 45.46398344 ], [ -76.1517334, 45.46783598 ], [ -76.14624023, 45.46783598 ], [ -76.14624023, 45.46398344 ], [ -76.1517334, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.15722656, 45.44471679 ], [ -76.15722656, 45.44857065 ], [ -76.1517334, 45.44857065 ], [ -76.1517334, 45.44471679 ], [ -76.15722656, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.15722656, 45.44857065 ], [ -76.15722656, 45.45242424 ], [ -76.1517334, 45.45242424 ], [ -76.1517334, 45.44857065 ], [ -76.15722656, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.15722656, 45.45242424 ], [ -76.15722656, 45.45627757 ], [ -76.1517334, 45.45627757 ], [ -76.1517334, 45.45242424 ], [ -76.15722656, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.15722656, 45.45627757 ], [ -76.15722656, 45.46013064 ], [ -76.1517334, 45.46013064 ], [ -76.1517334, 45.45627757 ], [ -76.15722656, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.15722656, 45.46013064 ], [ -76.15722656, 45.46398344 ], [ -76.1517334, 45.46398344 ], [ -76.1517334, 45.46013064 ], [ -76.15722656, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.15722656, 45.46398344 ], [ -76.15722656, 45.46783598 ], [ -76.1517334, 45.46783598 ], [ -76.1517334, 45.46398344 ], [ -76.15722656, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.15722656, 45.46783598 ], [ -76.15722656, 45.47168826 ], [ -76.1517334, 45.47168826 ], [ -76.1517334, 45.46783598 ], [ -76.15722656, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.15722656, 45.47168826 ], [ -76.15722656, 45.47554027 ], [ -76.1517334, 45.47554027 ], [ -76.1517334, 45.47168826 ], [ -76.15722656, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.44086267 ], [ -76.16271973, 45.44471679 ], [ -76.15722656, 45.44471679 ], [ -76.15722656, 45.44086267 ], [ -76.16271973, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.44471679 ], [ -76.16271973, 45.44857065 ], [ -76.15722656, 45.44857065 ], [ -76.15722656, 45.44471679 ], [ -76.16271973, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.44857065 ], [ -76.16271973, 45.45242424 ], [ -76.15722656, 45.45242424 ], [ -76.15722656, 45.44857065 ], [ -76.16271973, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.45242424 ], [ -76.16271973, 45.45627757 ], [ -76.15722656, 45.45627757 ], [ -76.15722656, 45.45242424 ], [ -76.16271973, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.45627757 ], [ -76.16271973, 45.46013064 ], [ -76.15722656, 45.46013064 ], [ -76.15722656, 45.45627757 ], [ -76.16271973, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.46013064 ], [ -76.16271973, 45.46398344 ], [ -76.15722656, 45.46398344 ], [ -76.15722656, 45.46013064 ], [ -76.16271973, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.46398344 ], [ -76.16271973, 45.46783598 ], [ -76.15722656, 45.46783598 ], [ -76.15722656, 45.46398344 ], [ -76.16271973, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.46783598 ], [ -76.16271973, 45.47168826 ], [ -76.15722656, 45.47168826 ], [ -76.15722656, 45.46783598 ], [ -76.16271973, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.47168826 ], [ -76.16271973, 45.47554027 ], [ -76.15722656, 45.47554027 ], [ -76.15722656, 45.47168826 ], [ -76.16271973, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16271973, 45.47554027 ], [ -76.16271973, 45.47939202 ], [ -76.15722656, 45.47939202 ], [ -76.15722656, 45.47554027 ], [ -76.16271973, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.44086267 ], [ -76.16821289, 45.44471679 ], [ -76.16271973, 45.44471679 ], [ -76.16271973, 45.44086267 ], [ -76.16821289, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.44471679 ], [ -76.16821289, 45.44857065 ], [ -76.16271973, 45.44857065 ], [ -76.16271973, 45.44471679 ], [ -76.16821289, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.44857065 ], [ -76.16821289, 45.45242424 ], [ -76.16271973, 45.45242424 ], [ -76.16271973, 45.44857065 ], [ -76.16821289, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.45242424 ], [ -76.16821289, 45.45627757 ], [ -76.16271973, 45.45627757 ], [ -76.16271973, 45.45242424 ], [ -76.16821289, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.45627757 ], [ -76.16821289, 45.46013064 ], [ -76.16271973, 45.46013064 ], [ -76.16271973, 45.45627757 ], [ -76.16821289, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.46013064 ], [ -76.16821289, 45.46398344 ], [ -76.16271973, 45.46398344 ], [ -76.16271973, 45.46013064 ], [ -76.16821289, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.46398344 ], [ -76.16821289, 45.46783598 ], [ -76.16271973, 45.46783598 ], [ -76.16271973, 45.46398344 ], [ -76.16821289, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.46783598 ], [ -76.16821289, 45.47168826 ], [ -76.16271973, 45.47168826 ], [ -76.16271973, 45.46783598 ], [ -76.16821289, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.47168826 ], [ -76.16821289, 45.47554027 ], [ -76.16271973, 45.47554027 ], [ -76.16271973, 45.47168826 ], [ -76.16821289, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.47554027 ], [ -76.16821289, 45.47939202 ], [ -76.16271973, 45.47939202 ], [ -76.16271973, 45.47554027 ], [ -76.16821289, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.16821289, 45.47939202 ], [ -76.16821289, 45.48324351 ], [ -76.16271973, 45.48324351 ], [ -76.16271973, 45.47939202 ], [ -76.16821289, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.43700829 ], [ -76.17370605, 45.44086267 ], [ -76.16821289, 45.44086267 ], [ -76.16821289, 45.43700829 ], [ -76.17370605, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.44086267 ], [ -76.17370605, 45.44471679 ], [ -76.16821289, 45.44471679 ], [ -76.16821289, 45.44086267 ], [ -76.17370605, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.44471679 ], [ -76.17370605, 45.44857065 ], [ -76.16821289, 45.44857065 ], [ -76.16821289, 45.44471679 ], [ -76.17370605, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.44857065 ], [ -76.17370605, 45.45242424 ], [ -76.16821289, 45.45242424 ], [ -76.16821289, 45.44857065 ], [ -76.17370605, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.45242424 ], [ -76.17370605, 45.45627757 ], [ -76.16821289, 45.45627757 ], [ -76.16821289, 45.45242424 ], [ -76.17370605, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.45627757 ], [ -76.17370605, 45.46013064 ], [ -76.16821289, 45.46013064 ], [ -76.16821289, 45.45627757 ], [ -76.17370605, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.46013064 ], [ -76.17370605, 45.46398344 ], [ -76.16821289, 45.46398344 ], [ -76.16821289, 45.46013064 ], [ -76.17370605, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.46398344 ], [ -76.17370605, 45.46783598 ], [ -76.16821289, 45.46783598 ], [ -76.16821289, 45.46398344 ], [ -76.17370605, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.46783598 ], [ -76.17370605, 45.47168826 ], [ -76.16821289, 45.47168826 ], [ -76.16821289, 45.46783598 ], [ -76.17370605, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.47168826 ], [ -76.17370605, 45.47554027 ], [ -76.16821289, 45.47554027 ], [ -76.16821289, 45.47168826 ], [ -76.17370605, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.47554027 ], [ -76.17370605, 45.47939202 ], [ -76.16821289, 45.47939202 ], [ -76.16821289, 45.47554027 ], [ -76.17370605, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.47939202 ], [ -76.17370605, 45.48324351 ], [ -76.16821289, 45.48324351 ], [ -76.16821289, 45.47939202 ], [ -76.17370605, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17370605, 45.48324351 ], [ -76.17370605, 45.48709473 ], [ -76.16821289, 45.48709473 ], [ -76.16821289, 45.48324351 ], [ -76.17370605, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.43315364 ], [ -76.17919922, 45.43700829 ], [ -76.17370605, 45.43700829 ], [ -76.17370605, 45.43315364 ], [ -76.17919922, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.43700829 ], [ -76.17919922, 45.44086267 ], [ -76.17370605, 45.44086267 ], [ -76.17370605, 45.43700829 ], [ -76.17919922, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.44086267 ], [ -76.17919922, 45.44471679 ], [ -76.17370605, 45.44471679 ], [ -76.17370605, 45.44086267 ], [ -76.17919922, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.44471679 ], [ -76.17919922, 45.44857065 ], [ -76.17370605, 45.44857065 ], [ -76.17370605, 45.44471679 ], [ -76.17919922, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.44857065 ], [ -76.17919922, 45.45242424 ], [ -76.17370605, 45.45242424 ], [ -76.17370605, 45.44857065 ], [ -76.17919922, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.45242424 ], [ -76.17919922, 45.45627757 ], [ -76.17370605, 45.45627757 ], [ -76.17370605, 45.45242424 ], [ -76.17919922, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.45627757 ], [ -76.17919922, 45.46013064 ], [ -76.17370605, 45.46013064 ], [ -76.17370605, 45.45627757 ], [ -76.17919922, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.46013064 ], [ -76.17919922, 45.46398344 ], [ -76.17370605, 45.46398344 ], [ -76.17370605, 45.46013064 ], [ -76.17919922, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.46398344 ], [ -76.17919922, 45.46783598 ], [ -76.17370605, 45.46783598 ], [ -76.17370605, 45.46398344 ], [ -76.17919922, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.46783598 ], [ -76.17919922, 45.47168826 ], [ -76.17370605, 45.47168826 ], [ -76.17370605, 45.46783598 ], [ -76.17919922, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.47168826 ], [ -76.17919922, 45.47554027 ], [ -76.17370605, 45.47554027 ], [ -76.17370605, 45.47168826 ], [ -76.17919922, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.47554027 ], [ -76.17919922, 45.47939202 ], [ -76.17370605, 45.47939202 ], [ -76.17370605, 45.47554027 ], [ -76.17919922, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.47939202 ], [ -76.17919922, 45.48324351 ], [ -76.17370605, 45.48324351 ], [ -76.17370605, 45.47939202 ], [ -76.17919922, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.48324351 ], [ -76.17919922, 45.48709473 ], [ -76.17370605, 45.48709473 ], [ -76.17370605, 45.48324351 ], [ -76.17919922, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.48709473 ], [ -76.17919922, 45.49094569 ], [ -76.17370605, 45.49094569 ], [ -76.17370605, 45.48709473 ], [ -76.17919922, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.17919922, 45.49094569 ], [ -76.17919922, 45.49479639 ], [ -76.17370605, 45.49479639 ], [ -76.17370605, 45.49094569 ], [ -76.17919922, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.42929873 ], [ -76.18469238, 45.43315364 ], [ -76.17919922, 45.43315364 ], [ -76.17919922, 45.42929873 ], [ -76.18469238, 45.42929873 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.43315364 ], [ -76.18469238, 45.43700829 ], [ -76.17919922, 45.43700829 ], [ -76.17919922, 45.43315364 ], [ -76.18469238, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.43700829 ], [ -76.18469238, 45.44086267 ], [ -76.17919922, 45.44086267 ], [ -76.17919922, 45.43700829 ], [ -76.18469238, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.44086267 ], [ -76.18469238, 45.44471679 ], [ -76.17919922, 45.44471679 ], [ -76.17919922, 45.44086267 ], [ -76.18469238, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.44471679 ], [ -76.18469238, 45.44857065 ], [ -76.17919922, 45.44857065 ], [ -76.17919922, 45.44471679 ], [ -76.18469238, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.44857065 ], [ -76.18469238, 45.45242424 ], [ -76.17919922, 45.45242424 ], [ -76.17919922, 45.44857065 ], [ -76.18469238, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.45242424 ], [ -76.18469238, 45.45627757 ], [ -76.17919922, 45.45627757 ], [ -76.17919922, 45.45242424 ], [ -76.18469238, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.45627757 ], [ -76.18469238, 45.46013064 ], [ -76.17919922, 45.46013064 ], [ -76.17919922, 45.45627757 ], [ -76.18469238, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.46013064 ], [ -76.18469238, 45.46398344 ], [ -76.17919922, 45.46398344 ], [ -76.17919922, 45.46013064 ], [ -76.18469238, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.46398344 ], [ -76.18469238, 45.46783598 ], [ -76.17919922, 45.46783598 ], [ -76.17919922, 45.46398344 ], [ -76.18469238, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.46783598 ], [ -76.18469238, 45.47168826 ], [ -76.17919922, 45.47168826 ], [ -76.17919922, 45.46783598 ], [ -76.18469238, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.47168826 ], [ -76.18469238, 45.47554027 ], [ -76.17919922, 45.47554027 ], [ -76.17919922, 45.47168826 ], [ -76.18469238, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.47554027 ], [ -76.18469238, 45.47939202 ], [ -76.17919922, 45.47939202 ], [ -76.17919922, 45.47554027 ], [ -76.18469238, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.47939202 ], [ -76.18469238, 45.48324351 ], [ -76.17919922, 45.48324351 ], [ -76.17919922, 45.47939202 ], [ -76.18469238, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.48324351 ], [ -76.18469238, 45.48709473 ], [ -76.17919922, 45.48709473 ], [ -76.17919922, 45.48324351 ], [ -76.18469238, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.48709473 ], [ -76.18469238, 45.49094569 ], [ -76.17919922, 45.49094569 ], [ -76.17919922, 45.48709473 ], [ -76.18469238, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.49094569 ], [ -76.18469238, 45.49479639 ], [ -76.17919922, 45.49479639 ], [ -76.17919922, 45.49094569 ], [ -76.18469238, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.18469238, 45.49479639 ], [ -76.18469238, 45.49864682 ], [ -76.17919922, 45.49864682 ], [ -76.17919922, 45.49479639 ], [ -76.18469238, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.42544356 ], [ -76.19018555, 45.42929873 ], [ -76.18469238, 45.42929873 ], [ -76.18469238, 45.42544356 ], [ -76.19018555, 45.42544356 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.42929873 ], [ -76.19018555, 45.43315364 ], [ -76.18469238, 45.43315364 ], [ -76.18469238, 45.42929873 ], [ -76.19018555, 45.42929873 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.43315364 ], [ -76.19018555, 45.43700829 ], [ -76.18469238, 45.43700829 ], [ -76.18469238, 45.43315364 ], [ -76.19018555, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.43700829 ], [ -76.19018555, 45.44086267 ], [ -76.18469238, 45.44086267 ], [ -76.18469238, 45.43700829 ], [ -76.19018555, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.44086267 ], [ -76.19018555, 45.44471679 ], [ -76.18469238, 45.44471679 ], [ -76.18469238, 45.44086267 ], [ -76.19018555, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.44471679 ], [ -76.19018555, 45.44857065 ], [ -76.18469238, 45.44857065 ], [ -76.18469238, 45.44471679 ], [ -76.19018555, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.44857065 ], [ -76.19018555, 45.45242424 ], [ -76.18469238, 45.45242424 ], [ -76.18469238, 45.44857065 ], [ -76.19018555, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.45242424 ], [ -76.19018555, 45.45627757 ], [ -76.18469238, 45.45627757 ], [ -76.18469238, 45.45242424 ], [ -76.19018555, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.45627757 ], [ -76.19018555, 45.46013064 ], [ -76.18469238, 45.46013064 ], [ -76.18469238, 45.45627757 ], [ -76.19018555, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.46013064 ], [ -76.19018555, 45.46398344 ], [ -76.18469238, 45.46398344 ], [ -76.18469238, 45.46013064 ], [ -76.19018555, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.46398344 ], [ -76.19018555, 45.46783598 ], [ -76.18469238, 45.46783598 ], [ -76.18469238, 45.46398344 ], [ -76.19018555, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.46783598 ], [ -76.19018555, 45.47168826 ], [ -76.18469238, 45.47168826 ], [ -76.18469238, 45.46783598 ], [ -76.19018555, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.47168826 ], [ -76.19018555, 45.47554027 ], [ -76.18469238, 45.47554027 ], [ -76.18469238, 45.47168826 ], [ -76.19018555, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.47554027 ], [ -76.19018555, 45.47939202 ], [ -76.18469238, 45.47939202 ], [ -76.18469238, 45.47554027 ], [ -76.19018555, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.47939202 ], [ -76.19018555, 45.48324351 ], [ -76.18469238, 45.48324351 ], [ -76.18469238, 45.47939202 ], [ -76.19018555, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.48324351 ], [ -76.19018555, 45.48709473 ], [ -76.18469238, 45.48709473 ], [ -76.18469238, 45.48324351 ], [ -76.19018555, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.48709473 ], [ -76.19018555, 45.49094569 ], [ -76.18469238, 45.49094569 ], [ -76.18469238, 45.48709473 ], [ -76.19018555, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.49094569 ], [ -76.19018555, 45.49479639 ], [ -76.18469238, 45.49479639 ], [ -76.18469238, 45.49094569 ], [ -76.19018555, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.49479639 ], [ -76.19018555, 45.49864682 ], [ -76.18469238, 45.49864682 ], [ -76.18469238, 45.49479639 ], [ -76.19018555, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19018555, 45.49864682 ], [ -76.19018555, 45.50249699 ], [ -76.18469238, 45.50249699 ], [ -76.18469238, 45.49864682 ], [ -76.19018555, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.42158812 ], [ -76.19567871, 45.42544356 ], [ -76.19018555, 45.42544356 ], [ -76.19018555, 45.42158812 ], [ -76.19567871, 45.42158812 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.42544356 ], [ -76.19567871, 45.42929873 ], [ -76.19018555, 45.42929873 ], [ -76.19018555, 45.42544356 ], [ -76.19567871, 45.42544356 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.42929873 ], [ -76.19567871, 45.43315364 ], [ -76.19018555, 45.43315364 ], [ -76.19018555, 45.42929873 ], [ -76.19567871, 45.42929873 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.43315364 ], [ -76.19567871, 45.43700829 ], [ -76.19018555, 45.43700829 ], [ -76.19018555, 45.43315364 ], [ -76.19567871, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.43700829 ], [ -76.19567871, 45.44086267 ], [ -76.19018555, 45.44086267 ], [ -76.19018555, 45.43700829 ], [ -76.19567871, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.44086267 ], [ -76.19567871, 45.44471679 ], [ -76.19018555, 45.44471679 ], [ -76.19018555, 45.44086267 ], [ -76.19567871, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.44471679 ], [ -76.19567871, 45.44857065 ], [ -76.19018555, 45.44857065 ], [ -76.19018555, 45.44471679 ], [ -76.19567871, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.44857065 ], [ -76.19567871, 45.45242424 ], [ -76.19018555, 45.45242424 ], [ -76.19018555, 45.44857065 ], [ -76.19567871, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.45242424 ], [ -76.19567871, 45.45627757 ], [ -76.19018555, 45.45627757 ], [ -76.19018555, 45.45242424 ], [ -76.19567871, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.45627757 ], [ -76.19567871, 45.46013064 ], [ -76.19018555, 45.46013064 ], [ -76.19018555, 45.45627757 ], [ -76.19567871, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.46013064 ], [ -76.19567871, 45.46398344 ], [ -76.19018555, 45.46398344 ], [ -76.19018555, 45.46013064 ], [ -76.19567871, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.46398344 ], [ -76.19567871, 45.46783598 ], [ -76.19018555, 45.46783598 ], [ -76.19018555, 45.46398344 ], [ -76.19567871, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.46783598 ], [ -76.19567871, 45.47168826 ], [ -76.19018555, 45.47168826 ], [ -76.19018555, 45.46783598 ], [ -76.19567871, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.47168826 ], [ -76.19567871, 45.47554027 ], [ -76.19018555, 45.47554027 ], [ -76.19018555, 45.47168826 ], [ -76.19567871, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.47554027 ], [ -76.19567871, 45.47939202 ], [ -76.19018555, 45.47939202 ], [ -76.19018555, 45.47554027 ], [ -76.19567871, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.47939202 ], [ -76.19567871, 45.48324351 ], [ -76.19018555, 45.48324351 ], [ -76.19018555, 45.47939202 ], [ -76.19567871, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.48324351 ], [ -76.19567871, 45.48709473 ], [ -76.19018555, 45.48709473 ], [ -76.19018555, 45.48324351 ], [ -76.19567871, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.48709473 ], [ -76.19567871, 45.49094569 ], [ -76.19018555, 45.49094569 ], [ -76.19018555, 45.48709473 ], [ -76.19567871, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.49094569 ], [ -76.19567871, 45.49479639 ], [ -76.19018555, 45.49479639 ], [ -76.19018555, 45.49094569 ], [ -76.19567871, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.49479639 ], [ -76.19567871, 45.49864682 ], [ -76.19018555, 45.49864682 ], [ -76.19018555, 45.49479639 ], [ -76.19567871, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.49864682 ], [ -76.19567871, 45.50249699 ], [ -76.19018555, 45.50249699 ], [ -76.19018555, 45.49864682 ], [ -76.19567871, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.19567871, 45.50249699 ], [ -76.19567871, 45.5063469 ], [ -76.19018555, 45.5063469 ], [ -76.19018555, 45.50249699 ], [ -76.19567871, 45.50249699 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.41773242 ], [ -76.20117188, 45.42158812 ], [ -76.19567871, 45.42158812 ], [ -76.19567871, 45.41773242 ], [ -76.20117188, 45.41773242 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.42158812 ], [ -76.20117188, 45.42544356 ], [ -76.19567871, 45.42544356 ], [ -76.19567871, 45.42158812 ], [ -76.20117188, 45.42158812 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.42544356 ], [ -76.20117188, 45.42929873 ], [ -76.19567871, 45.42929873 ], [ -76.19567871, 45.42544356 ], [ -76.20117188, 45.42544356 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.42929873 ], [ -76.20117188, 45.43315364 ], [ -76.19567871, 45.43315364 ], [ -76.19567871, 45.42929873 ], [ -76.20117188, 45.42929873 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.43315364 ], [ -76.20117188, 45.43700829 ], [ -76.19567871, 45.43700829 ], [ -76.19567871, 45.43315364 ], [ -76.20117188, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.43700829 ], [ -76.20117188, 45.44086267 ], [ -76.19567871, 45.44086267 ], [ -76.19567871, 45.43700829 ], [ -76.20117188, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.44086267 ], [ -76.20117188, 45.44471679 ], [ -76.19567871, 45.44471679 ], [ -76.19567871, 45.44086267 ], [ -76.20117188, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.44471679 ], [ -76.20117188, 45.44857065 ], [ -76.19567871, 45.44857065 ], [ -76.19567871, 45.44471679 ], [ -76.20117188, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.44857065 ], [ -76.20117188, 45.45242424 ], [ -76.19567871, 45.45242424 ], [ -76.19567871, 45.44857065 ], [ -76.20117188, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.45242424 ], [ -76.20117188, 45.45627757 ], [ -76.19567871, 45.45627757 ], [ -76.19567871, 45.45242424 ], [ -76.20117188, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.45627757 ], [ -76.20117188, 45.46013064 ], [ -76.19567871, 45.46013064 ], [ -76.19567871, 45.45627757 ], [ -76.20117188, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.46013064 ], [ -76.20117188, 45.46398344 ], [ -76.19567871, 45.46398344 ], [ -76.19567871, 45.46013064 ], [ -76.20117188, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.47168826 ], [ -76.20117188, 45.47554027 ], [ -76.19567871, 45.47554027 ], [ -76.19567871, 45.47168826 ], [ -76.20117188, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.47554027 ], [ -76.20117188, 45.47939202 ], [ -76.19567871, 45.47939202 ], [ -76.19567871, 45.47554027 ], [ -76.20117188, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.47939202 ], [ -76.20117188, 45.48324351 ], [ -76.19567871, 45.48324351 ], [ -76.19567871, 45.47939202 ], [ -76.20117188, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.48324351 ], [ -76.20117188, 45.48709473 ], [ -76.19567871, 45.48709473 ], [ -76.19567871, 45.48324351 ], [ -76.20117188, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.48709473 ], [ -76.20117188, 45.49094569 ], [ -76.19567871, 45.49094569 ], [ -76.19567871, 45.48709473 ], [ -76.20117188, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.49094569 ], [ -76.20117188, 45.49479639 ], [ -76.19567871, 45.49479639 ], [ -76.19567871, 45.49094569 ], [ -76.20117188, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.49479639 ], [ -76.20117188, 45.49864682 ], [ -76.19567871, 45.49864682 ], [ -76.19567871, 45.49479639 ], [ -76.20117188, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.49864682 ], [ -76.20117188, 45.50249699 ], [ -76.19567871, 45.50249699 ], [ -76.19567871, 45.49864682 ], [ -76.20117188, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.50249699 ], [ -76.20117188, 45.5063469 ], [ -76.19567871, 45.5063469 ], [ -76.19567871, 45.50249699 ], [ -76.20117188, 45.50249699 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20117188, 45.5063469 ], [ -76.20117188, 45.51019654 ], [ -76.19567871, 45.51019654 ], [ -76.19567871, 45.5063469 ], [ -76.20117188, 45.5063469 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.41773242 ], [ -76.20666504, 45.42158812 ], [ -76.20117188, 45.42158812 ], [ -76.20117188, 45.41773242 ], [ -76.20666504, 45.41773242 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.42158812 ], [ -76.20666504, 45.42544356 ], [ -76.20117188, 45.42544356 ], [ -76.20117188, 45.42158812 ], [ -76.20666504, 45.42158812 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.42544356 ], [ -76.20666504, 45.42929873 ], [ -76.20117188, 45.42929873 ], [ -76.20117188, 45.42544356 ], [ -76.20666504, 45.42544356 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.42929873 ], [ -76.20666504, 45.43315364 ], [ -76.20117188, 45.43315364 ], [ -76.20117188, 45.42929873 ], [ -76.20666504, 45.42929873 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.43315364 ], [ -76.20666504, 45.43700829 ], [ -76.20117188, 45.43700829 ], [ -76.20117188, 45.43315364 ], [ -76.20666504, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.43700829 ], [ -76.20666504, 45.44086267 ], [ -76.20117188, 45.44086267 ], [ -76.20117188, 45.43700829 ], [ -76.20666504, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.44086267 ], [ -76.20666504, 45.44471679 ], [ -76.20117188, 45.44471679 ], [ -76.20117188, 45.44086267 ], [ -76.20666504, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.44471679 ], [ -76.20666504, 45.44857065 ], [ -76.20117188, 45.44857065 ], [ -76.20117188, 45.44471679 ], [ -76.20666504, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.44857065 ], [ -76.20666504, 45.45242424 ], [ -76.20117188, 45.45242424 ], [ -76.20117188, 45.44857065 ], [ -76.20666504, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.45242424 ], [ -76.20666504, 45.45627757 ], [ -76.20117188, 45.45627757 ], [ -76.20117188, 45.45242424 ], [ -76.20666504, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.45627757 ], [ -76.20666504, 45.46013064 ], [ -76.20117188, 45.46013064 ], [ -76.20117188, 45.45627757 ], [ -76.20666504, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.46013064 ], [ -76.20666504, 45.46398344 ], [ -76.20117188, 45.46398344 ], [ -76.20117188, 45.46013064 ], [ -76.20666504, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.47554027 ], [ -76.20666504, 45.47939202 ], [ -76.20117188, 45.47939202 ], [ -76.20117188, 45.47554027 ], [ -76.20666504, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.47939202 ], [ -76.20666504, 45.48324351 ], [ -76.20117188, 45.48324351 ], [ -76.20117188, 45.47939202 ], [ -76.20666504, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.48324351 ], [ -76.20666504, 45.48709473 ], [ -76.20117188, 45.48709473 ], [ -76.20117188, 45.48324351 ], [ -76.20666504, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.48709473 ], [ -76.20666504, 45.49094569 ], [ -76.20117188, 45.49094569 ], [ -76.20117188, 45.48709473 ], [ -76.20666504, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.49094569 ], [ -76.20666504, 45.49479639 ], [ -76.20117188, 45.49479639 ], [ -76.20117188, 45.49094569 ], [ -76.20666504, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.49479639 ], [ -76.20666504, 45.49864682 ], [ -76.20117188, 45.49864682 ], [ -76.20117188, 45.49479639 ], [ -76.20666504, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.49864682 ], [ -76.20666504, 45.50249699 ], [ -76.20117188, 45.50249699 ], [ -76.20117188, 45.49864682 ], [ -76.20666504, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.50249699 ], [ -76.20666504, 45.5063469 ], [ -76.20117188, 45.5063469 ], [ -76.20117188, 45.50249699 ], [ -76.20666504, 45.50249699 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.5063469 ], [ -76.20666504, 45.51019654 ], [ -76.20117188, 45.51019654 ], [ -76.20117188, 45.5063469 ], [ -76.20666504, 45.5063469 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.20666504, 45.51019654 ], [ -76.20666504, 45.51404593 ], [ -76.20117188, 45.51404593 ], [ -76.20117188, 45.51019654 ], [ -76.20666504, 45.51019654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.42158812 ], [ -76.2121582, 45.42544356 ], [ -76.20666504, 45.42544356 ], [ -76.20666504, 45.42158812 ], [ -76.2121582, 45.42158812 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.42544356 ], [ -76.2121582, 45.42929873 ], [ -76.20666504, 45.42929873 ], [ -76.20666504, 45.42544356 ], [ -76.2121582, 45.42544356 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.42929873 ], [ -76.2121582, 45.43315364 ], [ -76.20666504, 45.43315364 ], [ -76.20666504, 45.42929873 ], [ -76.2121582, 45.42929873 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.43315364 ], [ -76.2121582, 45.43700829 ], [ -76.20666504, 45.43700829 ], [ -76.20666504, 45.43315364 ], [ -76.2121582, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.43700829 ], [ -76.2121582, 45.44086267 ], [ -76.20666504, 45.44086267 ], [ -76.20666504, 45.43700829 ], [ -76.2121582, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.44086267 ], [ -76.2121582, 45.44471679 ], [ -76.20666504, 45.44471679 ], [ -76.20666504, 45.44086267 ], [ -76.2121582, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.44471679 ], [ -76.2121582, 45.44857065 ], [ -76.20666504, 45.44857065 ], [ -76.20666504, 45.44471679 ], [ -76.2121582, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.44857065 ], [ -76.2121582, 45.45242424 ], [ -76.20666504, 45.45242424 ], [ -76.20666504, 45.44857065 ], [ -76.2121582, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.45242424 ], [ -76.2121582, 45.45627757 ], [ -76.20666504, 45.45627757 ], [ -76.20666504, 45.45242424 ], [ -76.2121582, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.45627757 ], [ -76.2121582, 45.46013064 ], [ -76.20666504, 45.46013064 ], [ -76.20666504, 45.45627757 ], [ -76.2121582, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.46013064 ], [ -76.2121582, 45.46398344 ], [ -76.20666504, 45.46398344 ], [ -76.20666504, 45.46013064 ], [ -76.2121582, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.46398344 ], [ -76.2121582, 45.46783598 ], [ -76.20666504, 45.46783598 ], [ -76.20666504, 45.46398344 ], [ -76.2121582, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.47939202 ], [ -76.2121582, 45.48324351 ], [ -76.20666504, 45.48324351 ], [ -76.20666504, 45.47939202 ], [ -76.2121582, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.48324351 ], [ -76.2121582, 45.48709473 ], [ -76.20666504, 45.48709473 ], [ -76.20666504, 45.48324351 ], [ -76.2121582, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.48709473 ], [ -76.2121582, 45.49094569 ], [ -76.20666504, 45.49094569 ], [ -76.20666504, 45.48709473 ], [ -76.2121582, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.49094569 ], [ -76.2121582, 45.49479639 ], [ -76.20666504, 45.49479639 ], [ -76.20666504, 45.49094569 ], [ -76.2121582, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.49479639 ], [ -76.2121582, 45.49864682 ], [ -76.20666504, 45.49864682 ], [ -76.20666504, 45.49479639 ], [ -76.2121582, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.49864682 ], [ -76.2121582, 45.50249699 ], [ -76.20666504, 45.50249699 ], [ -76.20666504, 45.49864682 ], [ -76.2121582, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.50249699 ], [ -76.2121582, 45.5063469 ], [ -76.20666504, 45.5063469 ], [ -76.20666504, 45.50249699 ], [ -76.2121582, 45.50249699 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.5063469 ], [ -76.2121582, 45.51019654 ], [ -76.20666504, 45.51019654 ], [ -76.20666504, 45.5063469 ], [ -76.2121582, 45.5063469 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.51019654 ], [ -76.2121582, 45.51404593 ], [ -76.20666504, 45.51404593 ], [ -76.20666504, 45.51019654 ], [ -76.2121582, 45.51019654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2121582, 45.51404593 ], [ -76.2121582, 45.51789504 ], [ -76.20666504, 45.51789504 ], [ -76.20666504, 45.51404593 ], [ -76.2121582, 45.51404593 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.42544356 ], [ -76.21765137, 45.42929873 ], [ -76.2121582, 45.42929873 ], [ -76.2121582, 45.42544356 ], [ -76.21765137, 45.42544356 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.42929873 ], [ -76.21765137, 45.43315364 ], [ -76.2121582, 45.43315364 ], [ -76.2121582, 45.42929873 ], [ -76.21765137, 45.42929873 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.43315364 ], [ -76.21765137, 45.43700829 ], [ -76.2121582, 45.43700829 ], [ -76.2121582, 45.43315364 ], [ -76.21765137, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.43700829 ], [ -76.21765137, 45.44086267 ], [ -76.2121582, 45.44086267 ], [ -76.2121582, 45.43700829 ], [ -76.21765137, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.44086267 ], [ -76.21765137, 45.44471679 ], [ -76.2121582, 45.44471679 ], [ -76.2121582, 45.44086267 ], [ -76.21765137, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.44471679 ], [ -76.21765137, 45.44857065 ], [ -76.2121582, 45.44857065 ], [ -76.2121582, 45.44471679 ], [ -76.21765137, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.44857065 ], [ -76.21765137, 45.45242424 ], [ -76.2121582, 45.45242424 ], [ -76.2121582, 45.44857065 ], [ -76.21765137, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.45242424 ], [ -76.21765137, 45.45627757 ], [ -76.2121582, 45.45627757 ], [ -76.2121582, 45.45242424 ], [ -76.21765137, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.45627757 ], [ -76.21765137, 45.46013064 ], [ -76.2121582, 45.46013064 ], [ -76.2121582, 45.45627757 ], [ -76.21765137, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.46013064 ], [ -76.21765137, 45.46398344 ], [ -76.2121582, 45.46398344 ], [ -76.2121582, 45.46013064 ], [ -76.21765137, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.46398344 ], [ -76.21765137, 45.46783598 ], [ -76.2121582, 45.46783598 ], [ -76.2121582, 45.46398344 ], [ -76.21765137, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.46783598 ], [ -76.21765137, 45.47168826 ], [ -76.2121582, 45.47168826 ], [ -76.2121582, 45.46783598 ], [ -76.21765137, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.48324351 ], [ -76.21765137, 45.48709473 ], [ -76.2121582, 45.48709473 ], [ -76.2121582, 45.48324351 ], [ -76.21765137, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.48709473 ], [ -76.21765137, 45.49094569 ], [ -76.2121582, 45.49094569 ], [ -76.2121582, 45.48709473 ], [ -76.21765137, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.49094569 ], [ -76.21765137, 45.49479639 ], [ -76.2121582, 45.49479639 ], [ -76.2121582, 45.49094569 ], [ -76.21765137, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.49479639 ], [ -76.21765137, 45.49864682 ], [ -76.2121582, 45.49864682 ], [ -76.2121582, 45.49479639 ], [ -76.21765137, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.49864682 ], [ -76.21765137, 45.50249699 ], [ -76.2121582, 45.50249699 ], [ -76.2121582, 45.49864682 ], [ -76.21765137, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.50249699 ], [ -76.21765137, 45.5063469 ], [ -76.2121582, 45.5063469 ], [ -76.2121582, 45.50249699 ], [ -76.21765137, 45.50249699 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.5063469 ], [ -76.21765137, 45.51019654 ], [ -76.2121582, 45.51019654 ], [ -76.2121582, 45.5063469 ], [ -76.21765137, 45.5063469 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.51019654 ], [ -76.21765137, 45.51404593 ], [ -76.2121582, 45.51404593 ], [ -76.2121582, 45.51019654 ], [ -76.21765137, 45.51019654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.21765137, 45.51404593 ], [ -76.21765137, 45.51789504 ], [ -76.2121582, 45.51789504 ], [ -76.2121582, 45.51404593 ], [ -76.21765137, 45.51404593 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.42929873 ], [ -76.22314453, 45.43315364 ], [ -76.21765137, 45.43315364 ], [ -76.21765137, 45.42929873 ], [ -76.22314453, 45.42929873 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.43315364 ], [ -76.22314453, 45.43700829 ], [ -76.21765137, 45.43700829 ], [ -76.21765137, 45.43315364 ], [ -76.22314453, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.43700829 ], [ -76.22314453, 45.44086267 ], [ -76.21765137, 45.44086267 ], [ -76.21765137, 45.43700829 ], [ -76.22314453, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.44086267 ], [ -76.22314453, 45.44471679 ], [ -76.21765137, 45.44471679 ], [ -76.21765137, 45.44086267 ], [ -76.22314453, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.44471679 ], [ -76.22314453, 45.44857065 ], [ -76.21765137, 45.44857065 ], [ -76.21765137, 45.44471679 ], [ -76.22314453, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.44857065 ], [ -76.22314453, 45.45242424 ], [ -76.21765137, 45.45242424 ], [ -76.21765137, 45.44857065 ], [ -76.22314453, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.45242424 ], [ -76.22314453, 45.45627757 ], [ -76.21765137, 45.45627757 ], [ -76.21765137, 45.45242424 ], [ -76.22314453, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.45627757 ], [ -76.22314453, 45.46013064 ], [ -76.21765137, 45.46013064 ], [ -76.21765137, 45.45627757 ], [ -76.22314453, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.46013064 ], [ -76.22314453, 45.46398344 ], [ -76.21765137, 45.46398344 ], [ -76.21765137, 45.46013064 ], [ -76.22314453, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.46398344 ], [ -76.22314453, 45.46783598 ], [ -76.21765137, 45.46783598 ], [ -76.21765137, 45.46398344 ], [ -76.22314453, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.46783598 ], [ -76.22314453, 45.47168826 ], [ -76.21765137, 45.47168826 ], [ -76.21765137, 45.46783598 ], [ -76.22314453, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.47168826 ], [ -76.22314453, 45.47554027 ], [ -76.21765137, 45.47554027 ], [ -76.21765137, 45.47168826 ], [ -76.22314453, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.48709473 ], [ -76.22314453, 45.49094569 ], [ -76.21765137, 45.49094569 ], [ -76.21765137, 45.48709473 ], [ -76.22314453, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.49094569 ], [ -76.22314453, 45.49479639 ], [ -76.21765137, 45.49479639 ], [ -76.21765137, 45.49094569 ], [ -76.22314453, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.49479639 ], [ -76.22314453, 45.49864682 ], [ -76.21765137, 45.49864682 ], [ -76.21765137, 45.49479639 ], [ -76.22314453, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.49864682 ], [ -76.22314453, 45.50249699 ], [ -76.21765137, 45.50249699 ], [ -76.21765137, 45.49864682 ], [ -76.22314453, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.50249699 ], [ -76.22314453, 45.5063469 ], [ -76.21765137, 45.5063469 ], [ -76.21765137, 45.50249699 ], [ -76.22314453, 45.50249699 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.5063469 ], [ -76.22314453, 45.51019654 ], [ -76.21765137, 45.51019654 ], [ -76.21765137, 45.5063469 ], [ -76.22314453, 45.5063469 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.51019654 ], [ -76.22314453, 45.51404593 ], [ -76.21765137, 45.51404593 ], [ -76.21765137, 45.51019654 ], [ -76.22314453, 45.51019654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.22314453, 45.51404593 ], [ -76.22314453, 45.51789504 ], [ -76.21765137, 45.51789504 ], [ -76.21765137, 45.51404593 ], [ -76.22314453, 45.51404593 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.43315364 ], [ -76.2286377, 45.43700829 ], [ -76.22314453, 45.43700829 ], [ -76.22314453, 45.43315364 ], [ -76.2286377, 45.43315364 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.43700829 ], [ -76.2286377, 45.44086267 ], [ -76.22314453, 45.44086267 ], [ -76.22314453, 45.43700829 ], [ -76.2286377, 45.43700829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.44086267 ], [ -76.2286377, 45.44471679 ], [ -76.22314453, 45.44471679 ], [ -76.22314453, 45.44086267 ], [ -76.2286377, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.44471679 ], [ -76.2286377, 45.44857065 ], [ -76.22314453, 45.44857065 ], [ -76.22314453, 45.44471679 ], [ -76.2286377, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.44857065 ], [ -76.2286377, 45.45242424 ], [ -76.22314453, 45.45242424 ], [ -76.22314453, 45.44857065 ], [ -76.2286377, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.45242424 ], [ -76.2286377, 45.45627757 ], [ -76.22314453, 45.45627757 ], [ -76.22314453, 45.45242424 ], [ -76.2286377, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.45627757 ], [ -76.2286377, 45.46013064 ], [ -76.22314453, 45.46013064 ], [ -76.22314453, 45.45627757 ], [ -76.2286377, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.46013064 ], [ -76.2286377, 45.46398344 ], [ -76.22314453, 45.46398344 ], [ -76.22314453, 45.46013064 ], [ -76.2286377, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.46398344 ], [ -76.2286377, 45.46783598 ], [ -76.22314453, 45.46783598 ], [ -76.22314453, 45.46398344 ], [ -76.2286377, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.46783598 ], [ -76.2286377, 45.47168826 ], [ -76.22314453, 45.47168826 ], [ -76.22314453, 45.46783598 ], [ -76.2286377, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.47168826 ], [ -76.2286377, 45.47554027 ], [ -76.22314453, 45.47554027 ], [ -76.22314453, 45.47168826 ], [ -76.2286377, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.47554027 ], [ -76.2286377, 45.47939202 ], [ -76.22314453, 45.47939202 ], [ -76.22314453, 45.47554027 ], [ -76.2286377, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.47939202 ], [ -76.2286377, 45.48324351 ], [ -76.22314453, 45.48324351 ], [ -76.22314453, 45.47939202 ], [ -76.2286377, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.48709473 ], [ -76.2286377, 45.49094569 ], [ -76.22314453, 45.49094569 ], [ -76.22314453, 45.48709473 ], [ -76.2286377, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.49094569 ], [ -76.2286377, 45.49479639 ], [ -76.22314453, 45.49479639 ], [ -76.22314453, 45.49094569 ], [ -76.2286377, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.49479639 ], [ -76.2286377, 45.49864682 ], [ -76.22314453, 45.49864682 ], [ -76.22314453, 45.49479639 ], [ -76.2286377, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.49864682 ], [ -76.2286377, 45.50249699 ], [ -76.22314453, 45.50249699 ], [ -76.22314453, 45.49864682 ], [ -76.2286377, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.50249699 ], [ -76.2286377, 45.5063469 ], [ -76.22314453, 45.5063469 ], [ -76.22314453, 45.50249699 ], [ -76.2286377, 45.50249699 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.5063469 ], [ -76.2286377, 45.51019654 ], [ -76.22314453, 45.51019654 ], [ -76.22314453, 45.5063469 ], [ -76.2286377, 45.5063469 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.2286377, 45.51019654 ], [ -76.2286377, 45.51404593 ], [ -76.22314453, 45.51404593 ], [ -76.22314453, 45.51019654 ], [ -76.2286377, 45.51019654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.44086267 ], [ -76.23413086, 45.44471679 ], [ -76.2286377, 45.44471679 ], [ -76.2286377, 45.44086267 ], [ -76.23413086, 45.44086267 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.44471679 ], [ -76.23413086, 45.44857065 ], [ -76.2286377, 45.44857065 ], [ -76.2286377, 45.44471679 ], [ -76.23413086, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.44857065 ], [ -76.23413086, 45.45242424 ], [ -76.2286377, 45.45242424 ], [ -76.2286377, 45.44857065 ], [ -76.23413086, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.45242424 ], [ -76.23413086, 45.45627757 ], [ -76.2286377, 45.45627757 ], [ -76.2286377, 45.45242424 ], [ -76.23413086, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.45627757 ], [ -76.23413086, 45.46013064 ], [ -76.2286377, 45.46013064 ], [ -76.2286377, 45.45627757 ], [ -76.23413086, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.46013064 ], [ -76.23413086, 45.46398344 ], [ -76.2286377, 45.46398344 ], [ -76.2286377, 45.46013064 ], [ -76.23413086, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.46398344 ], [ -76.23413086, 45.46783598 ], [ -76.2286377, 45.46783598 ], [ -76.2286377, 45.46398344 ], [ -76.23413086, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.46783598 ], [ -76.23413086, 45.47168826 ], [ -76.2286377, 45.47168826 ], [ -76.2286377, 45.46783598 ], [ -76.23413086, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.47168826 ], [ -76.23413086, 45.47554027 ], [ -76.2286377, 45.47554027 ], [ -76.2286377, 45.47168826 ], [ -76.23413086, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.47554027 ], [ -76.23413086, 45.47939202 ], [ -76.2286377, 45.47939202 ], [ -76.2286377, 45.47554027 ], [ -76.23413086, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.47939202 ], [ -76.23413086, 45.48324351 ], [ -76.2286377, 45.48324351 ], [ -76.2286377, 45.47939202 ], [ -76.23413086, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.48324351 ], [ -76.23413086, 45.48709473 ], [ -76.2286377, 45.48709473 ], [ -76.2286377, 45.48324351 ], [ -76.23413086, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.48709473 ], [ -76.23413086, 45.49094569 ], [ -76.2286377, 45.49094569 ], [ -76.2286377, 45.48709473 ], [ -76.23413086, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.49094569 ], [ -76.23413086, 45.49479639 ], [ -76.2286377, 45.49479639 ], [ -76.2286377, 45.49094569 ], [ -76.23413086, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.49479639 ], [ -76.23413086, 45.49864682 ], [ -76.2286377, 45.49864682 ], [ -76.2286377, 45.49479639 ], [ -76.23413086, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.49864682 ], [ -76.23413086, 45.50249699 ], [ -76.2286377, 45.50249699 ], [ -76.2286377, 45.49864682 ], [ -76.23413086, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.50249699 ], [ -76.23413086, 45.5063469 ], [ -76.2286377, 45.5063469 ], [ -76.2286377, 45.50249699 ], [ -76.23413086, 45.50249699 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.5063469 ], [ -76.23413086, 45.51019654 ], [ -76.2286377, 45.51019654 ], [ -76.2286377, 45.5063469 ], [ -76.23413086, 45.5063469 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23413086, 45.51019654 ], [ -76.23413086, 45.51404593 ], [ -76.2286377, 45.51404593 ], [ -76.2286377, 45.51019654 ], [ -76.23413086, 45.51019654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.44471679 ], [ -76.23962402, 45.44857065 ], [ -76.23413086, 45.44857065 ], [ -76.23413086, 45.44471679 ], [ -76.23962402, 45.44471679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.44857065 ], [ -76.23962402, 45.45242424 ], [ -76.23413086, 45.45242424 ], [ -76.23413086, 45.44857065 ], [ -76.23962402, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.45242424 ], [ -76.23962402, 45.45627757 ], [ -76.23413086, 45.45627757 ], [ -76.23413086, 45.45242424 ], [ -76.23962402, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.45627757 ], [ -76.23962402, 45.46013064 ], [ -76.23413086, 45.46013064 ], [ -76.23413086, 45.45627757 ], [ -76.23962402, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.46013064 ], [ -76.23962402, 45.46398344 ], [ -76.23413086, 45.46398344 ], [ -76.23413086, 45.46013064 ], [ -76.23962402, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.46398344 ], [ -76.23962402, 45.46783598 ], [ -76.23413086, 45.46783598 ], [ -76.23413086, 45.46398344 ], [ -76.23962402, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.46783598 ], [ -76.23962402, 45.47168826 ], [ -76.23413086, 45.47168826 ], [ -76.23413086, 45.46783598 ], [ -76.23962402, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.47168826 ], [ -76.23962402, 45.47554027 ], [ -76.23413086, 45.47554027 ], [ -76.23413086, 45.47168826 ], [ -76.23962402, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.47554027 ], [ -76.23962402, 45.47939202 ], [ -76.23413086, 45.47939202 ], [ -76.23413086, 45.47554027 ], [ -76.23962402, 45.47554027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.47939202 ], [ -76.23962402, 45.48324351 ], [ -76.23413086, 45.48324351 ], [ -76.23413086, 45.47939202 ], [ -76.23962402, 45.47939202 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.48324351 ], [ -76.23962402, 45.48709473 ], [ -76.23413086, 45.48709473 ], [ -76.23413086, 45.48324351 ], [ -76.23962402, 45.48324351 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.48709473 ], [ -76.23962402, 45.49094569 ], [ -76.23413086, 45.49094569 ], [ -76.23413086, 45.48709473 ], [ -76.23962402, 45.48709473 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.49094569 ], [ -76.23962402, 45.49479639 ], [ -76.23413086, 45.49479639 ], [ -76.23413086, 45.49094569 ], [ -76.23962402, 45.49094569 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.49479639 ], [ -76.23962402, 45.49864682 ], [ -76.23413086, 45.49864682 ], [ -76.23413086, 45.49479639 ], [ -76.23962402, 45.49479639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.49864682 ], [ -76.23962402, 45.50249699 ], [ -76.23413086, 45.50249699 ], [ -76.23413086, 45.49864682 ], [ -76.23962402, 45.49864682 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.23962402, 45.50249699 ], [ -76.23962402, 45.5063469 ], [ -76.23413086, 45.5063469 ], [ -76.23413086, 45.50249699 ], [ -76.23962402, 45.50249699 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.24511719, 45.44857065 ], [ -76.24511719, 45.45242424 ], [ -76.23962402, 45.45242424 ], [ -76.23962402, 45.44857065 ], [ -76.24511719, 45.44857065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.24511719, 45.45242424 ], [ -76.24511719, 45.45627757 ], [ -76.23962402, 45.45627757 ], [ -76.23962402, 45.45242424 ], [ -76.24511719, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.24511719, 45.45627757 ], [ -76.24511719, 45.46013064 ], [ -76.23962402, 45.46013064 ], [ -76.23962402, 45.45627757 ], [ -76.24511719, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.24511719, 45.46013064 ], [ -76.24511719, 45.46398344 ], [ -76.23962402, 45.46398344 ], [ -76.23962402, 45.46013064 ], [ -76.24511719, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.24511719, 45.46398344 ], [ -76.24511719, 45.46783598 ], [ -76.23962402, 45.46783598 ], [ -76.23962402, 45.46398344 ], [ -76.24511719, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.24511719, 45.46783598 ], [ -76.24511719, 45.47168826 ], [ -76.23962402, 45.47168826 ], [ -76.23962402, 45.46783598 ], [ -76.24511719, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.24511719, 45.47168826 ], [ -76.24511719, 45.47554027 ], [ -76.23962402, 45.47554027 ], [ -76.23962402, 45.47168826 ], [ -76.24511719, 45.47168826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.25061035, 45.45242424 ], [ -76.25061035, 45.45627757 ], [ -76.24511719, 45.45627757 ], [ -76.24511719, 45.45242424 ], [ -76.25061035, 45.45242424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.25061035, 45.45627757 ], [ -76.25061035, 45.46013064 ], [ -76.24511719, 45.46013064 ], [ -76.24511719, 45.45627757 ], [ -76.25061035, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.25061035, 45.46013064 ], [ -76.25061035, 45.46398344 ], [ -76.24511719, 45.46398344 ], [ -76.24511719, 45.46013064 ], [ -76.25061035, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.25061035, 45.46398344 ], [ -76.25061035, 45.46783598 ], [ -76.24511719, 45.46783598 ], [ -76.24511719, 45.46398344 ], [ -76.25061035, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.25061035, 45.46783598 ], [ -76.25061035, 45.47168826 ], [ -76.24511719, 45.47168826 ], [ -76.24511719, 45.46783598 ], [ -76.25061035, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.25610352, 45.45627757 ], [ -76.25610352, 45.46013064 ], [ -76.25061035, 45.46013064 ], [ -76.25061035, 45.45627757 ], [ -76.25610352, 45.45627757 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.25610352, 45.46013064 ], [ -76.25610352, 45.46398344 ], [ -76.25061035, 45.46398344 ], [ -76.25061035, 45.46013064 ], [ -76.25610352, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.25610352, 45.46398344 ], [ -76.25610352, 45.46783598 ], [ -76.25061035, 45.46783598 ], [ -76.25061035, 45.46398344 ], [ -76.25610352, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.25610352, 45.46783598 ], [ -76.25610352, 45.47168826 ], [ -76.25061035, 45.47168826 ], [ -76.25061035, 45.46783598 ], [ -76.25610352, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.26159668, 45.46013064 ], [ -76.26159668, 45.46398344 ], [ -76.25610352, 45.46398344 ], [ -76.25610352, 45.46013064 ], [ -76.26159668, 45.46013064 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.26159668, 45.46398344 ], [ -76.26159668, 45.46783598 ], [ -76.25610352, 45.46783598 ], [ -76.25610352, 45.46398344 ], [ -76.26159668, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.26159668, 45.46783598 ], [ -76.26159668, 45.47168826 ], [ -76.25610352, 45.47168826 ], [ -76.25610352, 45.46783598 ], [ -76.26159668, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.26708984, 45.46398344 ], [ -76.26708984, 45.46783598 ], [ -76.26159668, 45.46783598 ], [ -76.26159668, 45.46398344 ], [ -76.26708984, 45.46398344 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.26708984, 45.46783598 ], [ -76.26708984, 45.47168826 ], [ -76.26159668, 45.47168826 ], [ -76.26159668, 45.46783598 ], [ -76.26708984, 45.46783598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.165286, 45.479514 ], [ -76.140095, 45.457437 ], [ -76.162348, 45.444872 ], [ -76.168656, 45.441087 ], [ -76.201963, 45.420225 ], [ -76.213668, 45.429276 ], [ -76.214261, 45.429917 ], [ -76.227477, 45.440383 ], [ -76.263056, 45.467983 ], [ -76.245084, 45.468609 ], [ -76.240206, 45.471202 ], [ -76.238518, 45.475254 ], [ -76.233483, 45.507829 ], [ -76.227816, 45.511836 ], [ -76.212117, 45.51623 ], [ -76.191776, 45.50154 ], [ -76.174016, 45.486911 ], [ -76.165286, 45.479514 ] ], [ [ -76.227618, 45.489247 ], [ -76.232113, 45.486983 ], [ -76.232151, 45.486379 ], [ -76.231812, 45.485106 ], [ -76.230698, 45.483236 ], [ -76.225664, 45.477365 ], [ -76.223568, 45.475174 ], [ -76.202829, 45.458815 ], [ -76.200229, 45.458822 ], [ -76.199069, 45.459164 ], [ -76.188361, 45.465784 ], [ -76.204505, 45.479018 ], [ -76.215555, 45.488534 ], [ -76.220249, 45.492175 ], [ -76.221154, 45.493315 ], [ -76.22631, 45.490189 ], [ -76.226543, 45.489754 ], [ -76.227618, 45.489247 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/edgeline.geojson ================================================ { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -80.160384, 32.766901 ], [ -80.160216, 32.766845 ], [ -80.159659, 32.766722 ], [ -80.159356, 32.766633 ], [ -80.159196, 32.766586 ], [ -80.159096, 32.766571 ], [ -80.159016, 32.766569 ], [ -80.158947, 32.766581 ], [ -80.158637, 32.766668 ], [ -80.158527, 32.766691 ], [ -80.158433, 32.766697 ], [ -80.158367, 32.76669 ], [ -80.158116, 32.766641 ], [ -80.157565, 32.766507 ], [ -80.157183, 32.766389 ], [ -80.156946, 32.76633 ], [ -80.156748, 32.766298 ], [ -80.156657, 32.766279 ], [ -80.156492, 32.766253 ], [ -80.15626, 32.766181 ], [ -80.156216, 32.766155 ], [ -80.156166, 32.766118 ], [ -80.156148, 32.7661 ], [ -80.156125, 32.766052 ], [ -80.156122, 32.766012 ], [ -80.156131, 32.765974 ], [ -80.156179, 32.765905 ], [ -80.156198, 32.765856 ], [ -80.15621, 32.765807 ], [ -80.15625, 32.76548 ], [ -80.156249, 32.765323 ], [ -80.156235, 32.765284 ], [ -80.156215, 32.765256 ], [ -80.156181, 32.765226 ] ] }, "properties": {} } ================================================ FILE: test/fixtures/edgeline_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.15625, 32.75032261 ], [ -80.15625, 32.76880048 ], [ -80.13427734, 32.76880048 ], [ -80.13427734, 32.75032261 ], [ -80.15625, 32.75032261 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.17822266, 32.75032261 ], [ -80.17822266, 32.76880048 ], [ -80.15625, 32.76880048 ], [ -80.15625, 32.75032261 ], [ -80.17822266, 32.75032261 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -80.160384, 32.766901 ], [ -80.160216, 32.766845 ], [ -80.159659, 32.766722 ], [ -80.159356, 32.766633 ], [ -80.159196, 32.766586 ], [ -80.159096, 32.766571 ], [ -80.159016, 32.766569 ], [ -80.158947, 32.766581 ], [ -80.158637, 32.766668 ], [ -80.158527, 32.766691 ], [ -80.158433, 32.766697 ], [ -80.158367, 32.76669 ], [ -80.158116, 32.766641 ], [ -80.157565, 32.766507 ], [ -80.157183, 32.766389 ], [ -80.156946, 32.76633 ], [ -80.156748, 32.766298 ], [ -80.156657, 32.766279 ], [ -80.156492, 32.766253 ], [ -80.15626, 32.766181 ], [ -80.156216, 32.766155 ], [ -80.156166, 32.766118 ], [ -80.156148, 32.7661 ], [ -80.156125, 32.766052 ], [ -80.156122, 32.766012 ], [ -80.156131, 32.765974 ], [ -80.156179, 32.765905 ], [ -80.156198, 32.765856 ], [ -80.15621, 32.765807 ], [ -80.15625, 32.76548 ], [ -80.156249, 32.765323 ], [ -80.156235, 32.765284 ], [ -80.156215, 32.765256 ], [ -80.156181, 32.765226 ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/highzoom.geojson ================================================ {"properties":{"osm_id":0},"geometry":{"type":"Polygon","coordinates":[[[-77.04474940896034,38.90019399459534],[-77.04473063349724,38.90019399459534],[-77.04473063349724,38.90027122854152],[-77.04474672675133,38.900273315944304],[-77.04474672675133,38.900457007149065],[-77.04394474625587,38.90017520794709],[-77.04394206404686,38.900173120541425],[-77.04384550452232,38.9001710331357],[-77.04384550452232,38.900141809449025],[-77.04365238547325,38.90007501240577],[-77.04365238547325,38.89989340762676],[-77.04371139407158,38.899916369176196],[-77.04371139407158,38.89986209641103],[-77.04369261860847,38.89986209641103],[-77.04369261860847,38.89969927786663],[-77.04452946782112,38.89969719044697],[-77.04460456967354,38.89967214140626],[-77.04460725188255,38.89969510302724],[-77.04474672675133,38.89969719044697],[-77.04474940896034,38.90019399459534],[-77.04474940896034,38.90019399459534],[-77.04474940896034,38.90019399459534]]]},"type":"Feature"} ================================================ FILE: test/fixtures/highzoom_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04368591, 38.89988401 ], [ -77.04368591, 38.89991741 ], [ -77.043643, 38.89991741 ], [ -77.043643, 38.89988401 ], [ -77.04368591, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04368591, 38.89991741 ], [ -77.04368591, 38.89995081 ], [ -77.043643, 38.89995081 ], [ -77.043643, 38.89991741 ], [ -77.04368591, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04368591, 38.89995081 ], [ -77.04368591, 38.89998421 ], [ -77.043643, 38.89998421 ], [ -77.043643, 38.89995081 ], [ -77.04368591, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04368591, 38.89998421 ], [ -77.04368591, 38.90001761 ], [ -77.043643, 38.90001761 ], [ -77.043643, 38.89998421 ], [ -77.04368591, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04368591, 38.90001761 ], [ -77.04368591, 38.90005101 ], [ -77.043643, 38.90005101 ], [ -77.043643, 38.90001761 ], [ -77.04368591, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04368591, 38.90005101 ], [ -77.04368591, 38.90008441 ], [ -77.043643, 38.90008441 ], [ -77.043643, 38.90005101 ], [ -77.04368591, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04368591, 38.90008441 ], [ -77.04368591, 38.9001178 ], [ -77.043643, 38.9001178 ], [ -77.043643, 38.90008441 ], [ -77.04368591, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89968362 ], [ -77.04372883, 38.89971702 ], [ -77.04368591, 38.89971702 ], [ -77.04368591, 38.89968362 ], [ -77.04372883, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89971702 ], [ -77.04372883, 38.89975042 ], [ -77.04368591, 38.89975042 ], [ -77.04368591, 38.89971702 ], [ -77.04372883, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89975042 ], [ -77.04372883, 38.89978382 ], [ -77.04368591, 38.89978382 ], [ -77.04368591, 38.89975042 ], [ -77.04372883, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89978382 ], [ -77.04372883, 38.89981722 ], [ -77.04368591, 38.89981722 ], [ -77.04368591, 38.89978382 ], [ -77.04372883, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89981722 ], [ -77.04372883, 38.89985062 ], [ -77.04368591, 38.89985062 ], [ -77.04368591, 38.89981722 ], [ -77.04372883, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89985062 ], [ -77.04372883, 38.89988401 ], [ -77.04368591, 38.89988401 ], [ -77.04368591, 38.89985062 ], [ -77.04372883, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89988401 ], [ -77.04372883, 38.89991741 ], [ -77.04368591, 38.89991741 ], [ -77.04368591, 38.89988401 ], [ -77.04372883, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89991741 ], [ -77.04372883, 38.89995081 ], [ -77.04368591, 38.89995081 ], [ -77.04368591, 38.89991741 ], [ -77.04372883, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89995081 ], [ -77.04372883, 38.89998421 ], [ -77.04368591, 38.89998421 ], [ -77.04368591, 38.89995081 ], [ -77.04372883, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.89998421 ], [ -77.04372883, 38.90001761 ], [ -77.04368591, 38.90001761 ], [ -77.04368591, 38.89998421 ], [ -77.04372883, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.90001761 ], [ -77.04372883, 38.90005101 ], [ -77.04368591, 38.90005101 ], [ -77.04368591, 38.90001761 ], [ -77.04372883, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.90005101 ], [ -77.04372883, 38.90008441 ], [ -77.04368591, 38.90008441 ], [ -77.04368591, 38.90005101 ], [ -77.04372883, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04372883, 38.90008441 ], [ -77.04372883, 38.9001178 ], [ -77.04368591, 38.9001178 ], [ -77.04368591, 38.90008441 ], [ -77.04372883, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89968362 ], [ -77.04377174, 38.89971702 ], [ -77.04372883, 38.89971702 ], [ -77.04372883, 38.89968362 ], [ -77.04377174, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89971702 ], [ -77.04377174, 38.89975042 ], [ -77.04372883, 38.89975042 ], [ -77.04372883, 38.89971702 ], [ -77.04377174, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89975042 ], [ -77.04377174, 38.89978382 ], [ -77.04372883, 38.89978382 ], [ -77.04372883, 38.89975042 ], [ -77.04377174, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89978382 ], [ -77.04377174, 38.89981722 ], [ -77.04372883, 38.89981722 ], [ -77.04372883, 38.89978382 ], [ -77.04377174, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89981722 ], [ -77.04377174, 38.89985062 ], [ -77.04372883, 38.89985062 ], [ -77.04372883, 38.89981722 ], [ -77.04377174, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89985062 ], [ -77.04377174, 38.89988401 ], [ -77.04372883, 38.89988401 ], [ -77.04372883, 38.89985062 ], [ -77.04377174, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89988401 ], [ -77.04377174, 38.89991741 ], [ -77.04372883, 38.89991741 ], [ -77.04372883, 38.89988401 ], [ -77.04377174, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89991741 ], [ -77.04377174, 38.89995081 ], [ -77.04372883, 38.89995081 ], [ -77.04372883, 38.89991741 ], [ -77.04377174, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89995081 ], [ -77.04377174, 38.89998421 ], [ -77.04372883, 38.89998421 ], [ -77.04372883, 38.89995081 ], [ -77.04377174, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.89998421 ], [ -77.04377174, 38.90001761 ], [ -77.04372883, 38.90001761 ], [ -77.04372883, 38.89998421 ], [ -77.04377174, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.90001761 ], [ -77.04377174, 38.90005101 ], [ -77.04372883, 38.90005101 ], [ -77.04372883, 38.90001761 ], [ -77.04377174, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.90005101 ], [ -77.04377174, 38.90008441 ], [ -77.04372883, 38.90008441 ], [ -77.04372883, 38.90005101 ], [ -77.04377174, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04377174, 38.90008441 ], [ -77.04377174, 38.9001178 ], [ -77.04372883, 38.9001178 ], [ -77.04372883, 38.90008441 ], [ -77.04377174, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89968362 ], [ -77.04381466, 38.89971702 ], [ -77.04377174, 38.89971702 ], [ -77.04377174, 38.89968362 ], [ -77.04381466, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89971702 ], [ -77.04381466, 38.89975042 ], [ -77.04377174, 38.89975042 ], [ -77.04377174, 38.89971702 ], [ -77.04381466, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89975042 ], [ -77.04381466, 38.89978382 ], [ -77.04377174, 38.89978382 ], [ -77.04377174, 38.89975042 ], [ -77.04381466, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89978382 ], [ -77.04381466, 38.89981722 ], [ -77.04377174, 38.89981722 ], [ -77.04377174, 38.89978382 ], [ -77.04381466, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89981722 ], [ -77.04381466, 38.89985062 ], [ -77.04377174, 38.89985062 ], [ -77.04377174, 38.89981722 ], [ -77.04381466, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89985062 ], [ -77.04381466, 38.89988401 ], [ -77.04377174, 38.89988401 ], [ -77.04377174, 38.89985062 ], [ -77.04381466, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89988401 ], [ -77.04381466, 38.89991741 ], [ -77.04377174, 38.89991741 ], [ -77.04377174, 38.89988401 ], [ -77.04381466, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89991741 ], [ -77.04381466, 38.89995081 ], [ -77.04377174, 38.89995081 ], [ -77.04377174, 38.89991741 ], [ -77.04381466, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89995081 ], [ -77.04381466, 38.89998421 ], [ -77.04377174, 38.89998421 ], [ -77.04377174, 38.89995081 ], [ -77.04381466, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.89998421 ], [ -77.04381466, 38.90001761 ], [ -77.04377174, 38.90001761 ], [ -77.04377174, 38.89998421 ], [ -77.04381466, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.90001761 ], [ -77.04381466, 38.90005101 ], [ -77.04377174, 38.90005101 ], [ -77.04377174, 38.90001761 ], [ -77.04381466, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.90005101 ], [ -77.04381466, 38.90008441 ], [ -77.04377174, 38.90008441 ], [ -77.04377174, 38.90005101 ], [ -77.04381466, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.90008441 ], [ -77.04381466, 38.9001178 ], [ -77.04377174, 38.9001178 ], [ -77.04377174, 38.90008441 ], [ -77.04381466, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04381466, 38.9001178 ], [ -77.04381466, 38.9001512 ], [ -77.04377174, 38.9001512 ], [ -77.04377174, 38.9001178 ], [ -77.04381466, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89968362 ], [ -77.04385757, 38.89971702 ], [ -77.04381466, 38.89971702 ], [ -77.04381466, 38.89968362 ], [ -77.04385757, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89971702 ], [ -77.04385757, 38.89975042 ], [ -77.04381466, 38.89975042 ], [ -77.04381466, 38.89971702 ], [ -77.04385757, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89975042 ], [ -77.04385757, 38.89978382 ], [ -77.04381466, 38.89978382 ], [ -77.04381466, 38.89975042 ], [ -77.04385757, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89978382 ], [ -77.04385757, 38.89981722 ], [ -77.04381466, 38.89981722 ], [ -77.04381466, 38.89978382 ], [ -77.04385757, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89981722 ], [ -77.04385757, 38.89985062 ], [ -77.04381466, 38.89985062 ], [ -77.04381466, 38.89981722 ], [ -77.04385757, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89985062 ], [ -77.04385757, 38.89988401 ], [ -77.04381466, 38.89988401 ], [ -77.04381466, 38.89985062 ], [ -77.04385757, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89988401 ], [ -77.04385757, 38.89991741 ], [ -77.04381466, 38.89991741 ], [ -77.04381466, 38.89988401 ], [ -77.04385757, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89991741 ], [ -77.04385757, 38.89995081 ], [ -77.04381466, 38.89995081 ], [ -77.04381466, 38.89991741 ], [ -77.04385757, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89995081 ], [ -77.04385757, 38.89998421 ], [ -77.04381466, 38.89998421 ], [ -77.04381466, 38.89995081 ], [ -77.04385757, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.89998421 ], [ -77.04385757, 38.90001761 ], [ -77.04381466, 38.90001761 ], [ -77.04381466, 38.89998421 ], [ -77.04385757, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.90001761 ], [ -77.04385757, 38.90005101 ], [ -77.04381466, 38.90005101 ], [ -77.04381466, 38.90001761 ], [ -77.04385757, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.90005101 ], [ -77.04385757, 38.90008441 ], [ -77.04381466, 38.90008441 ], [ -77.04381466, 38.90005101 ], [ -77.04385757, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.90008441 ], [ -77.04385757, 38.9001178 ], [ -77.04381466, 38.9001178 ], [ -77.04381466, 38.90008441 ], [ -77.04385757, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.9001178 ], [ -77.04385757, 38.9001512 ], [ -77.04381466, 38.9001512 ], [ -77.04381466, 38.9001178 ], [ -77.04385757, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04385757, 38.9001512 ], [ -77.04385757, 38.9001846 ], [ -77.04381466, 38.9001846 ], [ -77.04381466, 38.9001512 ], [ -77.04385757, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89968362 ], [ -77.04390049, 38.89971702 ], [ -77.04385757, 38.89971702 ], [ -77.04385757, 38.89968362 ], [ -77.04390049, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89971702 ], [ -77.04390049, 38.89975042 ], [ -77.04385757, 38.89975042 ], [ -77.04385757, 38.89971702 ], [ -77.04390049, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89975042 ], [ -77.04390049, 38.89978382 ], [ -77.04385757, 38.89978382 ], [ -77.04385757, 38.89975042 ], [ -77.04390049, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89978382 ], [ -77.04390049, 38.89981722 ], [ -77.04385757, 38.89981722 ], [ -77.04385757, 38.89978382 ], [ -77.04390049, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89981722 ], [ -77.04390049, 38.89985062 ], [ -77.04385757, 38.89985062 ], [ -77.04385757, 38.89981722 ], [ -77.04390049, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89985062 ], [ -77.04390049, 38.89988401 ], [ -77.04385757, 38.89988401 ], [ -77.04385757, 38.89985062 ], [ -77.04390049, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89988401 ], [ -77.04390049, 38.89991741 ], [ -77.04385757, 38.89991741 ], [ -77.04385757, 38.89988401 ], [ -77.04390049, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89991741 ], [ -77.04390049, 38.89995081 ], [ -77.04385757, 38.89995081 ], [ -77.04385757, 38.89991741 ], [ -77.04390049, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89995081 ], [ -77.04390049, 38.89998421 ], [ -77.04385757, 38.89998421 ], [ -77.04385757, 38.89995081 ], [ -77.04390049, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.89998421 ], [ -77.04390049, 38.90001761 ], [ -77.04385757, 38.90001761 ], [ -77.04385757, 38.89998421 ], [ -77.04390049, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.90001761 ], [ -77.04390049, 38.90005101 ], [ -77.04385757, 38.90005101 ], [ -77.04385757, 38.90001761 ], [ -77.04390049, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.90005101 ], [ -77.04390049, 38.90008441 ], [ -77.04385757, 38.90008441 ], [ -77.04385757, 38.90005101 ], [ -77.04390049, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.90008441 ], [ -77.04390049, 38.9001178 ], [ -77.04385757, 38.9001178 ], [ -77.04385757, 38.90008441 ], [ -77.04390049, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.9001178 ], [ -77.04390049, 38.9001512 ], [ -77.04385757, 38.9001512 ], [ -77.04385757, 38.9001178 ], [ -77.04390049, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04390049, 38.9001512 ], [ -77.04390049, 38.9001846 ], [ -77.04385757, 38.9001846 ], [ -77.04385757, 38.9001512 ], [ -77.04390049, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89968362 ], [ -77.04394341, 38.89971702 ], [ -77.04390049, 38.89971702 ], [ -77.04390049, 38.89968362 ], [ -77.04394341, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89971702 ], [ -77.04394341, 38.89975042 ], [ -77.04390049, 38.89975042 ], [ -77.04390049, 38.89971702 ], [ -77.04394341, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89975042 ], [ -77.04394341, 38.89978382 ], [ -77.04390049, 38.89978382 ], [ -77.04390049, 38.89975042 ], [ -77.04394341, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89978382 ], [ -77.04394341, 38.89981722 ], [ -77.04390049, 38.89981722 ], [ -77.04390049, 38.89978382 ], [ -77.04394341, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89981722 ], [ -77.04394341, 38.89985062 ], [ -77.04390049, 38.89985062 ], [ -77.04390049, 38.89981722 ], [ -77.04394341, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89985062 ], [ -77.04394341, 38.89988401 ], [ -77.04390049, 38.89988401 ], [ -77.04390049, 38.89985062 ], [ -77.04394341, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89988401 ], [ -77.04394341, 38.89991741 ], [ -77.04390049, 38.89991741 ], [ -77.04390049, 38.89988401 ], [ -77.04394341, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89991741 ], [ -77.04394341, 38.89995081 ], [ -77.04390049, 38.89995081 ], [ -77.04390049, 38.89991741 ], [ -77.04394341, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89995081 ], [ -77.04394341, 38.89998421 ], [ -77.04390049, 38.89998421 ], [ -77.04390049, 38.89995081 ], [ -77.04394341, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.89998421 ], [ -77.04394341, 38.90001761 ], [ -77.04390049, 38.90001761 ], [ -77.04390049, 38.89998421 ], [ -77.04394341, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.90001761 ], [ -77.04394341, 38.90005101 ], [ -77.04390049, 38.90005101 ], [ -77.04390049, 38.90001761 ], [ -77.04394341, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.90005101 ], [ -77.04394341, 38.90008441 ], [ -77.04390049, 38.90008441 ], [ -77.04390049, 38.90005101 ], [ -77.04394341, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.90008441 ], [ -77.04394341, 38.9001178 ], [ -77.04390049, 38.9001178 ], [ -77.04390049, 38.90008441 ], [ -77.04394341, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.9001178 ], [ -77.04394341, 38.9001512 ], [ -77.04390049, 38.9001512 ], [ -77.04390049, 38.9001178 ], [ -77.04394341, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04394341, 38.9001512 ], [ -77.04394341, 38.9001846 ], [ -77.04390049, 38.9001846 ], [ -77.04390049, 38.9001512 ], [ -77.04394341, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89968362 ], [ -77.04398632, 38.89971702 ], [ -77.04394341, 38.89971702 ], [ -77.04394341, 38.89968362 ], [ -77.04398632, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89971702 ], [ -77.04398632, 38.89975042 ], [ -77.04394341, 38.89975042 ], [ -77.04394341, 38.89971702 ], [ -77.04398632, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89975042 ], [ -77.04398632, 38.89978382 ], [ -77.04394341, 38.89978382 ], [ -77.04394341, 38.89975042 ], [ -77.04398632, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89978382 ], [ -77.04398632, 38.89981722 ], [ -77.04394341, 38.89981722 ], [ -77.04394341, 38.89978382 ], [ -77.04398632, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89981722 ], [ -77.04398632, 38.89985062 ], [ -77.04394341, 38.89985062 ], [ -77.04394341, 38.89981722 ], [ -77.04398632, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89985062 ], [ -77.04398632, 38.89988401 ], [ -77.04394341, 38.89988401 ], [ -77.04394341, 38.89985062 ], [ -77.04398632, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89988401 ], [ -77.04398632, 38.89991741 ], [ -77.04394341, 38.89991741 ], [ -77.04394341, 38.89988401 ], [ -77.04398632, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89991741 ], [ -77.04398632, 38.89995081 ], [ -77.04394341, 38.89995081 ], [ -77.04394341, 38.89991741 ], [ -77.04398632, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89995081 ], [ -77.04398632, 38.89998421 ], [ -77.04394341, 38.89998421 ], [ -77.04394341, 38.89995081 ], [ -77.04398632, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.89998421 ], [ -77.04398632, 38.90001761 ], [ -77.04394341, 38.90001761 ], [ -77.04394341, 38.89998421 ], [ -77.04398632, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.90001761 ], [ -77.04398632, 38.90005101 ], [ -77.04394341, 38.90005101 ], [ -77.04394341, 38.90001761 ], [ -77.04398632, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.90005101 ], [ -77.04398632, 38.90008441 ], [ -77.04394341, 38.90008441 ], [ -77.04394341, 38.90005101 ], [ -77.04398632, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.90008441 ], [ -77.04398632, 38.9001178 ], [ -77.04394341, 38.9001178 ], [ -77.04394341, 38.90008441 ], [ -77.04398632, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.9001178 ], [ -77.04398632, 38.9001512 ], [ -77.04394341, 38.9001512 ], [ -77.04394341, 38.9001178 ], [ -77.04398632, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.9001512 ], [ -77.04398632, 38.9001846 ], [ -77.04394341, 38.9001846 ], [ -77.04394341, 38.9001512 ], [ -77.04398632, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04398632, 38.9001846 ], [ -77.04398632, 38.900218 ], [ -77.04394341, 38.900218 ], [ -77.04394341, 38.9001846 ], [ -77.04398632, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89968362 ], [ -77.04402924, 38.89971702 ], [ -77.04398632, 38.89971702 ], [ -77.04398632, 38.89968362 ], [ -77.04402924, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89971702 ], [ -77.04402924, 38.89975042 ], [ -77.04398632, 38.89975042 ], [ -77.04398632, 38.89971702 ], [ -77.04402924, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89975042 ], [ -77.04402924, 38.89978382 ], [ -77.04398632, 38.89978382 ], [ -77.04398632, 38.89975042 ], [ -77.04402924, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89978382 ], [ -77.04402924, 38.89981722 ], [ -77.04398632, 38.89981722 ], [ -77.04398632, 38.89978382 ], [ -77.04402924, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89981722 ], [ -77.04402924, 38.89985062 ], [ -77.04398632, 38.89985062 ], [ -77.04398632, 38.89981722 ], [ -77.04402924, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89985062 ], [ -77.04402924, 38.89988401 ], [ -77.04398632, 38.89988401 ], [ -77.04398632, 38.89985062 ], [ -77.04402924, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89988401 ], [ -77.04402924, 38.89991741 ], [ -77.04398632, 38.89991741 ], [ -77.04398632, 38.89988401 ], [ -77.04402924, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89991741 ], [ -77.04402924, 38.89995081 ], [ -77.04398632, 38.89995081 ], [ -77.04398632, 38.89991741 ], [ -77.04402924, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89995081 ], [ -77.04402924, 38.89998421 ], [ -77.04398632, 38.89998421 ], [ -77.04398632, 38.89995081 ], [ -77.04402924, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.89998421 ], [ -77.04402924, 38.90001761 ], [ -77.04398632, 38.90001761 ], [ -77.04398632, 38.89998421 ], [ -77.04402924, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.90001761 ], [ -77.04402924, 38.90005101 ], [ -77.04398632, 38.90005101 ], [ -77.04398632, 38.90001761 ], [ -77.04402924, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.90005101 ], [ -77.04402924, 38.90008441 ], [ -77.04398632, 38.90008441 ], [ -77.04398632, 38.90005101 ], [ -77.04402924, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.90008441 ], [ -77.04402924, 38.9001178 ], [ -77.04398632, 38.9001178 ], [ -77.04398632, 38.90008441 ], [ -77.04402924, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.9001178 ], [ -77.04402924, 38.9001512 ], [ -77.04398632, 38.9001512 ], [ -77.04398632, 38.9001178 ], [ -77.04402924, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.9001512 ], [ -77.04402924, 38.9001846 ], [ -77.04398632, 38.9001846 ], [ -77.04398632, 38.9001512 ], [ -77.04402924, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04402924, 38.9001846 ], [ -77.04402924, 38.900218 ], [ -77.04398632, 38.900218 ], [ -77.04398632, 38.9001846 ], [ -77.04402924, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89968362 ], [ -77.04407215, 38.89971702 ], [ -77.04402924, 38.89971702 ], [ -77.04402924, 38.89968362 ], [ -77.04407215, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89971702 ], [ -77.04407215, 38.89975042 ], [ -77.04402924, 38.89975042 ], [ -77.04402924, 38.89971702 ], [ -77.04407215, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89975042 ], [ -77.04407215, 38.89978382 ], [ -77.04402924, 38.89978382 ], [ -77.04402924, 38.89975042 ], [ -77.04407215, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89978382 ], [ -77.04407215, 38.89981722 ], [ -77.04402924, 38.89981722 ], [ -77.04402924, 38.89978382 ], [ -77.04407215, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89981722 ], [ -77.04407215, 38.89985062 ], [ -77.04402924, 38.89985062 ], [ -77.04402924, 38.89981722 ], [ -77.04407215, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89985062 ], [ -77.04407215, 38.89988401 ], [ -77.04402924, 38.89988401 ], [ -77.04402924, 38.89985062 ], [ -77.04407215, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89988401 ], [ -77.04407215, 38.89991741 ], [ -77.04402924, 38.89991741 ], [ -77.04402924, 38.89988401 ], [ -77.04407215, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89991741 ], [ -77.04407215, 38.89995081 ], [ -77.04402924, 38.89995081 ], [ -77.04402924, 38.89991741 ], [ -77.04407215, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89995081 ], [ -77.04407215, 38.89998421 ], [ -77.04402924, 38.89998421 ], [ -77.04402924, 38.89995081 ], [ -77.04407215, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.89998421 ], [ -77.04407215, 38.90001761 ], [ -77.04402924, 38.90001761 ], [ -77.04402924, 38.89998421 ], [ -77.04407215, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.90001761 ], [ -77.04407215, 38.90005101 ], [ -77.04402924, 38.90005101 ], [ -77.04402924, 38.90001761 ], [ -77.04407215, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.90005101 ], [ -77.04407215, 38.90008441 ], [ -77.04402924, 38.90008441 ], [ -77.04402924, 38.90005101 ], [ -77.04407215, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.90008441 ], [ -77.04407215, 38.9001178 ], [ -77.04402924, 38.9001178 ], [ -77.04402924, 38.90008441 ], [ -77.04407215, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.9001178 ], [ -77.04407215, 38.9001512 ], [ -77.04402924, 38.9001512 ], [ -77.04402924, 38.9001178 ], [ -77.04407215, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.9001512 ], [ -77.04407215, 38.9001846 ], [ -77.04402924, 38.9001846 ], [ -77.04402924, 38.9001512 ], [ -77.04407215, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.9001846 ], [ -77.04407215, 38.900218 ], [ -77.04402924, 38.900218 ], [ -77.04402924, 38.9001846 ], [ -77.04407215, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04407215, 38.900218 ], [ -77.04407215, 38.9002514 ], [ -77.04402924, 38.9002514 ], [ -77.04402924, 38.900218 ], [ -77.04407215, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89968362 ], [ -77.04411507, 38.89971702 ], [ -77.04407215, 38.89971702 ], [ -77.04407215, 38.89968362 ], [ -77.04411507, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89971702 ], [ -77.04411507, 38.89975042 ], [ -77.04407215, 38.89975042 ], [ -77.04407215, 38.89971702 ], [ -77.04411507, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89975042 ], [ -77.04411507, 38.89978382 ], [ -77.04407215, 38.89978382 ], [ -77.04407215, 38.89975042 ], [ -77.04411507, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89978382 ], [ -77.04411507, 38.89981722 ], [ -77.04407215, 38.89981722 ], [ -77.04407215, 38.89978382 ], [ -77.04411507, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89981722 ], [ -77.04411507, 38.89985062 ], [ -77.04407215, 38.89985062 ], [ -77.04407215, 38.89981722 ], [ -77.04411507, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89985062 ], [ -77.04411507, 38.89988401 ], [ -77.04407215, 38.89988401 ], [ -77.04407215, 38.89985062 ], [ -77.04411507, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89988401 ], [ -77.04411507, 38.89991741 ], [ -77.04407215, 38.89991741 ], [ -77.04407215, 38.89988401 ], [ -77.04411507, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89991741 ], [ -77.04411507, 38.89995081 ], [ -77.04407215, 38.89995081 ], [ -77.04407215, 38.89991741 ], [ -77.04411507, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89995081 ], [ -77.04411507, 38.89998421 ], [ -77.04407215, 38.89998421 ], [ -77.04407215, 38.89995081 ], [ -77.04411507, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.89998421 ], [ -77.04411507, 38.90001761 ], [ -77.04407215, 38.90001761 ], [ -77.04407215, 38.89998421 ], [ -77.04411507, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.90001761 ], [ -77.04411507, 38.90005101 ], [ -77.04407215, 38.90005101 ], [ -77.04407215, 38.90001761 ], [ -77.04411507, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.90005101 ], [ -77.04411507, 38.90008441 ], [ -77.04407215, 38.90008441 ], [ -77.04407215, 38.90005101 ], [ -77.04411507, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.90008441 ], [ -77.04411507, 38.9001178 ], [ -77.04407215, 38.9001178 ], [ -77.04407215, 38.90008441 ], [ -77.04411507, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.9001178 ], [ -77.04411507, 38.9001512 ], [ -77.04407215, 38.9001512 ], [ -77.04407215, 38.9001178 ], [ -77.04411507, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.9001512 ], [ -77.04411507, 38.9001846 ], [ -77.04407215, 38.9001846 ], [ -77.04407215, 38.9001512 ], [ -77.04411507, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.9001846 ], [ -77.04411507, 38.900218 ], [ -77.04407215, 38.900218 ], [ -77.04407215, 38.9001846 ], [ -77.04411507, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04411507, 38.900218 ], [ -77.04411507, 38.9002514 ], [ -77.04407215, 38.9002514 ], [ -77.04407215, 38.900218 ], [ -77.04411507, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89968362 ], [ -77.04415798, 38.89971702 ], [ -77.04411507, 38.89971702 ], [ -77.04411507, 38.89968362 ], [ -77.04415798, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89971702 ], [ -77.04415798, 38.89975042 ], [ -77.04411507, 38.89975042 ], [ -77.04411507, 38.89971702 ], [ -77.04415798, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89975042 ], [ -77.04415798, 38.89978382 ], [ -77.04411507, 38.89978382 ], [ -77.04411507, 38.89975042 ], [ -77.04415798, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89978382 ], [ -77.04415798, 38.89981722 ], [ -77.04411507, 38.89981722 ], [ -77.04411507, 38.89978382 ], [ -77.04415798, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89981722 ], [ -77.04415798, 38.89985062 ], [ -77.04411507, 38.89985062 ], [ -77.04411507, 38.89981722 ], [ -77.04415798, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89985062 ], [ -77.04415798, 38.89988401 ], [ -77.04411507, 38.89988401 ], [ -77.04411507, 38.89985062 ], [ -77.04415798, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89988401 ], [ -77.04415798, 38.89991741 ], [ -77.04411507, 38.89991741 ], [ -77.04411507, 38.89988401 ], [ -77.04415798, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89991741 ], [ -77.04415798, 38.89995081 ], [ -77.04411507, 38.89995081 ], [ -77.04411507, 38.89991741 ], [ -77.04415798, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89995081 ], [ -77.04415798, 38.89998421 ], [ -77.04411507, 38.89998421 ], [ -77.04411507, 38.89995081 ], [ -77.04415798, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.89998421 ], [ -77.04415798, 38.90001761 ], [ -77.04411507, 38.90001761 ], [ -77.04411507, 38.89998421 ], [ -77.04415798, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.90001761 ], [ -77.04415798, 38.90005101 ], [ -77.04411507, 38.90005101 ], [ -77.04411507, 38.90001761 ], [ -77.04415798, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.90005101 ], [ -77.04415798, 38.90008441 ], [ -77.04411507, 38.90008441 ], [ -77.04411507, 38.90005101 ], [ -77.04415798, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.90008441 ], [ -77.04415798, 38.9001178 ], [ -77.04411507, 38.9001178 ], [ -77.04411507, 38.90008441 ], [ -77.04415798, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.9001178 ], [ -77.04415798, 38.9001512 ], [ -77.04411507, 38.9001512 ], [ -77.04411507, 38.9001178 ], [ -77.04415798, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.9001512 ], [ -77.04415798, 38.9001846 ], [ -77.04411507, 38.9001846 ], [ -77.04411507, 38.9001512 ], [ -77.04415798, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.9001846 ], [ -77.04415798, 38.900218 ], [ -77.04411507, 38.900218 ], [ -77.04411507, 38.9001846 ], [ -77.04415798, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04415798, 38.900218 ], [ -77.04415798, 38.9002514 ], [ -77.04411507, 38.9002514 ], [ -77.04411507, 38.900218 ], [ -77.04415798, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89968362 ], [ -77.0442009, 38.89971702 ], [ -77.04415798, 38.89971702 ], [ -77.04415798, 38.89968362 ], [ -77.0442009, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89971702 ], [ -77.0442009, 38.89975042 ], [ -77.04415798, 38.89975042 ], [ -77.04415798, 38.89971702 ], [ -77.0442009, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89975042 ], [ -77.0442009, 38.89978382 ], [ -77.04415798, 38.89978382 ], [ -77.04415798, 38.89975042 ], [ -77.0442009, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89978382 ], [ -77.0442009, 38.89981722 ], [ -77.04415798, 38.89981722 ], [ -77.04415798, 38.89978382 ], [ -77.0442009, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89981722 ], [ -77.0442009, 38.89985062 ], [ -77.04415798, 38.89985062 ], [ -77.04415798, 38.89981722 ], [ -77.0442009, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89985062 ], [ -77.0442009, 38.89988401 ], [ -77.04415798, 38.89988401 ], [ -77.04415798, 38.89985062 ], [ -77.0442009, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89988401 ], [ -77.0442009, 38.89991741 ], [ -77.04415798, 38.89991741 ], [ -77.04415798, 38.89988401 ], [ -77.0442009, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89991741 ], [ -77.0442009, 38.89995081 ], [ -77.04415798, 38.89995081 ], [ -77.04415798, 38.89991741 ], [ -77.0442009, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89995081 ], [ -77.0442009, 38.89998421 ], [ -77.04415798, 38.89998421 ], [ -77.04415798, 38.89995081 ], [ -77.0442009, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.89998421 ], [ -77.0442009, 38.90001761 ], [ -77.04415798, 38.90001761 ], [ -77.04415798, 38.89998421 ], [ -77.0442009, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.90001761 ], [ -77.0442009, 38.90005101 ], [ -77.04415798, 38.90005101 ], [ -77.04415798, 38.90001761 ], [ -77.0442009, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.90005101 ], [ -77.0442009, 38.90008441 ], [ -77.04415798, 38.90008441 ], [ -77.04415798, 38.90005101 ], [ -77.0442009, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.90008441 ], [ -77.0442009, 38.9001178 ], [ -77.04415798, 38.9001178 ], [ -77.04415798, 38.90008441 ], [ -77.0442009, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.9001178 ], [ -77.0442009, 38.9001512 ], [ -77.04415798, 38.9001512 ], [ -77.04415798, 38.9001178 ], [ -77.0442009, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.9001512 ], [ -77.0442009, 38.9001846 ], [ -77.04415798, 38.9001846 ], [ -77.04415798, 38.9001512 ], [ -77.0442009, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.9001846 ], [ -77.0442009, 38.900218 ], [ -77.04415798, 38.900218 ], [ -77.04415798, 38.9001846 ], [ -77.0442009, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.900218 ], [ -77.0442009, 38.9002514 ], [ -77.04415798, 38.9002514 ], [ -77.04415798, 38.900218 ], [ -77.0442009, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0442009, 38.9002514 ], [ -77.0442009, 38.9002848 ], [ -77.04415798, 38.9002848 ], [ -77.04415798, 38.9002514 ], [ -77.0442009, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89968362 ], [ -77.04424381, 38.89971702 ], [ -77.0442009, 38.89971702 ], [ -77.0442009, 38.89968362 ], [ -77.04424381, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89971702 ], [ -77.04424381, 38.89975042 ], [ -77.0442009, 38.89975042 ], [ -77.0442009, 38.89971702 ], [ -77.04424381, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89975042 ], [ -77.04424381, 38.89978382 ], [ -77.0442009, 38.89978382 ], [ -77.0442009, 38.89975042 ], [ -77.04424381, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89978382 ], [ -77.04424381, 38.89981722 ], [ -77.0442009, 38.89981722 ], [ -77.0442009, 38.89978382 ], [ -77.04424381, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89981722 ], [ -77.04424381, 38.89985062 ], [ -77.0442009, 38.89985062 ], [ -77.0442009, 38.89981722 ], [ -77.04424381, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89985062 ], [ -77.04424381, 38.89988401 ], [ -77.0442009, 38.89988401 ], [ -77.0442009, 38.89985062 ], [ -77.04424381, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89988401 ], [ -77.04424381, 38.89991741 ], [ -77.0442009, 38.89991741 ], [ -77.0442009, 38.89988401 ], [ -77.04424381, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89991741 ], [ -77.04424381, 38.89995081 ], [ -77.0442009, 38.89995081 ], [ -77.0442009, 38.89991741 ], [ -77.04424381, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89995081 ], [ -77.04424381, 38.89998421 ], [ -77.0442009, 38.89998421 ], [ -77.0442009, 38.89995081 ], [ -77.04424381, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.89998421 ], [ -77.04424381, 38.90001761 ], [ -77.0442009, 38.90001761 ], [ -77.0442009, 38.89998421 ], [ -77.04424381, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.90001761 ], [ -77.04424381, 38.90005101 ], [ -77.0442009, 38.90005101 ], [ -77.0442009, 38.90001761 ], [ -77.04424381, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.90005101 ], [ -77.04424381, 38.90008441 ], [ -77.0442009, 38.90008441 ], [ -77.0442009, 38.90005101 ], [ -77.04424381, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.90008441 ], [ -77.04424381, 38.9001178 ], [ -77.0442009, 38.9001178 ], [ -77.0442009, 38.90008441 ], [ -77.04424381, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.9001178 ], [ -77.04424381, 38.9001512 ], [ -77.0442009, 38.9001512 ], [ -77.0442009, 38.9001178 ], [ -77.04424381, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.9001512 ], [ -77.04424381, 38.9001846 ], [ -77.0442009, 38.9001846 ], [ -77.0442009, 38.9001512 ], [ -77.04424381, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.9001846 ], [ -77.04424381, 38.900218 ], [ -77.0442009, 38.900218 ], [ -77.0442009, 38.9001846 ], [ -77.04424381, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.900218 ], [ -77.04424381, 38.9002514 ], [ -77.0442009, 38.9002514 ], [ -77.0442009, 38.900218 ], [ -77.04424381, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04424381, 38.9002514 ], [ -77.04424381, 38.9002848 ], [ -77.0442009, 38.9002848 ], [ -77.0442009, 38.9002514 ], [ -77.04424381, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89968362 ], [ -77.04428673, 38.89971702 ], [ -77.04424381, 38.89971702 ], [ -77.04424381, 38.89968362 ], [ -77.04428673, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89971702 ], [ -77.04428673, 38.89975042 ], [ -77.04424381, 38.89975042 ], [ -77.04424381, 38.89971702 ], [ -77.04428673, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89975042 ], [ -77.04428673, 38.89978382 ], [ -77.04424381, 38.89978382 ], [ -77.04424381, 38.89975042 ], [ -77.04428673, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89978382 ], [ -77.04428673, 38.89981722 ], [ -77.04424381, 38.89981722 ], [ -77.04424381, 38.89978382 ], [ -77.04428673, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89981722 ], [ -77.04428673, 38.89985062 ], [ -77.04424381, 38.89985062 ], [ -77.04424381, 38.89981722 ], [ -77.04428673, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89985062 ], [ -77.04428673, 38.89988401 ], [ -77.04424381, 38.89988401 ], [ -77.04424381, 38.89985062 ], [ -77.04428673, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89988401 ], [ -77.04428673, 38.89991741 ], [ -77.04424381, 38.89991741 ], [ -77.04424381, 38.89988401 ], [ -77.04428673, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89991741 ], [ -77.04428673, 38.89995081 ], [ -77.04424381, 38.89995081 ], [ -77.04424381, 38.89991741 ], [ -77.04428673, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89995081 ], [ -77.04428673, 38.89998421 ], [ -77.04424381, 38.89998421 ], [ -77.04424381, 38.89995081 ], [ -77.04428673, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.89998421 ], [ -77.04428673, 38.90001761 ], [ -77.04424381, 38.90001761 ], [ -77.04424381, 38.89998421 ], [ -77.04428673, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.90001761 ], [ -77.04428673, 38.90005101 ], [ -77.04424381, 38.90005101 ], [ -77.04424381, 38.90001761 ], [ -77.04428673, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.90005101 ], [ -77.04428673, 38.90008441 ], [ -77.04424381, 38.90008441 ], [ -77.04424381, 38.90005101 ], [ -77.04428673, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.90008441 ], [ -77.04428673, 38.9001178 ], [ -77.04424381, 38.9001178 ], [ -77.04424381, 38.90008441 ], [ -77.04428673, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.9001178 ], [ -77.04428673, 38.9001512 ], [ -77.04424381, 38.9001512 ], [ -77.04424381, 38.9001178 ], [ -77.04428673, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.9001512 ], [ -77.04428673, 38.9001846 ], [ -77.04424381, 38.9001846 ], [ -77.04424381, 38.9001512 ], [ -77.04428673, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.9001846 ], [ -77.04428673, 38.900218 ], [ -77.04424381, 38.900218 ], [ -77.04424381, 38.9001846 ], [ -77.04428673, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.900218 ], [ -77.04428673, 38.9002514 ], [ -77.04424381, 38.9002514 ], [ -77.04424381, 38.900218 ], [ -77.04428673, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.9002514 ], [ -77.04428673, 38.9002848 ], [ -77.04424381, 38.9002848 ], [ -77.04424381, 38.9002514 ], [ -77.04428673, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04428673, 38.9002848 ], [ -77.04428673, 38.9003182 ], [ -77.04424381, 38.9003182 ], [ -77.04424381, 38.9002848 ], [ -77.04428673, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89968362 ], [ -77.04432964, 38.89971702 ], [ -77.04428673, 38.89971702 ], [ -77.04428673, 38.89968362 ], [ -77.04432964, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89971702 ], [ -77.04432964, 38.89975042 ], [ -77.04428673, 38.89975042 ], [ -77.04428673, 38.89971702 ], [ -77.04432964, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89975042 ], [ -77.04432964, 38.89978382 ], [ -77.04428673, 38.89978382 ], [ -77.04428673, 38.89975042 ], [ -77.04432964, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89978382 ], [ -77.04432964, 38.89981722 ], [ -77.04428673, 38.89981722 ], [ -77.04428673, 38.89978382 ], [ -77.04432964, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89981722 ], [ -77.04432964, 38.89985062 ], [ -77.04428673, 38.89985062 ], [ -77.04428673, 38.89981722 ], [ -77.04432964, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89985062 ], [ -77.04432964, 38.89988401 ], [ -77.04428673, 38.89988401 ], [ -77.04428673, 38.89985062 ], [ -77.04432964, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89988401 ], [ -77.04432964, 38.89991741 ], [ -77.04428673, 38.89991741 ], [ -77.04428673, 38.89988401 ], [ -77.04432964, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89991741 ], [ -77.04432964, 38.89995081 ], [ -77.04428673, 38.89995081 ], [ -77.04428673, 38.89991741 ], [ -77.04432964, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89995081 ], [ -77.04432964, 38.89998421 ], [ -77.04428673, 38.89998421 ], [ -77.04428673, 38.89995081 ], [ -77.04432964, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.89998421 ], [ -77.04432964, 38.90001761 ], [ -77.04428673, 38.90001761 ], [ -77.04428673, 38.89998421 ], [ -77.04432964, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.90001761 ], [ -77.04432964, 38.90005101 ], [ -77.04428673, 38.90005101 ], [ -77.04428673, 38.90001761 ], [ -77.04432964, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.90005101 ], [ -77.04432964, 38.90008441 ], [ -77.04428673, 38.90008441 ], [ -77.04428673, 38.90005101 ], [ -77.04432964, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.90008441 ], [ -77.04432964, 38.9001178 ], [ -77.04428673, 38.9001178 ], [ -77.04428673, 38.90008441 ], [ -77.04432964, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.9001178 ], [ -77.04432964, 38.9001512 ], [ -77.04428673, 38.9001512 ], [ -77.04428673, 38.9001178 ], [ -77.04432964, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.9001512 ], [ -77.04432964, 38.9001846 ], [ -77.04428673, 38.9001846 ], [ -77.04428673, 38.9001512 ], [ -77.04432964, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.9001846 ], [ -77.04432964, 38.900218 ], [ -77.04428673, 38.900218 ], [ -77.04428673, 38.9001846 ], [ -77.04432964, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.900218 ], [ -77.04432964, 38.9002514 ], [ -77.04428673, 38.9002514 ], [ -77.04428673, 38.900218 ], [ -77.04432964, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.9002514 ], [ -77.04432964, 38.9002848 ], [ -77.04428673, 38.9002848 ], [ -77.04428673, 38.9002514 ], [ -77.04432964, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04432964, 38.9002848 ], [ -77.04432964, 38.9003182 ], [ -77.04428673, 38.9003182 ], [ -77.04428673, 38.9002848 ], [ -77.04432964, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89968362 ], [ -77.04437256, 38.89971702 ], [ -77.04432964, 38.89971702 ], [ -77.04432964, 38.89968362 ], [ -77.04437256, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89971702 ], [ -77.04437256, 38.89975042 ], [ -77.04432964, 38.89975042 ], [ -77.04432964, 38.89971702 ], [ -77.04437256, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89975042 ], [ -77.04437256, 38.89978382 ], [ -77.04432964, 38.89978382 ], [ -77.04432964, 38.89975042 ], [ -77.04437256, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89978382 ], [ -77.04437256, 38.89981722 ], [ -77.04432964, 38.89981722 ], [ -77.04432964, 38.89978382 ], [ -77.04437256, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89981722 ], [ -77.04437256, 38.89985062 ], [ -77.04432964, 38.89985062 ], [ -77.04432964, 38.89981722 ], [ -77.04437256, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89985062 ], [ -77.04437256, 38.89988401 ], [ -77.04432964, 38.89988401 ], [ -77.04432964, 38.89985062 ], [ -77.04437256, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89988401 ], [ -77.04437256, 38.89991741 ], [ -77.04432964, 38.89991741 ], [ -77.04432964, 38.89988401 ], [ -77.04437256, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89991741 ], [ -77.04437256, 38.89995081 ], [ -77.04432964, 38.89995081 ], [ -77.04432964, 38.89991741 ], [ -77.04437256, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89995081 ], [ -77.04437256, 38.89998421 ], [ -77.04432964, 38.89998421 ], [ -77.04432964, 38.89995081 ], [ -77.04437256, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.89998421 ], [ -77.04437256, 38.90001761 ], [ -77.04432964, 38.90001761 ], [ -77.04432964, 38.89998421 ], [ -77.04437256, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.90001761 ], [ -77.04437256, 38.90005101 ], [ -77.04432964, 38.90005101 ], [ -77.04432964, 38.90001761 ], [ -77.04437256, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.90005101 ], [ -77.04437256, 38.90008441 ], [ -77.04432964, 38.90008441 ], [ -77.04432964, 38.90005101 ], [ -77.04437256, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.90008441 ], [ -77.04437256, 38.9001178 ], [ -77.04432964, 38.9001178 ], [ -77.04432964, 38.90008441 ], [ -77.04437256, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.9001178 ], [ -77.04437256, 38.9001512 ], [ -77.04432964, 38.9001512 ], [ -77.04432964, 38.9001178 ], [ -77.04437256, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.9001512 ], [ -77.04437256, 38.9001846 ], [ -77.04432964, 38.9001846 ], [ -77.04432964, 38.9001512 ], [ -77.04437256, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.9001846 ], [ -77.04437256, 38.900218 ], [ -77.04432964, 38.900218 ], [ -77.04432964, 38.9001846 ], [ -77.04437256, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.900218 ], [ -77.04437256, 38.9002514 ], [ -77.04432964, 38.9002514 ], [ -77.04432964, 38.900218 ], [ -77.04437256, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.9002514 ], [ -77.04437256, 38.9002848 ], [ -77.04432964, 38.9002848 ], [ -77.04432964, 38.9002514 ], [ -77.04437256, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.9002848 ], [ -77.04437256, 38.9003182 ], [ -77.04432964, 38.9003182 ], [ -77.04432964, 38.9002848 ], [ -77.04437256, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04437256, 38.9003182 ], [ -77.04437256, 38.90035159 ], [ -77.04432964, 38.90035159 ], [ -77.04432964, 38.9003182 ], [ -77.04437256, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89968362 ], [ -77.04441547, 38.89971702 ], [ -77.04437256, 38.89971702 ], [ -77.04437256, 38.89968362 ], [ -77.04441547, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89971702 ], [ -77.04441547, 38.89975042 ], [ -77.04437256, 38.89975042 ], [ -77.04437256, 38.89971702 ], [ -77.04441547, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89975042 ], [ -77.04441547, 38.89978382 ], [ -77.04437256, 38.89978382 ], [ -77.04437256, 38.89975042 ], [ -77.04441547, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89978382 ], [ -77.04441547, 38.89981722 ], [ -77.04437256, 38.89981722 ], [ -77.04437256, 38.89978382 ], [ -77.04441547, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89981722 ], [ -77.04441547, 38.89985062 ], [ -77.04437256, 38.89985062 ], [ -77.04437256, 38.89981722 ], [ -77.04441547, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89985062 ], [ -77.04441547, 38.89988401 ], [ -77.04437256, 38.89988401 ], [ -77.04437256, 38.89985062 ], [ -77.04441547, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89988401 ], [ -77.04441547, 38.89991741 ], [ -77.04437256, 38.89991741 ], [ -77.04437256, 38.89988401 ], [ -77.04441547, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89991741 ], [ -77.04441547, 38.89995081 ], [ -77.04437256, 38.89995081 ], [ -77.04437256, 38.89991741 ], [ -77.04441547, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89995081 ], [ -77.04441547, 38.89998421 ], [ -77.04437256, 38.89998421 ], [ -77.04437256, 38.89995081 ], [ -77.04441547, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.89998421 ], [ -77.04441547, 38.90001761 ], [ -77.04437256, 38.90001761 ], [ -77.04437256, 38.89998421 ], [ -77.04441547, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.90001761 ], [ -77.04441547, 38.90005101 ], [ -77.04437256, 38.90005101 ], [ -77.04437256, 38.90001761 ], [ -77.04441547, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.90005101 ], [ -77.04441547, 38.90008441 ], [ -77.04437256, 38.90008441 ], [ -77.04437256, 38.90005101 ], [ -77.04441547, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.90008441 ], [ -77.04441547, 38.9001178 ], [ -77.04437256, 38.9001178 ], [ -77.04437256, 38.90008441 ], [ -77.04441547, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.9001178 ], [ -77.04441547, 38.9001512 ], [ -77.04437256, 38.9001512 ], [ -77.04437256, 38.9001178 ], [ -77.04441547, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.9001512 ], [ -77.04441547, 38.9001846 ], [ -77.04437256, 38.9001846 ], [ -77.04437256, 38.9001512 ], [ -77.04441547, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.9001846 ], [ -77.04441547, 38.900218 ], [ -77.04437256, 38.900218 ], [ -77.04437256, 38.9001846 ], [ -77.04441547, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.900218 ], [ -77.04441547, 38.9002514 ], [ -77.04437256, 38.9002514 ], [ -77.04437256, 38.900218 ], [ -77.04441547, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.9002514 ], [ -77.04441547, 38.9002848 ], [ -77.04437256, 38.9002848 ], [ -77.04437256, 38.9002514 ], [ -77.04441547, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.9002848 ], [ -77.04441547, 38.9003182 ], [ -77.04437256, 38.9003182 ], [ -77.04437256, 38.9002848 ], [ -77.04441547, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04441547, 38.9003182 ], [ -77.04441547, 38.90035159 ], [ -77.04437256, 38.90035159 ], [ -77.04437256, 38.9003182 ], [ -77.04441547, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89968362 ], [ -77.04445839, 38.89971702 ], [ -77.04441547, 38.89971702 ], [ -77.04441547, 38.89968362 ], [ -77.04445839, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89971702 ], [ -77.04445839, 38.89975042 ], [ -77.04441547, 38.89975042 ], [ -77.04441547, 38.89971702 ], [ -77.04445839, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89975042 ], [ -77.04445839, 38.89978382 ], [ -77.04441547, 38.89978382 ], [ -77.04441547, 38.89975042 ], [ -77.04445839, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89978382 ], [ -77.04445839, 38.89981722 ], [ -77.04441547, 38.89981722 ], [ -77.04441547, 38.89978382 ], [ -77.04445839, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89981722 ], [ -77.04445839, 38.89985062 ], [ -77.04441547, 38.89985062 ], [ -77.04441547, 38.89981722 ], [ -77.04445839, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89985062 ], [ -77.04445839, 38.89988401 ], [ -77.04441547, 38.89988401 ], [ -77.04441547, 38.89985062 ], [ -77.04445839, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89988401 ], [ -77.04445839, 38.89991741 ], [ -77.04441547, 38.89991741 ], [ -77.04441547, 38.89988401 ], [ -77.04445839, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89991741 ], [ -77.04445839, 38.89995081 ], [ -77.04441547, 38.89995081 ], [ -77.04441547, 38.89991741 ], [ -77.04445839, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89995081 ], [ -77.04445839, 38.89998421 ], [ -77.04441547, 38.89998421 ], [ -77.04441547, 38.89995081 ], [ -77.04445839, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.89998421 ], [ -77.04445839, 38.90001761 ], [ -77.04441547, 38.90001761 ], [ -77.04441547, 38.89998421 ], [ -77.04445839, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.90001761 ], [ -77.04445839, 38.90005101 ], [ -77.04441547, 38.90005101 ], [ -77.04441547, 38.90001761 ], [ -77.04445839, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.90005101 ], [ -77.04445839, 38.90008441 ], [ -77.04441547, 38.90008441 ], [ -77.04441547, 38.90005101 ], [ -77.04445839, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.90008441 ], [ -77.04445839, 38.9001178 ], [ -77.04441547, 38.9001178 ], [ -77.04441547, 38.90008441 ], [ -77.04445839, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.9001178 ], [ -77.04445839, 38.9001512 ], [ -77.04441547, 38.9001512 ], [ -77.04441547, 38.9001178 ], [ -77.04445839, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.9001512 ], [ -77.04445839, 38.9001846 ], [ -77.04441547, 38.9001846 ], [ -77.04441547, 38.9001512 ], [ -77.04445839, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.9001846 ], [ -77.04445839, 38.900218 ], [ -77.04441547, 38.900218 ], [ -77.04441547, 38.9001846 ], [ -77.04445839, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.900218 ], [ -77.04445839, 38.9002514 ], [ -77.04441547, 38.9002514 ], [ -77.04441547, 38.900218 ], [ -77.04445839, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.9002514 ], [ -77.04445839, 38.9002848 ], [ -77.04441547, 38.9002848 ], [ -77.04441547, 38.9002514 ], [ -77.04445839, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.9002848 ], [ -77.04445839, 38.9003182 ], [ -77.04441547, 38.9003182 ], [ -77.04441547, 38.9002848 ], [ -77.04445839, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.9003182 ], [ -77.04445839, 38.90035159 ], [ -77.04441547, 38.90035159 ], [ -77.04441547, 38.9003182 ], [ -77.04445839, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04445839, 38.90035159 ], [ -77.04445839, 38.90038499 ], [ -77.04441547, 38.90038499 ], [ -77.04441547, 38.90035159 ], [ -77.04445839, 38.90035159 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89968362 ], [ -77.0445013, 38.89971702 ], [ -77.04445839, 38.89971702 ], [ -77.04445839, 38.89968362 ], [ -77.0445013, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89971702 ], [ -77.0445013, 38.89975042 ], [ -77.04445839, 38.89975042 ], [ -77.04445839, 38.89971702 ], [ -77.0445013, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89975042 ], [ -77.0445013, 38.89978382 ], [ -77.04445839, 38.89978382 ], [ -77.04445839, 38.89975042 ], [ -77.0445013, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89978382 ], [ -77.0445013, 38.89981722 ], [ -77.04445839, 38.89981722 ], [ -77.04445839, 38.89978382 ], [ -77.0445013, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89981722 ], [ -77.0445013, 38.89985062 ], [ -77.04445839, 38.89985062 ], [ -77.04445839, 38.89981722 ], [ -77.0445013, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89985062 ], [ -77.0445013, 38.89988401 ], [ -77.04445839, 38.89988401 ], [ -77.04445839, 38.89985062 ], [ -77.0445013, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89988401 ], [ -77.0445013, 38.89991741 ], [ -77.04445839, 38.89991741 ], [ -77.04445839, 38.89988401 ], [ -77.0445013, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89991741 ], [ -77.0445013, 38.89995081 ], [ -77.04445839, 38.89995081 ], [ -77.04445839, 38.89991741 ], [ -77.0445013, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89995081 ], [ -77.0445013, 38.89998421 ], [ -77.04445839, 38.89998421 ], [ -77.04445839, 38.89995081 ], [ -77.0445013, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.89998421 ], [ -77.0445013, 38.90001761 ], [ -77.04445839, 38.90001761 ], [ -77.04445839, 38.89998421 ], [ -77.0445013, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.90001761 ], [ -77.0445013, 38.90005101 ], [ -77.04445839, 38.90005101 ], [ -77.04445839, 38.90001761 ], [ -77.0445013, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.90005101 ], [ -77.0445013, 38.90008441 ], [ -77.04445839, 38.90008441 ], [ -77.04445839, 38.90005101 ], [ -77.0445013, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.90008441 ], [ -77.0445013, 38.9001178 ], [ -77.04445839, 38.9001178 ], [ -77.04445839, 38.90008441 ], [ -77.0445013, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.9001178 ], [ -77.0445013, 38.9001512 ], [ -77.04445839, 38.9001512 ], [ -77.04445839, 38.9001178 ], [ -77.0445013, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.9001512 ], [ -77.0445013, 38.9001846 ], [ -77.04445839, 38.9001846 ], [ -77.04445839, 38.9001512 ], [ -77.0445013, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.9001846 ], [ -77.0445013, 38.900218 ], [ -77.04445839, 38.900218 ], [ -77.04445839, 38.9001846 ], [ -77.0445013, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.900218 ], [ -77.0445013, 38.9002514 ], [ -77.04445839, 38.9002514 ], [ -77.04445839, 38.900218 ], [ -77.0445013, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.9002514 ], [ -77.0445013, 38.9002848 ], [ -77.04445839, 38.9002848 ], [ -77.04445839, 38.9002514 ], [ -77.0445013, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.9002848 ], [ -77.0445013, 38.9003182 ], [ -77.04445839, 38.9003182 ], [ -77.04445839, 38.9002848 ], [ -77.0445013, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.9003182 ], [ -77.0445013, 38.90035159 ], [ -77.04445839, 38.90035159 ], [ -77.04445839, 38.9003182 ], [ -77.0445013, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0445013, 38.90035159 ], [ -77.0445013, 38.90038499 ], [ -77.04445839, 38.90038499 ], [ -77.04445839, 38.90035159 ], [ -77.0445013, 38.90035159 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89968362 ], [ -77.04454422, 38.89971702 ], [ -77.0445013, 38.89971702 ], [ -77.0445013, 38.89968362 ], [ -77.04454422, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89971702 ], [ -77.04454422, 38.89975042 ], [ -77.0445013, 38.89975042 ], [ -77.0445013, 38.89971702 ], [ -77.04454422, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89975042 ], [ -77.04454422, 38.89978382 ], [ -77.0445013, 38.89978382 ], [ -77.0445013, 38.89975042 ], [ -77.04454422, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89978382 ], [ -77.04454422, 38.89981722 ], [ -77.0445013, 38.89981722 ], [ -77.0445013, 38.89978382 ], [ -77.04454422, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89981722 ], [ -77.04454422, 38.89985062 ], [ -77.0445013, 38.89985062 ], [ -77.0445013, 38.89981722 ], [ -77.04454422, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89985062 ], [ -77.04454422, 38.89988401 ], [ -77.0445013, 38.89988401 ], [ -77.0445013, 38.89985062 ], [ -77.04454422, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89988401 ], [ -77.04454422, 38.89991741 ], [ -77.0445013, 38.89991741 ], [ -77.0445013, 38.89988401 ], [ -77.04454422, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89991741 ], [ -77.04454422, 38.89995081 ], [ -77.0445013, 38.89995081 ], [ -77.0445013, 38.89991741 ], [ -77.04454422, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89995081 ], [ -77.04454422, 38.89998421 ], [ -77.0445013, 38.89998421 ], [ -77.0445013, 38.89995081 ], [ -77.04454422, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.89998421 ], [ -77.04454422, 38.90001761 ], [ -77.0445013, 38.90001761 ], [ -77.0445013, 38.89998421 ], [ -77.04454422, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.90001761 ], [ -77.04454422, 38.90005101 ], [ -77.0445013, 38.90005101 ], [ -77.0445013, 38.90001761 ], [ -77.04454422, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.90005101 ], [ -77.04454422, 38.90008441 ], [ -77.0445013, 38.90008441 ], [ -77.0445013, 38.90005101 ], [ -77.04454422, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.90008441 ], [ -77.04454422, 38.9001178 ], [ -77.0445013, 38.9001178 ], [ -77.0445013, 38.90008441 ], [ -77.04454422, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.9001178 ], [ -77.04454422, 38.9001512 ], [ -77.0445013, 38.9001512 ], [ -77.0445013, 38.9001178 ], [ -77.04454422, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.9001512 ], [ -77.04454422, 38.9001846 ], [ -77.0445013, 38.9001846 ], [ -77.0445013, 38.9001512 ], [ -77.04454422, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.9001846 ], [ -77.04454422, 38.900218 ], [ -77.0445013, 38.900218 ], [ -77.0445013, 38.9001846 ], [ -77.04454422, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.900218 ], [ -77.04454422, 38.9002514 ], [ -77.0445013, 38.9002514 ], [ -77.0445013, 38.900218 ], [ -77.04454422, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.9002514 ], [ -77.04454422, 38.9002848 ], [ -77.0445013, 38.9002848 ], [ -77.0445013, 38.9002514 ], [ -77.04454422, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.9002848 ], [ -77.04454422, 38.9003182 ], [ -77.0445013, 38.9003182 ], [ -77.0445013, 38.9002848 ], [ -77.04454422, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.9003182 ], [ -77.04454422, 38.90035159 ], [ -77.0445013, 38.90035159 ], [ -77.0445013, 38.9003182 ], [ -77.04454422, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.90035159 ], [ -77.04454422, 38.90038499 ], [ -77.0445013, 38.90038499 ], [ -77.0445013, 38.90035159 ], [ -77.04454422, 38.90035159 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04454422, 38.90038499 ], [ -77.04454422, 38.90041839 ], [ -77.0445013, 38.90041839 ], [ -77.0445013, 38.90038499 ], [ -77.04454422, 38.90038499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89965022 ], [ -77.04458714, 38.89968362 ], [ -77.04454422, 38.89968362 ], [ -77.04454422, 38.89965022 ], [ -77.04458714, 38.89965022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89968362 ], [ -77.04458714, 38.89971702 ], [ -77.04454422, 38.89971702 ], [ -77.04454422, 38.89968362 ], [ -77.04458714, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89971702 ], [ -77.04458714, 38.89975042 ], [ -77.04454422, 38.89975042 ], [ -77.04454422, 38.89971702 ], [ -77.04458714, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89975042 ], [ -77.04458714, 38.89978382 ], [ -77.04454422, 38.89978382 ], [ -77.04454422, 38.89975042 ], [ -77.04458714, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89978382 ], [ -77.04458714, 38.89981722 ], [ -77.04454422, 38.89981722 ], [ -77.04454422, 38.89978382 ], [ -77.04458714, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89981722 ], [ -77.04458714, 38.89985062 ], [ -77.04454422, 38.89985062 ], [ -77.04454422, 38.89981722 ], [ -77.04458714, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89985062 ], [ -77.04458714, 38.89988401 ], [ -77.04454422, 38.89988401 ], [ -77.04454422, 38.89985062 ], [ -77.04458714, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89988401 ], [ -77.04458714, 38.89991741 ], [ -77.04454422, 38.89991741 ], [ -77.04454422, 38.89988401 ], [ -77.04458714, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89991741 ], [ -77.04458714, 38.89995081 ], [ -77.04454422, 38.89995081 ], [ -77.04454422, 38.89991741 ], [ -77.04458714, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89995081 ], [ -77.04458714, 38.89998421 ], [ -77.04454422, 38.89998421 ], [ -77.04454422, 38.89995081 ], [ -77.04458714, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.89998421 ], [ -77.04458714, 38.90001761 ], [ -77.04454422, 38.90001761 ], [ -77.04454422, 38.89998421 ], [ -77.04458714, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.90001761 ], [ -77.04458714, 38.90005101 ], [ -77.04454422, 38.90005101 ], [ -77.04454422, 38.90001761 ], [ -77.04458714, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.90005101 ], [ -77.04458714, 38.90008441 ], [ -77.04454422, 38.90008441 ], [ -77.04454422, 38.90005101 ], [ -77.04458714, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.90008441 ], [ -77.04458714, 38.9001178 ], [ -77.04454422, 38.9001178 ], [ -77.04454422, 38.90008441 ], [ -77.04458714, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.9001178 ], [ -77.04458714, 38.9001512 ], [ -77.04454422, 38.9001512 ], [ -77.04454422, 38.9001178 ], [ -77.04458714, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.9001512 ], [ -77.04458714, 38.9001846 ], [ -77.04454422, 38.9001846 ], [ -77.04454422, 38.9001512 ], [ -77.04458714, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.9001846 ], [ -77.04458714, 38.900218 ], [ -77.04454422, 38.900218 ], [ -77.04454422, 38.9001846 ], [ -77.04458714, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.900218 ], [ -77.04458714, 38.9002514 ], [ -77.04454422, 38.9002514 ], [ -77.04454422, 38.900218 ], [ -77.04458714, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.9002514 ], [ -77.04458714, 38.9002848 ], [ -77.04454422, 38.9002848 ], [ -77.04454422, 38.9002514 ], [ -77.04458714, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.9002848 ], [ -77.04458714, 38.9003182 ], [ -77.04454422, 38.9003182 ], [ -77.04454422, 38.9002848 ], [ -77.04458714, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.9003182 ], [ -77.04458714, 38.90035159 ], [ -77.04454422, 38.90035159 ], [ -77.04454422, 38.9003182 ], [ -77.04458714, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.90035159 ], [ -77.04458714, 38.90038499 ], [ -77.04454422, 38.90038499 ], [ -77.04454422, 38.90035159 ], [ -77.04458714, 38.90035159 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04458714, 38.90038499 ], [ -77.04458714, 38.90041839 ], [ -77.04454422, 38.90041839 ], [ -77.04454422, 38.90038499 ], [ -77.04458714, 38.90038499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89965022 ], [ -77.04463005, 38.89968362 ], [ -77.04458714, 38.89968362 ], [ -77.04458714, 38.89965022 ], [ -77.04463005, 38.89965022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89968362 ], [ -77.04463005, 38.89971702 ], [ -77.04458714, 38.89971702 ], [ -77.04458714, 38.89968362 ], [ -77.04463005, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89971702 ], [ -77.04463005, 38.89975042 ], [ -77.04458714, 38.89975042 ], [ -77.04458714, 38.89971702 ], [ -77.04463005, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89975042 ], [ -77.04463005, 38.89978382 ], [ -77.04458714, 38.89978382 ], [ -77.04458714, 38.89975042 ], [ -77.04463005, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89978382 ], [ -77.04463005, 38.89981722 ], [ -77.04458714, 38.89981722 ], [ -77.04458714, 38.89978382 ], [ -77.04463005, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89981722 ], [ -77.04463005, 38.89985062 ], [ -77.04458714, 38.89985062 ], [ -77.04458714, 38.89981722 ], [ -77.04463005, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89985062 ], [ -77.04463005, 38.89988401 ], [ -77.04458714, 38.89988401 ], [ -77.04458714, 38.89985062 ], [ -77.04463005, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89988401 ], [ -77.04463005, 38.89991741 ], [ -77.04458714, 38.89991741 ], [ -77.04458714, 38.89988401 ], [ -77.04463005, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89991741 ], [ -77.04463005, 38.89995081 ], [ -77.04458714, 38.89995081 ], [ -77.04458714, 38.89991741 ], [ -77.04463005, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89995081 ], [ -77.04463005, 38.89998421 ], [ -77.04458714, 38.89998421 ], [ -77.04458714, 38.89995081 ], [ -77.04463005, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.89998421 ], [ -77.04463005, 38.90001761 ], [ -77.04458714, 38.90001761 ], [ -77.04458714, 38.89998421 ], [ -77.04463005, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.90001761 ], [ -77.04463005, 38.90005101 ], [ -77.04458714, 38.90005101 ], [ -77.04458714, 38.90001761 ], [ -77.04463005, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.90005101 ], [ -77.04463005, 38.90008441 ], [ -77.04458714, 38.90008441 ], [ -77.04458714, 38.90005101 ], [ -77.04463005, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.90008441 ], [ -77.04463005, 38.9001178 ], [ -77.04458714, 38.9001178 ], [ -77.04458714, 38.90008441 ], [ -77.04463005, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.9001178 ], [ -77.04463005, 38.9001512 ], [ -77.04458714, 38.9001512 ], [ -77.04458714, 38.9001178 ], [ -77.04463005, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.9001512 ], [ -77.04463005, 38.9001846 ], [ -77.04458714, 38.9001846 ], [ -77.04458714, 38.9001512 ], [ -77.04463005, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.9001846 ], [ -77.04463005, 38.900218 ], [ -77.04458714, 38.900218 ], [ -77.04458714, 38.9001846 ], [ -77.04463005, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.900218 ], [ -77.04463005, 38.9002514 ], [ -77.04458714, 38.9002514 ], [ -77.04458714, 38.900218 ], [ -77.04463005, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.9002514 ], [ -77.04463005, 38.9002848 ], [ -77.04458714, 38.9002848 ], [ -77.04458714, 38.9002514 ], [ -77.04463005, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.9002848 ], [ -77.04463005, 38.9003182 ], [ -77.04458714, 38.9003182 ], [ -77.04458714, 38.9002848 ], [ -77.04463005, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.9003182 ], [ -77.04463005, 38.90035159 ], [ -77.04458714, 38.90035159 ], [ -77.04458714, 38.9003182 ], [ -77.04463005, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.90035159 ], [ -77.04463005, 38.90038499 ], [ -77.04458714, 38.90038499 ], [ -77.04458714, 38.90035159 ], [ -77.04463005, 38.90035159 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04463005, 38.90038499 ], [ -77.04463005, 38.90041839 ], [ -77.04458714, 38.90041839 ], [ -77.04458714, 38.90038499 ], [ -77.04463005, 38.90038499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89968362 ], [ -77.04467297, 38.89971702 ], [ -77.04463005, 38.89971702 ], [ -77.04463005, 38.89968362 ], [ -77.04467297, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89971702 ], [ -77.04467297, 38.89975042 ], [ -77.04463005, 38.89975042 ], [ -77.04463005, 38.89971702 ], [ -77.04467297, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89975042 ], [ -77.04467297, 38.89978382 ], [ -77.04463005, 38.89978382 ], [ -77.04463005, 38.89975042 ], [ -77.04467297, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89978382 ], [ -77.04467297, 38.89981722 ], [ -77.04463005, 38.89981722 ], [ -77.04463005, 38.89978382 ], [ -77.04467297, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89981722 ], [ -77.04467297, 38.89985062 ], [ -77.04463005, 38.89985062 ], [ -77.04463005, 38.89981722 ], [ -77.04467297, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89985062 ], [ -77.04467297, 38.89988401 ], [ -77.04463005, 38.89988401 ], [ -77.04463005, 38.89985062 ], [ -77.04467297, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89988401 ], [ -77.04467297, 38.89991741 ], [ -77.04463005, 38.89991741 ], [ -77.04463005, 38.89988401 ], [ -77.04467297, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89991741 ], [ -77.04467297, 38.89995081 ], [ -77.04463005, 38.89995081 ], [ -77.04463005, 38.89991741 ], [ -77.04467297, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89995081 ], [ -77.04467297, 38.89998421 ], [ -77.04463005, 38.89998421 ], [ -77.04463005, 38.89995081 ], [ -77.04467297, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.89998421 ], [ -77.04467297, 38.90001761 ], [ -77.04463005, 38.90001761 ], [ -77.04463005, 38.89998421 ], [ -77.04467297, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.90001761 ], [ -77.04467297, 38.90005101 ], [ -77.04463005, 38.90005101 ], [ -77.04463005, 38.90001761 ], [ -77.04467297, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.90005101 ], [ -77.04467297, 38.90008441 ], [ -77.04463005, 38.90008441 ], [ -77.04463005, 38.90005101 ], [ -77.04467297, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.90008441 ], [ -77.04467297, 38.9001178 ], [ -77.04463005, 38.9001178 ], [ -77.04463005, 38.90008441 ], [ -77.04467297, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.9001178 ], [ -77.04467297, 38.9001512 ], [ -77.04463005, 38.9001512 ], [ -77.04463005, 38.9001178 ], [ -77.04467297, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.9001512 ], [ -77.04467297, 38.9001846 ], [ -77.04463005, 38.9001846 ], [ -77.04463005, 38.9001512 ], [ -77.04467297, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.9001846 ], [ -77.04467297, 38.900218 ], [ -77.04463005, 38.900218 ], [ -77.04463005, 38.9001846 ], [ -77.04467297, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.900218 ], [ -77.04467297, 38.9002514 ], [ -77.04463005, 38.9002514 ], [ -77.04463005, 38.900218 ], [ -77.04467297, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.9002514 ], [ -77.04467297, 38.9002848 ], [ -77.04463005, 38.9002848 ], [ -77.04463005, 38.9002514 ], [ -77.04467297, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.9002848 ], [ -77.04467297, 38.9003182 ], [ -77.04463005, 38.9003182 ], [ -77.04463005, 38.9002848 ], [ -77.04467297, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.9003182 ], [ -77.04467297, 38.90035159 ], [ -77.04463005, 38.90035159 ], [ -77.04463005, 38.9003182 ], [ -77.04467297, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.90035159 ], [ -77.04467297, 38.90038499 ], [ -77.04463005, 38.90038499 ], [ -77.04463005, 38.90035159 ], [ -77.04467297, 38.90035159 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.90038499 ], [ -77.04467297, 38.90041839 ], [ -77.04463005, 38.90041839 ], [ -77.04463005, 38.90038499 ], [ -77.04467297, 38.90038499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04467297, 38.90041839 ], [ -77.04467297, 38.90045179 ], [ -77.04463005, 38.90045179 ], [ -77.04463005, 38.90041839 ], [ -77.04467297, 38.90041839 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89968362 ], [ -77.04471588, 38.89971702 ], [ -77.04467297, 38.89971702 ], [ -77.04467297, 38.89968362 ], [ -77.04471588, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89971702 ], [ -77.04471588, 38.89975042 ], [ -77.04467297, 38.89975042 ], [ -77.04467297, 38.89971702 ], [ -77.04471588, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89975042 ], [ -77.04471588, 38.89978382 ], [ -77.04467297, 38.89978382 ], [ -77.04467297, 38.89975042 ], [ -77.04471588, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89978382 ], [ -77.04471588, 38.89981722 ], [ -77.04467297, 38.89981722 ], [ -77.04467297, 38.89978382 ], [ -77.04471588, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89981722 ], [ -77.04471588, 38.89985062 ], [ -77.04467297, 38.89985062 ], [ -77.04467297, 38.89981722 ], [ -77.04471588, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89985062 ], [ -77.04471588, 38.89988401 ], [ -77.04467297, 38.89988401 ], [ -77.04467297, 38.89985062 ], [ -77.04471588, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89988401 ], [ -77.04471588, 38.89991741 ], [ -77.04467297, 38.89991741 ], [ -77.04467297, 38.89988401 ], [ -77.04471588, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89991741 ], [ -77.04471588, 38.89995081 ], [ -77.04467297, 38.89995081 ], [ -77.04467297, 38.89991741 ], [ -77.04471588, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89995081 ], [ -77.04471588, 38.89998421 ], [ -77.04467297, 38.89998421 ], [ -77.04467297, 38.89995081 ], [ -77.04471588, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.89998421 ], [ -77.04471588, 38.90001761 ], [ -77.04467297, 38.90001761 ], [ -77.04467297, 38.89998421 ], [ -77.04471588, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.90001761 ], [ -77.04471588, 38.90005101 ], [ -77.04467297, 38.90005101 ], [ -77.04467297, 38.90001761 ], [ -77.04471588, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.90005101 ], [ -77.04471588, 38.90008441 ], [ -77.04467297, 38.90008441 ], [ -77.04467297, 38.90005101 ], [ -77.04471588, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.90008441 ], [ -77.04471588, 38.9001178 ], [ -77.04467297, 38.9001178 ], [ -77.04467297, 38.90008441 ], [ -77.04471588, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.9001178 ], [ -77.04471588, 38.9001512 ], [ -77.04467297, 38.9001512 ], [ -77.04467297, 38.9001178 ], [ -77.04471588, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.9001512 ], [ -77.04471588, 38.9001846 ], [ -77.04467297, 38.9001846 ], [ -77.04467297, 38.9001512 ], [ -77.04471588, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.9001846 ], [ -77.04471588, 38.900218 ], [ -77.04467297, 38.900218 ], [ -77.04467297, 38.9001846 ], [ -77.04471588, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.900218 ], [ -77.04471588, 38.9002514 ], [ -77.04467297, 38.9002514 ], [ -77.04467297, 38.900218 ], [ -77.04471588, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.9002514 ], [ -77.04471588, 38.9002848 ], [ -77.04467297, 38.9002848 ], [ -77.04467297, 38.9002514 ], [ -77.04471588, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.9002848 ], [ -77.04471588, 38.9003182 ], [ -77.04467297, 38.9003182 ], [ -77.04467297, 38.9002848 ], [ -77.04471588, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.9003182 ], [ -77.04471588, 38.90035159 ], [ -77.04467297, 38.90035159 ], [ -77.04467297, 38.9003182 ], [ -77.04471588, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.90035159 ], [ -77.04471588, 38.90038499 ], [ -77.04467297, 38.90038499 ], [ -77.04467297, 38.90035159 ], [ -77.04471588, 38.90035159 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.90038499 ], [ -77.04471588, 38.90041839 ], [ -77.04467297, 38.90041839 ], [ -77.04467297, 38.90038499 ], [ -77.04471588, 38.90038499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04471588, 38.90041839 ], [ -77.04471588, 38.90045179 ], [ -77.04467297, 38.90045179 ], [ -77.04467297, 38.90041839 ], [ -77.04471588, 38.90041839 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89968362 ], [ -77.0447588, 38.89971702 ], [ -77.04471588, 38.89971702 ], [ -77.04471588, 38.89968362 ], [ -77.0447588, 38.89968362 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89971702 ], [ -77.0447588, 38.89975042 ], [ -77.04471588, 38.89975042 ], [ -77.04471588, 38.89971702 ], [ -77.0447588, 38.89971702 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89975042 ], [ -77.0447588, 38.89978382 ], [ -77.04471588, 38.89978382 ], [ -77.04471588, 38.89975042 ], [ -77.0447588, 38.89975042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89978382 ], [ -77.0447588, 38.89981722 ], [ -77.04471588, 38.89981722 ], [ -77.04471588, 38.89978382 ], [ -77.0447588, 38.89978382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89981722 ], [ -77.0447588, 38.89985062 ], [ -77.04471588, 38.89985062 ], [ -77.04471588, 38.89981722 ], [ -77.0447588, 38.89981722 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89985062 ], [ -77.0447588, 38.89988401 ], [ -77.04471588, 38.89988401 ], [ -77.04471588, 38.89985062 ], [ -77.0447588, 38.89985062 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89988401 ], [ -77.0447588, 38.89991741 ], [ -77.04471588, 38.89991741 ], [ -77.04471588, 38.89988401 ], [ -77.0447588, 38.89988401 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89991741 ], [ -77.0447588, 38.89995081 ], [ -77.04471588, 38.89995081 ], [ -77.04471588, 38.89991741 ], [ -77.0447588, 38.89991741 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89995081 ], [ -77.0447588, 38.89998421 ], [ -77.04471588, 38.89998421 ], [ -77.04471588, 38.89995081 ], [ -77.0447588, 38.89995081 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.89998421 ], [ -77.0447588, 38.90001761 ], [ -77.04471588, 38.90001761 ], [ -77.04471588, 38.89998421 ], [ -77.0447588, 38.89998421 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.90001761 ], [ -77.0447588, 38.90005101 ], [ -77.04471588, 38.90005101 ], [ -77.04471588, 38.90001761 ], [ -77.0447588, 38.90001761 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.90005101 ], [ -77.0447588, 38.90008441 ], [ -77.04471588, 38.90008441 ], [ -77.04471588, 38.90005101 ], [ -77.0447588, 38.90005101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.90008441 ], [ -77.0447588, 38.9001178 ], [ -77.04471588, 38.9001178 ], [ -77.04471588, 38.90008441 ], [ -77.0447588, 38.90008441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.9001178 ], [ -77.0447588, 38.9001512 ], [ -77.04471588, 38.9001512 ], [ -77.04471588, 38.9001178 ], [ -77.0447588, 38.9001178 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.9001512 ], [ -77.0447588, 38.9001846 ], [ -77.04471588, 38.9001846 ], [ -77.04471588, 38.9001512 ], [ -77.0447588, 38.9001512 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.9001846 ], [ -77.0447588, 38.900218 ], [ -77.04471588, 38.900218 ], [ -77.04471588, 38.9001846 ], [ -77.0447588, 38.9001846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.900218 ], [ -77.0447588, 38.9002514 ], [ -77.04471588, 38.9002514 ], [ -77.04471588, 38.900218 ], [ -77.0447588, 38.900218 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.9002514 ], [ -77.0447588, 38.9002848 ], [ -77.04471588, 38.9002848 ], [ -77.04471588, 38.9002514 ], [ -77.0447588, 38.9002514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.9002848 ], [ -77.0447588, 38.9003182 ], [ -77.04471588, 38.9003182 ], [ -77.04471588, 38.9002848 ], [ -77.0447588, 38.9002848 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.9003182 ], [ -77.0447588, 38.90035159 ], [ -77.04471588, 38.90035159 ], [ -77.04471588, 38.9003182 ], [ -77.0447588, 38.9003182 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.90035159 ], [ -77.0447588, 38.90038499 ], [ -77.04471588, 38.90038499 ], [ -77.04471588, 38.90035159 ], [ -77.0447588, 38.90035159 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.90038499 ], [ -77.0447588, 38.90041839 ], [ -77.04471588, 38.90041839 ], [ -77.04471588, 38.90038499 ], [ -77.0447588, 38.90038499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.90041839 ], [ -77.0447588, 38.90045179 ], [ -77.04471588, 38.90045179 ], [ -77.04471588, 38.90041839 ], [ -77.0447588, 38.90041839 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.0447588, 38.90045179 ], [ -77.0447588, 38.90048519 ], [ -77.04471588, 38.90048519 ], [ -77.04471588, 38.90045179 ], [ -77.0447588, 38.90045179 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.04474941, 38.90019399 ], [ -77.04473063, 38.90019399 ], [ -77.04473063, 38.90027123 ], [ -77.04474673, 38.90027332 ], [ -77.04474673, 38.90045701 ], [ -77.04394475, 38.90017521 ], [ -77.04394206, 38.90017312 ], [ -77.0438455, 38.90017103 ], [ -77.0438455, 38.90014181 ], [ -77.04365239, 38.90007501 ], [ -77.04365239, 38.89989341 ], [ -77.04371139, 38.89991637 ], [ -77.04371139, 38.8998621 ], [ -77.04369262, 38.8998621 ], [ -77.04369262, 38.89969928 ], [ -77.04452947, 38.89969719 ], [ -77.04460457, 38.89967214 ], [ -77.04460725, 38.8996951 ], [ -77.04474673, 38.89969719 ], [ -77.04474941, 38.90019399 ], [ -77.04474941, 38.90019399 ], [ -77.04474941, 38.90019399 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/line.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [ -106.21719360351562, 28.592359801121567 ], [ -106.1004638671875, 28.791130513231813 ], [ -105.87661743164062, 28.864519767126602 ], [ -105.82374572753905, 28.60743139267596 ] ] } } ================================================ FILE: test/fixtures/line_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.90820313, 28.53627451 ], [ -105.90820313, 28.61345942 ], [ -105.8203125, 28.61345942 ], [ -105.8203125, 28.53627451 ], [ -105.90820313, 28.53627451 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.90820313, 28.61345942 ], [ -105.90820313, 28.69058765 ], [ -105.8203125, 28.69058765 ], [ -105.8203125, 28.61345942 ], [ -105.90820313, 28.61345942 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.90820313, 28.69058765 ], [ -105.90820313, 28.76765911 ], [ -105.8203125, 28.76765911 ], [ -105.8203125, 28.69058765 ], [ -105.90820313, 28.69058765 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.99609375, 28.76765911 ], [ -105.99609375, 28.92163128 ], [ -105.8203125, 28.92163128 ], [ -105.8203125, 28.76765911 ], [ -105.99609375, 28.76765911 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.08398438, 28.76765911 ], [ -106.08398438, 28.84467368 ], [ -105.99609375, 28.84467368 ], [ -105.99609375, 28.76765911 ], [ -106.08398438, 28.76765911 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.171875, 28.61345942 ], [ -106.171875, 28.69058765 ], [ -106.08398438, 28.69058765 ], [ -106.08398438, 28.61345942 ], [ -106.171875, 28.61345942 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.171875, 28.69058765 ], [ -106.171875, 28.76765911 ], [ -106.08398438, 28.76765911 ], [ -106.08398438, 28.69058765 ], [ -106.171875, 28.69058765 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.171875, 28.76765911 ], [ -106.171875, 28.84467368 ], [ -106.08398438, 28.84467368 ], [ -106.08398438, 28.76765911 ], [ -106.171875, 28.76765911 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.25976563, 28.53627451 ], [ -106.25976563, 28.61345942 ], [ -106.171875, 28.61345942 ], [ -106.171875, 28.53627451 ], [ -106.25976563, 28.53627451 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.25976563, 28.61345942 ], [ -106.25976563, 28.69058765 ], [ -106.171875, 28.69058765 ], [ -106.171875, 28.61345942 ], [ -106.25976563, 28.61345942 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -106.2171936, 28.5923598 ], [ -106.10046387, 28.79113051 ], [ -105.87661743, 28.86451977 ], [ -105.82374573, 28.60743139 ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/multiline.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 11.3818359375, 51.15178610143037 ], [ 7.998046875, 50.0077390146369 ], [ 10.458984375, 49.18170338770663 ], [ 5.2734375, 46.6795944656402 ] ], [ [ 0.263671875, 49.15296965617042 ], [ 3.076171875, 50.0077390146369 ], [ 3.6474609374999996, 48.60385760823255 ], [ 4.7900390625, 49.095452162534826 ], [ 6.328125, 48.48748647988415 ], [ 10.1513671875, 48.07807894349862 ], [ 12.392578125, 46.46813299215554 ] ] ] } } ================================================ FILE: test/fixtures/multiline_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 48.92249926 ], [ 0, 49.83798245 ], [ 1.40625, 49.83798245 ], [ 1.40625, 48.92249926 ], [ 0, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.40625, 48.92249926 ], [ 1.40625, 49.83798245 ], [ 2.8125, 49.83798245 ], [ 2.8125, 48.92249926 ], [ 1.40625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.40625, 49.83798245 ], [ 1.40625, 50.73645514 ], [ 2.8125, 50.73645514 ], [ 2.8125, 49.83798245 ], [ 1.40625, 49.83798245 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 46.07323063 ], [ 11.25, 47.04018214 ], [ 12.65625, 47.04018214 ], [ 12.65625, 46.07323063 ], [ 11.25, 46.07323063 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 47.04018214 ], [ 11.25, 47.98992167 ], [ 12.65625, 47.98992167 ], [ 12.65625, 47.04018214 ], [ 11.25, 47.04018214 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 50.73645514 ], [ 11.25, 51.61801655 ], [ 12.65625, 51.61801655 ], [ 12.65625, 50.73645514 ], [ 11.25, 50.73645514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.8125, 47.98992167 ], [ 2.8125, 48.92249926 ], [ 4.21875, 48.92249926 ], [ 4.21875, 47.98992167 ], [ 2.8125, 47.98992167 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.8125, 48.92249926 ], [ 2.8125, 49.83798245 ], [ 4.21875, 49.83798245 ], [ 4.21875, 48.92249926 ], [ 2.8125, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.8125, 49.83798245 ], [ 2.8125, 50.73645514 ], [ 4.21875, 50.73645514 ], [ 4.21875, 49.83798245 ], [ 2.8125, 49.83798245 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.21875, 46.07323063 ], [ 4.21875, 47.04018214 ], [ 5.625, 47.04018214 ], [ 5.625, 46.07323063 ], [ 4.21875, 46.07323063 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.21875, 47.98992167 ], [ 4.21875, 48.92249926 ], [ 5.625, 48.92249926 ], [ 5.625, 47.98992167 ], [ 4.21875, 47.98992167 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.21875, 48.92249926 ], [ 4.21875, 49.83798245 ], [ 5.625, 49.83798245 ], [ 5.625, 48.92249926 ], [ 4.21875, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 46.07323063 ], [ 5.625, 47.04018214 ], [ 7.03125, 47.04018214 ], [ 7.03125, 46.07323063 ], [ 5.625, 46.07323063 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 47.04018214 ], [ 5.625, 48.92249926 ], [ 8.4375, 48.92249926 ], [ 8.4375, 47.04018214 ], [ 5.625, 47.04018214 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.03125, 49.83798245 ], [ 7.03125, 50.73645514 ], [ 8.4375, 50.73645514 ], [ 8.4375, 49.83798245 ], [ 7.03125, 49.83798245 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.4375, 47.98992167 ], [ 8.4375, 48.92249926 ], [ 9.84375, 48.92249926 ], [ 9.84375, 47.98992167 ], [ 8.4375, 47.98992167 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.4375, 48.92249926 ], [ 8.4375, 50.73645514 ], [ 11.25, 50.73645514 ], [ 11.25, 48.92249926 ], [ 8.4375, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.84375, 47.04018214 ], [ 9.84375, 47.98992167 ], [ 11.25, 47.98992167 ], [ 11.25, 47.04018214 ], [ 9.84375, 47.04018214 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.84375, 47.98992167 ], [ 9.84375, 48.92249926 ], [ 11.25, 48.92249926 ], [ 11.25, 47.98992167 ], [ 9.84375, 47.98992167 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.84375, 50.73645514 ], [ 9.84375, 51.61801655 ], [ 11.25, 51.61801655 ], [ 11.25, 50.73645514 ], [ 9.84375, 50.73645514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 11.38183594, 51.1517861 ], [ 7.99804688, 50.00773901 ], [ 10.45898438, 49.18170339 ], [ 5.2734375, 46.67959447 ] ], [ [ 0.26367188, 49.15296966 ], [ 3.07617188, 50.00773901 ], [ 3.64746094, 48.60385761 ], [ 4.79003906, 49.09545216 ], [ 6.328125, 48.48748648 ], [ 10.15136719, 48.07807894 ], [ 12.39257813, 46.46813299 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/multipoint.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [ -84.48486328124999, 43.40504748787035 ], [ -90.87890625, 39.90973623453719 ], [ -84.55078125, 43.45291889355468 ], [ -90.8349609375, 39.93711893299021 ] ] } } ================================================ FILE: test/fixtures/multipoint_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.55078125, 43.38908194 ], [ -84.55078125, 43.45291889 ], [ -84.46289063, 43.45291889 ], [ -84.46289063, 43.38908194 ], [ -84.55078125, 43.38908194 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.55078125, 43.45291889 ], [ -84.55078125, 43.51668854 ], [ -84.46289063, 43.51668854 ], [ -84.46289063, 43.45291889 ], [ -84.55078125, 43.45291889 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.87890625, 39.84228602 ], [ -90.87890625, 39.90973623 ], [ -90.79101563, 39.90973623 ], [ -90.79101563, 39.84228602 ], [ -90.87890625, 39.84228602 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.87890625, 39.90973623 ], [ -90.87890625, 39.9771201 ], [ -90.79101563, 39.9771201 ], [ -90.79101563, 39.90973623 ], [ -90.87890625, 39.90973623 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "MultiPoint", "coordinates": [ [ -84.48486328, 43.40504749 ], [ -90.87890625, 39.90973623 ], [ -84.55078125, 43.45291889 ], [ -90.83496094, 39.93711893 ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/point.geojson ================================================ { "type": "Point", "coordinates": [ -77.15664982795715, 38.87419791355846 ] } ================================================ FILE: test/fixtures/point_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.07958984, 21.12549764 ], [ 79.07958984, 21.13574526 ], [ 79.09057617, 21.13574526 ], [ 79.09057617, 21.12549764 ], [ 79.07958984, 21.12549764 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ 79.08096313, 21.13518486 ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/polygon.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ 5.11962890625, 20.46818922264095 ], [ 5.11962890625, 20.7663868125152 ], [ 5.504150390625, 20.7663868125152 ], [ 5.504150390625, 20.46818922264095 ], [ 5.11962890625, 20.46818922264095 ] ] ] } ================================================ FILE: test/fixtures/polygon_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.45789616 ], [ 5.11962891, 20.46818922 ], [ 5.13061523, 20.46818922 ], [ 5.13061523, 20.45789616 ], [ 5.11962891, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.46818922 ], [ 5.11962891, 20.48877329 ], [ 5.14160156, 20.48877329 ], [ 5.14160156, 20.46818922 ], [ 5.11962891, 20.46818922 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.48877329 ], [ 5.11962891, 20.50935459 ], [ 5.14160156, 20.50935459 ], [ 5.14160156, 20.48877329 ], [ 5.11962891, 20.48877329 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.50935459 ], [ 5.11962891, 20.52993313 ], [ 5.14160156, 20.52993313 ], [ 5.14160156, 20.50935459 ], [ 5.11962891, 20.50935459 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.52993313 ], [ 5.11962891, 20.55050889 ], [ 5.14160156, 20.55050889 ], [ 5.14160156, 20.52993313 ], [ 5.11962891, 20.52993313 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.55050889 ], [ 5.11962891, 20.57108189 ], [ 5.14160156, 20.57108189 ], [ 5.14160156, 20.55050889 ], [ 5.11962891, 20.55050889 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.57108189 ], [ 5.11962891, 20.59165212 ], [ 5.14160156, 20.59165212 ], [ 5.14160156, 20.57108189 ], [ 5.11962891, 20.57108189 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.59165212 ], [ 5.11962891, 20.61221957 ], [ 5.14160156, 20.61221957 ], [ 5.14160156, 20.59165212 ], [ 5.11962891, 20.59165212 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.61221957 ], [ 5.11962891, 20.63278425 ], [ 5.14160156, 20.63278425 ], [ 5.14160156, 20.61221957 ], [ 5.11962891, 20.61221957 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.63278425 ], [ 5.11962891, 20.65334615 ], [ 5.14160156, 20.65334615 ], [ 5.14160156, 20.63278425 ], [ 5.11962891, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.65334615 ], [ 5.11962891, 20.67390526 ], [ 5.14160156, 20.67390526 ], [ 5.14160156, 20.65334615 ], [ 5.11962891, 20.65334615 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.67390526 ], [ 5.11962891, 20.6944616 ], [ 5.14160156, 20.6944616 ], [ 5.14160156, 20.67390526 ], [ 5.11962891, 20.67390526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.6944616 ], [ 5.11962891, 20.71501515 ], [ 5.14160156, 20.71501515 ], [ 5.14160156, 20.6944616 ], [ 5.11962891, 20.6944616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.71501515 ], [ 5.11962891, 20.73556591 ], [ 5.14160156, 20.73556591 ], [ 5.14160156, 20.71501515 ], [ 5.11962891, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.73556591 ], [ 5.11962891, 20.75611387 ], [ 5.14160156, 20.75611387 ], [ 5.14160156, 20.73556591 ], [ 5.11962891, 20.73556591 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.75611387 ], [ 5.11962891, 20.76638681 ], [ 5.13061523, 20.76638681 ], [ 5.13061523, 20.75611387 ], [ 5.11962891, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.76638681 ], [ 5.11962891, 20.77665905 ], [ 5.13061523, 20.77665905 ], [ 5.13061523, 20.76638681 ], [ 5.11962891, 20.76638681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.13061523, 20.45789616 ], [ 5.13061523, 20.46818922 ], [ 5.14160156, 20.46818922 ], [ 5.14160156, 20.45789616 ], [ 5.13061523, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.13061523, 20.75611387 ], [ 5.13061523, 20.76638681 ], [ 5.14160156, 20.76638681 ], [ 5.14160156, 20.75611387 ], [ 5.13061523, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.14160156, 20.45789616 ], [ 5.14160156, 20.46818922 ], [ 5.15258789, 20.46818922 ], [ 5.15258789, 20.45789616 ], [ 5.14160156, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.14160156, 20.46818922 ], [ 5.14160156, 20.50935459 ], [ 5.18554688, 20.50935459 ], [ 5.18554688, 20.46818922 ], [ 5.14160156, 20.46818922 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.14160156, 20.50935459 ], [ 5.14160156, 20.55050889 ], [ 5.18554688, 20.55050889 ], [ 5.18554688, 20.50935459 ], [ 5.14160156, 20.50935459 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.14160156, 20.55050889 ], [ 5.14160156, 20.59165212 ], [ 5.18554688, 20.59165212 ], [ 5.18554688, 20.55050889 ], [ 5.14160156, 20.55050889 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.14160156, 20.59165212 ], [ 5.14160156, 20.63278425 ], [ 5.18554688, 20.63278425 ], [ 5.18554688, 20.59165212 ], [ 5.14160156, 20.59165212 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.14160156, 20.63278425 ], [ 5.14160156, 20.67390526 ], [ 5.18554688, 20.67390526 ], [ 5.18554688, 20.63278425 ], [ 5.14160156, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.14160156, 20.67390526 ], [ 5.14160156, 20.71501515 ], [ 5.18554688, 20.71501515 ], [ 5.18554688, 20.67390526 ], [ 5.14160156, 20.67390526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.14160156, 20.71501515 ], [ 5.14160156, 20.75611387 ], [ 5.18554688, 20.75611387 ], [ 5.18554688, 20.71501515 ], [ 5.14160156, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.14160156, 20.75611387 ], [ 5.14160156, 20.76638681 ], [ 5.15258789, 20.76638681 ], [ 5.15258789, 20.75611387 ], [ 5.14160156, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.15258789, 20.45789616 ], [ 5.15258789, 20.46818922 ], [ 5.16357422, 20.46818922 ], [ 5.16357422, 20.45789616 ], [ 5.15258789, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.15258789, 20.75611387 ], [ 5.15258789, 20.76638681 ], [ 5.16357422, 20.76638681 ], [ 5.16357422, 20.75611387 ], [ 5.15258789, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.16357422, 20.45789616 ], [ 5.16357422, 20.46818922 ], [ 5.17456055, 20.46818922 ], [ 5.17456055, 20.45789616 ], [ 5.16357422, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.16357422, 20.75611387 ], [ 5.16357422, 20.76638681 ], [ 5.17456055, 20.76638681 ], [ 5.17456055, 20.75611387 ], [ 5.16357422, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.17456055, 20.45789616 ], [ 5.17456055, 20.46818922 ], [ 5.18554688, 20.46818922 ], [ 5.18554688, 20.45789616 ], [ 5.17456055, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.17456055, 20.75611387 ], [ 5.17456055, 20.76638681 ], [ 5.18554688, 20.76638681 ], [ 5.18554688, 20.75611387 ], [ 5.17456055, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.18554688, 20.45789616 ], [ 5.18554688, 20.46818922 ], [ 5.1965332, 20.46818922 ], [ 5.1965332, 20.45789616 ], [ 5.18554688, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.18554688, 20.46818922 ], [ 5.18554688, 20.55050889 ], [ 5.2734375, 20.55050889 ], [ 5.2734375, 20.46818922 ], [ 5.18554688, 20.46818922 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.18554688, 20.55050889 ], [ 5.18554688, 20.63278425 ], [ 5.2734375, 20.63278425 ], [ 5.2734375, 20.55050889 ], [ 5.18554688, 20.55050889 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.18554688, 20.63278425 ], [ 5.18554688, 20.71501515 ], [ 5.2734375, 20.71501515 ], [ 5.2734375, 20.63278425 ], [ 5.18554688, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.18554688, 20.71501515 ], [ 5.18554688, 20.75611387 ], [ 5.22949219, 20.75611387 ], [ 5.22949219, 20.71501515 ], [ 5.18554688, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.18554688, 20.75611387 ], [ 5.18554688, 20.76638681 ], [ 5.1965332, 20.76638681 ], [ 5.1965332, 20.75611387 ], [ 5.18554688, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.1965332, 20.45789616 ], [ 5.1965332, 20.46818922 ], [ 5.20751953, 20.46818922 ], [ 5.20751953, 20.45789616 ], [ 5.1965332, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.1965332, 20.75611387 ], [ 5.1965332, 20.76638681 ], [ 5.20751953, 20.76638681 ], [ 5.20751953, 20.75611387 ], [ 5.1965332, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.20751953, 20.45789616 ], [ 5.20751953, 20.46818922 ], [ 5.21850586, 20.46818922 ], [ 5.21850586, 20.45789616 ], [ 5.20751953, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.20751953, 20.75611387 ], [ 5.20751953, 20.76638681 ], [ 5.21850586, 20.76638681 ], [ 5.21850586, 20.75611387 ], [ 5.20751953, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.21850586, 20.45789616 ], [ 5.21850586, 20.46818922 ], [ 5.22949219, 20.46818922 ], [ 5.22949219, 20.45789616 ], [ 5.21850586, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.21850586, 20.75611387 ], [ 5.21850586, 20.76638681 ], [ 5.22949219, 20.76638681 ], [ 5.22949219, 20.75611387 ], [ 5.21850586, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.22949219, 20.45789616 ], [ 5.22949219, 20.46818922 ], [ 5.24047852, 20.46818922 ], [ 5.24047852, 20.45789616 ], [ 5.22949219, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.22949219, 20.71501515 ], [ 5.22949219, 20.75611387 ], [ 5.2734375, 20.75611387 ], [ 5.2734375, 20.71501515 ], [ 5.22949219, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.22949219, 20.75611387 ], [ 5.22949219, 20.76638681 ], [ 5.24047852, 20.76638681 ], [ 5.24047852, 20.75611387 ], [ 5.22949219, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.24047852, 20.45789616 ], [ 5.24047852, 20.46818922 ], [ 5.25146484, 20.46818922 ], [ 5.25146484, 20.45789616 ], [ 5.24047852, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.24047852, 20.75611387 ], [ 5.24047852, 20.76638681 ], [ 5.25146484, 20.76638681 ], [ 5.25146484, 20.75611387 ], [ 5.24047852, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.25146484, 20.45789616 ], [ 5.25146484, 20.46818922 ], [ 5.26245117, 20.46818922 ], [ 5.26245117, 20.45789616 ], [ 5.25146484, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.25146484, 20.75611387 ], [ 5.25146484, 20.76638681 ], [ 5.26245117, 20.76638681 ], [ 5.26245117, 20.75611387 ], [ 5.25146484, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.26245117, 20.45789616 ], [ 5.26245117, 20.46818922 ], [ 5.2734375, 20.46818922 ], [ 5.2734375, 20.45789616 ], [ 5.26245117, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.26245117, 20.75611387 ], [ 5.26245117, 20.76638681 ], [ 5.2734375, 20.76638681 ], [ 5.2734375, 20.75611387 ], [ 5.26245117, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.2734375, 20.45789616 ], [ 5.2734375, 20.46818922 ], [ 5.28442383, 20.46818922 ], [ 5.28442383, 20.45789616 ], [ 5.2734375, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.2734375, 20.46818922 ], [ 5.2734375, 20.63278425 ], [ 5.44921875, 20.63278425 ], [ 5.44921875, 20.46818922 ], [ 5.2734375, 20.46818922 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.2734375, 20.63278425 ], [ 5.2734375, 20.71501515 ], [ 5.36132813, 20.71501515 ], [ 5.36132813, 20.63278425 ], [ 5.2734375, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.2734375, 20.71501515 ], [ 5.2734375, 20.75611387 ], [ 5.31738281, 20.75611387 ], [ 5.31738281, 20.71501515 ], [ 5.2734375, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.2734375, 20.75611387 ], [ 5.2734375, 20.76638681 ], [ 5.28442383, 20.76638681 ], [ 5.28442383, 20.75611387 ], [ 5.2734375, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.28442383, 20.45789616 ], [ 5.28442383, 20.46818922 ], [ 5.29541016, 20.46818922 ], [ 5.29541016, 20.45789616 ], [ 5.28442383, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.28442383, 20.75611387 ], [ 5.28442383, 20.76638681 ], [ 5.29541016, 20.76638681 ], [ 5.29541016, 20.75611387 ], [ 5.28442383, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.29541016, 20.45789616 ], [ 5.29541016, 20.46818922 ], [ 5.30639648, 20.46818922 ], [ 5.30639648, 20.45789616 ], [ 5.29541016, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.29541016, 20.75611387 ], [ 5.29541016, 20.76638681 ], [ 5.30639648, 20.76638681 ], [ 5.30639648, 20.75611387 ], [ 5.29541016, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.30639648, 20.45789616 ], [ 5.30639648, 20.46818922 ], [ 5.31738281, 20.46818922 ], [ 5.31738281, 20.45789616 ], [ 5.30639648, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.30639648, 20.75611387 ], [ 5.30639648, 20.76638681 ], [ 5.31738281, 20.76638681 ], [ 5.31738281, 20.75611387 ], [ 5.30639648, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.31738281, 20.45789616 ], [ 5.31738281, 20.46818922 ], [ 5.32836914, 20.46818922 ], [ 5.32836914, 20.45789616 ], [ 5.31738281, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.31738281, 20.71501515 ], [ 5.31738281, 20.75611387 ], [ 5.36132813, 20.75611387 ], [ 5.36132813, 20.71501515 ], [ 5.31738281, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.31738281, 20.75611387 ], [ 5.31738281, 20.76638681 ], [ 5.32836914, 20.76638681 ], [ 5.32836914, 20.75611387 ], [ 5.31738281, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.32836914, 20.45789616 ], [ 5.32836914, 20.46818922 ], [ 5.33935547, 20.46818922 ], [ 5.33935547, 20.45789616 ], [ 5.32836914, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.32836914, 20.75611387 ], [ 5.32836914, 20.76638681 ], [ 5.33935547, 20.76638681 ], [ 5.33935547, 20.75611387 ], [ 5.32836914, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.33935547, 20.45789616 ], [ 5.33935547, 20.46818922 ], [ 5.3503418, 20.46818922 ], [ 5.3503418, 20.45789616 ], [ 5.33935547, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.33935547, 20.75611387 ], [ 5.33935547, 20.76638681 ], [ 5.3503418, 20.76638681 ], [ 5.3503418, 20.75611387 ], [ 5.33935547, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.3503418, 20.45789616 ], [ 5.3503418, 20.46818922 ], [ 5.36132813, 20.46818922 ], [ 5.36132813, 20.45789616 ], [ 5.3503418, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.3503418, 20.75611387 ], [ 5.3503418, 20.76638681 ], [ 5.36132813, 20.76638681 ], [ 5.36132813, 20.75611387 ], [ 5.3503418, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.36132813, 20.45789616 ], [ 5.36132813, 20.46818922 ], [ 5.37231445, 20.46818922 ], [ 5.37231445, 20.45789616 ], [ 5.36132813, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.36132813, 20.63278425 ], [ 5.36132813, 20.71501515 ], [ 5.44921875, 20.71501515 ], [ 5.44921875, 20.63278425 ], [ 5.36132813, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.36132813, 20.71501515 ], [ 5.36132813, 20.75611387 ], [ 5.40527344, 20.75611387 ], [ 5.40527344, 20.71501515 ], [ 5.36132813, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.36132813, 20.75611387 ], [ 5.36132813, 20.76638681 ], [ 5.37231445, 20.76638681 ], [ 5.37231445, 20.75611387 ], [ 5.36132813, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.37231445, 20.45789616 ], [ 5.37231445, 20.46818922 ], [ 5.38330078, 20.46818922 ], [ 5.38330078, 20.45789616 ], [ 5.37231445, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.37231445, 20.75611387 ], [ 5.37231445, 20.76638681 ], [ 5.38330078, 20.76638681 ], [ 5.38330078, 20.75611387 ], [ 5.37231445, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.38330078, 20.45789616 ], [ 5.38330078, 20.46818922 ], [ 5.39428711, 20.46818922 ], [ 5.39428711, 20.45789616 ], [ 5.38330078, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.38330078, 20.75611387 ], [ 5.38330078, 20.76638681 ], [ 5.39428711, 20.76638681 ], [ 5.39428711, 20.75611387 ], [ 5.38330078, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.39428711, 20.45789616 ], [ 5.39428711, 20.46818922 ], [ 5.40527344, 20.46818922 ], [ 5.40527344, 20.45789616 ], [ 5.39428711, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.39428711, 20.75611387 ], [ 5.39428711, 20.76638681 ], [ 5.40527344, 20.76638681 ], [ 5.40527344, 20.75611387 ], [ 5.39428711, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.40527344, 20.45789616 ], [ 5.40527344, 20.46818922 ], [ 5.41625977, 20.46818922 ], [ 5.41625977, 20.45789616 ], [ 5.40527344, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.40527344, 20.71501515 ], [ 5.40527344, 20.75611387 ], [ 5.44921875, 20.75611387 ], [ 5.44921875, 20.71501515 ], [ 5.40527344, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.40527344, 20.75611387 ], [ 5.40527344, 20.76638681 ], [ 5.41625977, 20.76638681 ], [ 5.41625977, 20.75611387 ], [ 5.40527344, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.41625977, 20.45789616 ], [ 5.41625977, 20.46818922 ], [ 5.42724609, 20.46818922 ], [ 5.42724609, 20.45789616 ], [ 5.41625977, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.41625977, 20.75611387 ], [ 5.41625977, 20.76638681 ], [ 5.42724609, 20.76638681 ], [ 5.42724609, 20.75611387 ], [ 5.41625977, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.42724609, 20.45789616 ], [ 5.42724609, 20.46818922 ], [ 5.43823242, 20.46818922 ], [ 5.43823242, 20.45789616 ], [ 5.42724609, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.42724609, 20.75611387 ], [ 5.42724609, 20.76638681 ], [ 5.43823242, 20.76638681 ], [ 5.43823242, 20.75611387 ], [ 5.42724609, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.43823242, 20.45789616 ], [ 5.43823242, 20.46818922 ], [ 5.44921875, 20.46818922 ], [ 5.44921875, 20.45789616 ], [ 5.43823242, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.43823242, 20.75611387 ], [ 5.43823242, 20.76638681 ], [ 5.44921875, 20.76638681 ], [ 5.44921875, 20.75611387 ], [ 5.43823242, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.44921875, 20.45789616 ], [ 5.44921875, 20.46818922 ], [ 5.46020508, 20.46818922 ], [ 5.46020508, 20.45789616 ], [ 5.44921875, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.44921875, 20.46818922 ], [ 5.44921875, 20.50935459 ], [ 5.49316406, 20.50935459 ], [ 5.49316406, 20.46818922 ], [ 5.44921875, 20.46818922 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.44921875, 20.50935459 ], [ 5.44921875, 20.55050889 ], [ 5.49316406, 20.55050889 ], [ 5.49316406, 20.50935459 ], [ 5.44921875, 20.50935459 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.44921875, 20.55050889 ], [ 5.44921875, 20.59165212 ], [ 5.49316406, 20.59165212 ], [ 5.49316406, 20.55050889 ], [ 5.44921875, 20.55050889 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.44921875, 20.59165212 ], [ 5.44921875, 20.63278425 ], [ 5.49316406, 20.63278425 ], [ 5.49316406, 20.59165212 ], [ 5.44921875, 20.59165212 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.44921875, 20.63278425 ], [ 5.44921875, 20.67390526 ], [ 5.49316406, 20.67390526 ], [ 5.49316406, 20.63278425 ], [ 5.44921875, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.44921875, 20.67390526 ], [ 5.44921875, 20.71501515 ], [ 5.49316406, 20.71501515 ], [ 5.49316406, 20.67390526 ], [ 5.44921875, 20.67390526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.44921875, 20.71501515 ], [ 5.44921875, 20.75611387 ], [ 5.49316406, 20.75611387 ], [ 5.49316406, 20.71501515 ], [ 5.44921875, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.44921875, 20.75611387 ], [ 5.44921875, 20.76638681 ], [ 5.46020508, 20.76638681 ], [ 5.46020508, 20.75611387 ], [ 5.44921875, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.46020508, 20.45789616 ], [ 5.46020508, 20.46818922 ], [ 5.47119141, 20.46818922 ], [ 5.47119141, 20.45789616 ], [ 5.46020508, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.46020508, 20.75611387 ], [ 5.46020508, 20.76638681 ], [ 5.47119141, 20.76638681 ], [ 5.47119141, 20.75611387 ], [ 5.46020508, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.47119141, 20.45789616 ], [ 5.47119141, 20.46818922 ], [ 5.48217773, 20.46818922 ], [ 5.48217773, 20.45789616 ], [ 5.47119141, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.47119141, 20.75611387 ], [ 5.47119141, 20.76638681 ], [ 5.48217773, 20.76638681 ], [ 5.48217773, 20.75611387 ], [ 5.47119141, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.48217773, 20.45789616 ], [ 5.48217773, 20.46818922 ], [ 5.49316406, 20.46818922 ], [ 5.49316406, 20.45789616 ], [ 5.48217773, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.48217773, 20.75611387 ], [ 5.48217773, 20.76638681 ], [ 5.49316406, 20.76638681 ], [ 5.49316406, 20.75611387 ], [ 5.48217773, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.45789616 ], [ 5.49316406, 20.46818922 ], [ 5.50415039, 20.46818922 ], [ 5.50415039, 20.45789616 ], [ 5.49316406, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.46818922 ], [ 5.49316406, 20.48877329 ], [ 5.51513672, 20.48877329 ], [ 5.51513672, 20.46818922 ], [ 5.49316406, 20.46818922 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.48877329 ], [ 5.49316406, 20.50935459 ], [ 5.51513672, 20.50935459 ], [ 5.51513672, 20.48877329 ], [ 5.49316406, 20.48877329 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.50935459 ], [ 5.49316406, 20.52993313 ], [ 5.51513672, 20.52993313 ], [ 5.51513672, 20.50935459 ], [ 5.49316406, 20.50935459 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.52993313 ], [ 5.49316406, 20.55050889 ], [ 5.51513672, 20.55050889 ], [ 5.51513672, 20.52993313 ], [ 5.49316406, 20.52993313 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.55050889 ], [ 5.49316406, 20.57108189 ], [ 5.51513672, 20.57108189 ], [ 5.51513672, 20.55050889 ], [ 5.49316406, 20.55050889 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.57108189 ], [ 5.49316406, 20.59165212 ], [ 5.51513672, 20.59165212 ], [ 5.51513672, 20.57108189 ], [ 5.49316406, 20.57108189 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.59165212 ], [ 5.49316406, 20.61221957 ], [ 5.51513672, 20.61221957 ], [ 5.51513672, 20.59165212 ], [ 5.49316406, 20.59165212 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.61221957 ], [ 5.49316406, 20.63278425 ], [ 5.51513672, 20.63278425 ], [ 5.51513672, 20.61221957 ], [ 5.49316406, 20.61221957 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.63278425 ], [ 5.49316406, 20.65334615 ], [ 5.51513672, 20.65334615 ], [ 5.51513672, 20.63278425 ], [ 5.49316406, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.65334615 ], [ 5.49316406, 20.67390526 ], [ 5.51513672, 20.67390526 ], [ 5.51513672, 20.65334615 ], [ 5.49316406, 20.65334615 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.67390526 ], [ 5.49316406, 20.6944616 ], [ 5.51513672, 20.6944616 ], [ 5.51513672, 20.67390526 ], [ 5.49316406, 20.67390526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.6944616 ], [ 5.49316406, 20.71501515 ], [ 5.51513672, 20.71501515 ], [ 5.51513672, 20.6944616 ], [ 5.49316406, 20.6944616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.71501515 ], [ 5.49316406, 20.73556591 ], [ 5.51513672, 20.73556591 ], [ 5.51513672, 20.71501515 ], [ 5.49316406, 20.71501515 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.73556591 ], [ 5.49316406, 20.75611387 ], [ 5.51513672, 20.75611387 ], [ 5.51513672, 20.73556591 ], [ 5.49316406, 20.73556591 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.49316406, 20.75611387 ], [ 5.49316406, 20.76638681 ], [ 5.50415039, 20.76638681 ], [ 5.50415039, 20.75611387 ], [ 5.49316406, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.50415039, 20.45789616 ], [ 5.50415039, 20.46818922 ], [ 5.51513672, 20.46818922 ], [ 5.51513672, 20.45789616 ], [ 5.50415039, 20.45789616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.50415039, 20.75611387 ], [ 5.50415039, 20.76638681 ], [ 5.51513672, 20.76638681 ], [ 5.51513672, 20.75611387 ], [ 5.50415039, 20.75611387 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.11962891, 20.46818922 ], [ 5.11962891, 20.76638681 ], [ 5.50415039, 20.76638681 ], [ 5.50415039, 20.46818922 ], [ 5.11962891, 20.46818922 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/pyramid.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ 24.98291015625, 21.391704731036587 ], [ 21.15966796875, 21.4121622297254 ], [ 21.15966796875, 17.602139123350852 ], [ 17.7978515625, 17.602139123350852 ], [ 17.7978515625, 15.15697371337768 ], [ 15.314941406249998, 15.15697371337768 ], [ 15.314941406249998, 12.597454504832017 ], [ 24.98291015625, 12.597454504832017 ], [ 24.98291015625, 21.391704731036587 ] ] ] } ================================================ FILE: test/fixtures/pyramid_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 12.55456353 ], [ 15.1171875, 12.89748918 ], [ 15.46875, 12.89748918 ], [ 15.46875, 12.55456353 ], [ 15.1171875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 12.89748918 ], [ 15.1171875, 13.2399455 ], [ 15.46875, 13.2399455 ], [ 15.46875, 12.89748918 ], [ 15.1171875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 13.2399455 ], [ 15.1171875, 13.5819209 ], [ 15.46875, 13.5819209 ], [ 15.46875, 13.2399455 ], [ 15.1171875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 13.5819209 ], [ 15.1171875, 13.9234039 ], [ 15.46875, 13.9234039 ], [ 15.46875, 13.5819209 ], [ 15.1171875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 13.9234039 ], [ 15.1171875, 14.26438309 ], [ 15.46875, 14.26438309 ], [ 15.46875, 13.9234039 ], [ 15.1171875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 14.26438309 ], [ 15.1171875, 14.60484716 ], [ 15.46875, 14.60484716 ], [ 15.46875, 14.26438309 ], [ 15.1171875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 14.60484716 ], [ 15.1171875, 14.94478488 ], [ 15.46875, 14.94478488 ], [ 15.46875, 14.60484716 ], [ 15.1171875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 14.94478488 ], [ 15.1171875, 15.28418511 ], [ 15.46875, 15.28418511 ], [ 15.46875, 14.94478488 ], [ 15.1171875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 12.55456353 ], [ 15.46875, 12.89748918 ], [ 15.8203125, 12.89748918 ], [ 15.8203125, 12.55456353 ], [ 15.46875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 12.89748918 ], [ 15.46875, 13.2399455 ], [ 15.8203125, 13.2399455 ], [ 15.8203125, 12.89748918 ], [ 15.46875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 13.2399455 ], [ 15.46875, 13.5819209 ], [ 15.8203125, 13.5819209 ], [ 15.8203125, 13.2399455 ], [ 15.46875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 13.5819209 ], [ 15.46875, 13.9234039 ], [ 15.8203125, 13.9234039 ], [ 15.8203125, 13.5819209 ], [ 15.46875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 13.9234039 ], [ 15.46875, 14.26438309 ], [ 15.8203125, 14.26438309 ], [ 15.8203125, 13.9234039 ], [ 15.46875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 14.26438309 ], [ 15.46875, 14.60484716 ], [ 15.8203125, 14.60484716 ], [ 15.8203125, 14.26438309 ], [ 15.46875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 14.60484716 ], [ 15.46875, 14.94478488 ], [ 15.8203125, 14.94478488 ], [ 15.8203125, 14.60484716 ], [ 15.46875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 14.94478488 ], [ 15.46875, 15.28418511 ], [ 15.8203125, 15.28418511 ], [ 15.8203125, 14.94478488 ], [ 15.46875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 12.55456353 ], [ 15.8203125, 12.89748918 ], [ 16.171875, 12.89748918 ], [ 16.171875, 12.55456353 ], [ 15.8203125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 12.89748918 ], [ 15.8203125, 13.2399455 ], [ 16.171875, 13.2399455 ], [ 16.171875, 12.89748918 ], [ 15.8203125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 13.2399455 ], [ 15.8203125, 13.5819209 ], [ 16.171875, 13.5819209 ], [ 16.171875, 13.2399455 ], [ 15.8203125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 13.5819209 ], [ 15.8203125, 13.9234039 ], [ 16.171875, 13.9234039 ], [ 16.171875, 13.5819209 ], [ 15.8203125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 13.9234039 ], [ 15.8203125, 14.26438309 ], [ 16.171875, 14.26438309 ], [ 16.171875, 13.9234039 ], [ 15.8203125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 14.26438309 ], [ 15.8203125, 14.60484716 ], [ 16.171875, 14.60484716 ], [ 16.171875, 14.26438309 ], [ 15.8203125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 14.60484716 ], [ 15.8203125, 14.94478488 ], [ 16.171875, 14.94478488 ], [ 16.171875, 14.60484716 ], [ 15.8203125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 14.94478488 ], [ 15.8203125, 15.28418511 ], [ 16.171875, 15.28418511 ], [ 16.171875, 14.94478488 ], [ 15.8203125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 12.55456353 ], [ 16.171875, 12.89748918 ], [ 16.5234375, 12.89748918 ], [ 16.5234375, 12.55456353 ], [ 16.171875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 12.89748918 ], [ 16.171875, 13.2399455 ], [ 16.5234375, 13.2399455 ], [ 16.5234375, 12.89748918 ], [ 16.171875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 13.2399455 ], [ 16.171875, 13.5819209 ], [ 16.5234375, 13.5819209 ], [ 16.5234375, 13.2399455 ], [ 16.171875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 13.5819209 ], [ 16.171875, 13.9234039 ], [ 16.5234375, 13.9234039 ], [ 16.5234375, 13.5819209 ], [ 16.171875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 13.9234039 ], [ 16.171875, 14.26438309 ], [ 16.5234375, 14.26438309 ], [ 16.5234375, 13.9234039 ], [ 16.171875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 14.26438309 ], [ 16.171875, 14.60484716 ], [ 16.5234375, 14.60484716 ], [ 16.5234375, 14.26438309 ], [ 16.171875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 14.60484716 ], [ 16.171875, 14.94478488 ], [ 16.5234375, 14.94478488 ], [ 16.5234375, 14.60484716 ], [ 16.171875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 14.94478488 ], [ 16.171875, 15.28418511 ], [ 16.5234375, 15.28418511 ], [ 16.5234375, 14.94478488 ], [ 16.171875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 12.55456353 ], [ 16.5234375, 12.89748918 ], [ 16.875, 12.89748918 ], [ 16.875, 12.55456353 ], [ 16.5234375, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 12.89748918 ], [ 16.5234375, 13.2399455 ], [ 16.875, 13.2399455 ], [ 16.875, 12.89748918 ], [ 16.5234375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 13.2399455 ], [ 16.5234375, 13.5819209 ], [ 16.875, 13.5819209 ], [ 16.875, 13.2399455 ], [ 16.5234375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 13.5819209 ], [ 16.5234375, 13.9234039 ], [ 16.875, 13.9234039 ], [ 16.875, 13.5819209 ], [ 16.5234375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 13.9234039 ], [ 16.5234375, 14.26438309 ], [ 16.875, 14.26438309 ], [ 16.875, 13.9234039 ], [ 16.5234375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 14.26438309 ], [ 16.5234375, 14.60484716 ], [ 16.875, 14.60484716 ], [ 16.875, 14.26438309 ], [ 16.5234375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 14.60484716 ], [ 16.5234375, 14.94478488 ], [ 16.875, 14.94478488 ], [ 16.875, 14.60484716 ], [ 16.5234375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 14.94478488 ], [ 16.5234375, 15.28418511 ], [ 16.875, 15.28418511 ], [ 16.875, 14.94478488 ], [ 16.5234375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 12.55456353 ], [ 16.875, 12.89748918 ], [ 17.2265625, 12.89748918 ], [ 17.2265625, 12.55456353 ], [ 16.875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 12.89748918 ], [ 16.875, 13.2399455 ], [ 17.2265625, 13.2399455 ], [ 17.2265625, 12.89748918 ], [ 16.875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 13.2399455 ], [ 16.875, 13.5819209 ], [ 17.2265625, 13.5819209 ], [ 17.2265625, 13.2399455 ], [ 16.875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 13.5819209 ], [ 16.875, 13.9234039 ], [ 17.2265625, 13.9234039 ], [ 17.2265625, 13.5819209 ], [ 16.875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 13.9234039 ], [ 16.875, 14.26438309 ], [ 17.2265625, 14.26438309 ], [ 17.2265625, 13.9234039 ], [ 16.875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 14.26438309 ], [ 16.875, 14.60484716 ], [ 17.2265625, 14.60484716 ], [ 17.2265625, 14.26438309 ], [ 16.875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 14.60484716 ], [ 16.875, 14.94478488 ], [ 17.2265625, 14.94478488 ], [ 17.2265625, 14.60484716 ], [ 16.875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 14.94478488 ], [ 16.875, 15.28418511 ], [ 17.2265625, 15.28418511 ], [ 17.2265625, 14.94478488 ], [ 16.875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 12.55456353 ], [ 17.2265625, 12.89748918 ], [ 17.578125, 12.89748918 ], [ 17.578125, 12.55456353 ], [ 17.2265625, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 12.89748918 ], [ 17.2265625, 13.2399455 ], [ 17.578125, 13.2399455 ], [ 17.578125, 12.89748918 ], [ 17.2265625, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 13.2399455 ], [ 17.2265625, 13.5819209 ], [ 17.578125, 13.5819209 ], [ 17.578125, 13.2399455 ], [ 17.2265625, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 13.5819209 ], [ 17.2265625, 13.9234039 ], [ 17.578125, 13.9234039 ], [ 17.578125, 13.5819209 ], [ 17.2265625, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 13.9234039 ], [ 17.2265625, 14.26438309 ], [ 17.578125, 14.26438309 ], [ 17.578125, 13.9234039 ], [ 17.2265625, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 14.26438309 ], [ 17.2265625, 14.60484716 ], [ 17.578125, 14.60484716 ], [ 17.578125, 14.26438309 ], [ 17.2265625, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 14.60484716 ], [ 17.2265625, 14.94478488 ], [ 17.578125, 14.94478488 ], [ 17.578125, 14.60484716 ], [ 17.2265625, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 14.94478488 ], [ 17.2265625, 15.28418511 ], [ 17.578125, 15.28418511 ], [ 17.578125, 14.94478488 ], [ 17.2265625, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 12.55456353 ], [ 17.578125, 12.89748918 ], [ 17.9296875, 12.89748918 ], [ 17.9296875, 12.55456353 ], [ 17.578125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 12.89748918 ], [ 17.578125, 13.2399455 ], [ 17.9296875, 13.2399455 ], [ 17.9296875, 12.89748918 ], [ 17.578125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 13.2399455 ], [ 17.578125, 13.5819209 ], [ 17.9296875, 13.5819209 ], [ 17.9296875, 13.2399455 ], [ 17.578125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 13.5819209 ], [ 17.578125, 13.9234039 ], [ 17.9296875, 13.9234039 ], [ 17.9296875, 13.5819209 ], [ 17.578125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 13.9234039 ], [ 17.578125, 14.26438309 ], [ 17.9296875, 14.26438309 ], [ 17.9296875, 13.9234039 ], [ 17.578125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 14.26438309 ], [ 17.578125, 14.60484716 ], [ 17.9296875, 14.60484716 ], [ 17.9296875, 14.26438309 ], [ 17.578125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 14.60484716 ], [ 17.578125, 14.94478488 ], [ 17.9296875, 14.94478488 ], [ 17.9296875, 14.60484716 ], [ 17.578125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 14.94478488 ], [ 17.578125, 15.28418511 ], [ 17.9296875, 15.28418511 ], [ 17.9296875, 14.94478488 ], [ 17.578125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 15.28418511 ], [ 17.578125, 15.62303683 ], [ 17.9296875, 15.62303683 ], [ 17.9296875, 15.28418511 ], [ 17.578125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 15.62303683 ], [ 17.578125, 15.96132908 ], [ 17.9296875, 15.96132908 ], [ 17.9296875, 15.62303683 ], [ 17.578125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 15.96132908 ], [ 17.578125, 16.29905101 ], [ 17.9296875, 16.29905101 ], [ 17.9296875, 15.96132908 ], [ 17.578125, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 16.29905101 ], [ 17.578125, 16.63619188 ], [ 17.9296875, 16.63619188 ], [ 17.9296875, 16.29905101 ], [ 17.578125, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 16.63619188 ], [ 17.578125, 16.97274102 ], [ 17.9296875, 16.97274102 ], [ 17.9296875, 16.63619188 ], [ 17.578125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 16.97274102 ], [ 17.578125, 17.30868789 ], [ 17.9296875, 17.30868789 ], [ 17.9296875, 16.97274102 ], [ 17.578125, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 17.30868789 ], [ 17.578125, 17.64402203 ], [ 17.9296875, 17.64402203 ], [ 17.9296875, 17.30868789 ], [ 17.578125, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 12.55456353 ], [ 17.9296875, 12.89748918 ], [ 18.28125, 12.89748918 ], [ 18.28125, 12.55456353 ], [ 17.9296875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 12.89748918 ], [ 17.9296875, 13.2399455 ], [ 18.28125, 13.2399455 ], [ 18.28125, 12.89748918 ], [ 17.9296875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 13.2399455 ], [ 17.9296875, 13.5819209 ], [ 18.28125, 13.5819209 ], [ 18.28125, 13.2399455 ], [ 17.9296875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 13.5819209 ], [ 17.9296875, 13.9234039 ], [ 18.28125, 13.9234039 ], [ 18.28125, 13.5819209 ], [ 17.9296875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 13.9234039 ], [ 17.9296875, 14.26438309 ], [ 18.28125, 14.26438309 ], [ 18.28125, 13.9234039 ], [ 17.9296875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 14.26438309 ], [ 17.9296875, 14.60484716 ], [ 18.28125, 14.60484716 ], [ 18.28125, 14.26438309 ], [ 17.9296875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 14.60484716 ], [ 17.9296875, 14.94478488 ], [ 18.28125, 14.94478488 ], [ 18.28125, 14.60484716 ], [ 17.9296875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 14.94478488 ], [ 17.9296875, 15.28418511 ], [ 18.28125, 15.28418511 ], [ 18.28125, 14.94478488 ], [ 17.9296875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 15.28418511 ], [ 17.9296875, 15.62303683 ], [ 18.28125, 15.62303683 ], [ 18.28125, 15.28418511 ], [ 17.9296875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 15.62303683 ], [ 17.9296875, 15.96132908 ], [ 18.28125, 15.96132908 ], [ 18.28125, 15.62303683 ], [ 17.9296875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 15.96132908 ], [ 17.9296875, 16.29905101 ], [ 18.28125, 16.29905101 ], [ 18.28125, 15.96132908 ], [ 17.9296875, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 16.29905101 ], [ 17.9296875, 16.63619188 ], [ 18.28125, 16.63619188 ], [ 18.28125, 16.29905101 ], [ 17.9296875, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 16.63619188 ], [ 17.9296875, 16.97274102 ], [ 18.28125, 16.97274102 ], [ 18.28125, 16.63619188 ], [ 17.9296875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 16.97274102 ], [ 17.9296875, 17.30868789 ], [ 18.28125, 17.30868789 ], [ 18.28125, 16.97274102 ], [ 17.9296875, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 17.30868789 ], [ 17.9296875, 17.64402203 ], [ 18.28125, 17.64402203 ], [ 18.28125, 17.30868789 ], [ 17.9296875, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 12.55456353 ], [ 18.28125, 12.89748918 ], [ 18.6328125, 12.89748918 ], [ 18.6328125, 12.55456353 ], [ 18.28125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 12.89748918 ], [ 18.28125, 13.2399455 ], [ 18.6328125, 13.2399455 ], [ 18.6328125, 12.89748918 ], [ 18.28125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 13.2399455 ], [ 18.28125, 13.5819209 ], [ 18.6328125, 13.5819209 ], [ 18.6328125, 13.2399455 ], [ 18.28125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 13.5819209 ], [ 18.28125, 13.9234039 ], [ 18.6328125, 13.9234039 ], [ 18.6328125, 13.5819209 ], [ 18.28125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 13.9234039 ], [ 18.28125, 14.26438309 ], [ 18.6328125, 14.26438309 ], [ 18.6328125, 13.9234039 ], [ 18.28125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 14.26438309 ], [ 18.28125, 14.60484716 ], [ 18.6328125, 14.60484716 ], [ 18.6328125, 14.26438309 ], [ 18.28125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 14.60484716 ], [ 18.28125, 14.94478488 ], [ 18.6328125, 14.94478488 ], [ 18.6328125, 14.60484716 ], [ 18.28125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 14.94478488 ], [ 18.28125, 15.28418511 ], [ 18.6328125, 15.28418511 ], [ 18.6328125, 14.94478488 ], [ 18.28125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 15.28418511 ], [ 18.28125, 15.62303683 ], [ 18.6328125, 15.62303683 ], [ 18.6328125, 15.28418511 ], [ 18.28125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 15.62303683 ], [ 18.28125, 15.96132908 ], [ 18.6328125, 15.96132908 ], [ 18.6328125, 15.62303683 ], [ 18.28125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 15.96132908 ], [ 18.28125, 16.29905101 ], [ 18.6328125, 16.29905101 ], [ 18.6328125, 15.96132908 ], [ 18.28125, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 16.29905101 ], [ 18.28125, 16.63619188 ], [ 18.6328125, 16.63619188 ], [ 18.6328125, 16.29905101 ], [ 18.28125, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 16.63619188 ], [ 18.28125, 16.97274102 ], [ 18.6328125, 16.97274102 ], [ 18.6328125, 16.63619188 ], [ 18.28125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 16.97274102 ], [ 18.28125, 17.30868789 ], [ 18.6328125, 17.30868789 ], [ 18.6328125, 16.97274102 ], [ 18.28125, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 17.30868789 ], [ 18.28125, 17.64402203 ], [ 18.6328125, 17.64402203 ], [ 18.6328125, 17.30868789 ], [ 18.28125, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 12.55456353 ], [ 18.6328125, 12.89748918 ], [ 18.984375, 12.89748918 ], [ 18.984375, 12.55456353 ], [ 18.6328125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 12.89748918 ], [ 18.6328125, 13.2399455 ], [ 18.984375, 13.2399455 ], [ 18.984375, 12.89748918 ], [ 18.6328125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 13.2399455 ], [ 18.6328125, 13.5819209 ], [ 18.984375, 13.5819209 ], [ 18.984375, 13.2399455 ], [ 18.6328125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 13.5819209 ], [ 18.6328125, 13.9234039 ], [ 18.984375, 13.9234039 ], [ 18.984375, 13.5819209 ], [ 18.6328125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 13.9234039 ], [ 18.6328125, 14.26438309 ], [ 18.984375, 14.26438309 ], [ 18.984375, 13.9234039 ], [ 18.6328125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 14.26438309 ], [ 18.6328125, 14.60484716 ], [ 18.984375, 14.60484716 ], [ 18.984375, 14.26438309 ], [ 18.6328125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 14.60484716 ], [ 18.6328125, 14.94478488 ], [ 18.984375, 14.94478488 ], [ 18.984375, 14.60484716 ], [ 18.6328125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 14.94478488 ], [ 18.6328125, 15.28418511 ], [ 18.984375, 15.28418511 ], [ 18.984375, 14.94478488 ], [ 18.6328125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 15.28418511 ], [ 18.6328125, 15.62303683 ], [ 18.984375, 15.62303683 ], [ 18.984375, 15.28418511 ], [ 18.6328125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 15.62303683 ], [ 18.6328125, 15.96132908 ], [ 18.984375, 15.96132908 ], [ 18.984375, 15.62303683 ], [ 18.6328125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 15.96132908 ], [ 18.6328125, 16.29905101 ], [ 18.984375, 16.29905101 ], [ 18.984375, 15.96132908 ], [ 18.6328125, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 16.29905101 ], [ 18.6328125, 16.63619188 ], [ 18.984375, 16.63619188 ], [ 18.984375, 16.29905101 ], [ 18.6328125, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 16.63619188 ], [ 18.6328125, 16.97274102 ], [ 18.984375, 16.97274102 ], [ 18.984375, 16.63619188 ], [ 18.6328125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 16.97274102 ], [ 18.6328125, 17.30868789 ], [ 18.984375, 17.30868789 ], [ 18.984375, 16.97274102 ], [ 18.6328125, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 17.30868789 ], [ 18.6328125, 17.64402203 ], [ 18.984375, 17.64402203 ], [ 18.984375, 17.30868789 ], [ 18.6328125, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 12.55456353 ], [ 18.984375, 12.89748918 ], [ 19.3359375, 12.89748918 ], [ 19.3359375, 12.55456353 ], [ 18.984375, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 12.89748918 ], [ 18.984375, 13.2399455 ], [ 19.3359375, 13.2399455 ], [ 19.3359375, 12.89748918 ], [ 18.984375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 13.2399455 ], [ 18.984375, 13.5819209 ], [ 19.3359375, 13.5819209 ], [ 19.3359375, 13.2399455 ], [ 18.984375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 13.5819209 ], [ 18.984375, 13.9234039 ], [ 19.3359375, 13.9234039 ], [ 19.3359375, 13.5819209 ], [ 18.984375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 13.9234039 ], [ 18.984375, 14.26438309 ], [ 19.3359375, 14.26438309 ], [ 19.3359375, 13.9234039 ], [ 18.984375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 14.26438309 ], [ 18.984375, 14.60484716 ], [ 19.3359375, 14.60484716 ], [ 19.3359375, 14.26438309 ], [ 18.984375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 14.60484716 ], [ 18.984375, 14.94478488 ], [ 19.3359375, 14.94478488 ], [ 19.3359375, 14.60484716 ], [ 18.984375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 14.94478488 ], [ 18.984375, 15.28418511 ], [ 19.3359375, 15.28418511 ], [ 19.3359375, 14.94478488 ], [ 18.984375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 15.28418511 ], [ 18.984375, 15.62303683 ], [ 19.3359375, 15.62303683 ], [ 19.3359375, 15.28418511 ], [ 18.984375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 15.62303683 ], [ 18.984375, 15.96132908 ], [ 19.3359375, 15.96132908 ], [ 19.3359375, 15.62303683 ], [ 18.984375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 15.96132908 ], [ 18.984375, 16.29905101 ], [ 19.3359375, 16.29905101 ], [ 19.3359375, 15.96132908 ], [ 18.984375, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 16.29905101 ], [ 18.984375, 16.63619188 ], [ 19.3359375, 16.63619188 ], [ 19.3359375, 16.29905101 ], [ 18.984375, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 16.63619188 ], [ 18.984375, 16.97274102 ], [ 19.3359375, 16.97274102 ], [ 19.3359375, 16.63619188 ], [ 18.984375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 16.97274102 ], [ 18.984375, 17.30868789 ], [ 19.3359375, 17.30868789 ], [ 19.3359375, 16.97274102 ], [ 18.984375, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 17.30868789 ], [ 18.984375, 17.64402203 ], [ 19.3359375, 17.64402203 ], [ 19.3359375, 17.30868789 ], [ 18.984375, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 12.55456353 ], [ 19.3359375, 12.89748918 ], [ 19.6875, 12.89748918 ], [ 19.6875, 12.55456353 ], [ 19.3359375, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 12.89748918 ], [ 19.3359375, 13.2399455 ], [ 19.6875, 13.2399455 ], [ 19.6875, 12.89748918 ], [ 19.3359375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 13.2399455 ], [ 19.3359375, 13.5819209 ], [ 19.6875, 13.5819209 ], [ 19.6875, 13.2399455 ], [ 19.3359375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 13.5819209 ], [ 19.3359375, 13.9234039 ], [ 19.6875, 13.9234039 ], [ 19.6875, 13.5819209 ], [ 19.3359375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 13.9234039 ], [ 19.3359375, 14.26438309 ], [ 19.6875, 14.26438309 ], [ 19.6875, 13.9234039 ], [ 19.3359375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 14.26438309 ], [ 19.3359375, 14.60484716 ], [ 19.6875, 14.60484716 ], [ 19.6875, 14.26438309 ], [ 19.3359375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 14.60484716 ], [ 19.3359375, 14.94478488 ], [ 19.6875, 14.94478488 ], [ 19.6875, 14.60484716 ], [ 19.3359375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 14.94478488 ], [ 19.3359375, 15.28418511 ], [ 19.6875, 15.28418511 ], [ 19.6875, 14.94478488 ], [ 19.3359375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 15.28418511 ], [ 19.3359375, 15.62303683 ], [ 19.6875, 15.62303683 ], [ 19.6875, 15.28418511 ], [ 19.3359375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 15.62303683 ], [ 19.3359375, 15.96132908 ], [ 19.6875, 15.96132908 ], [ 19.6875, 15.62303683 ], [ 19.3359375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 15.96132908 ], [ 19.3359375, 16.29905101 ], [ 19.6875, 16.29905101 ], [ 19.6875, 15.96132908 ], [ 19.3359375, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 16.29905101 ], [ 19.3359375, 16.63619188 ], [ 19.6875, 16.63619188 ], [ 19.6875, 16.29905101 ], [ 19.3359375, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 16.63619188 ], [ 19.3359375, 16.97274102 ], [ 19.6875, 16.97274102 ], [ 19.6875, 16.63619188 ], [ 19.3359375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 16.97274102 ], [ 19.3359375, 17.30868789 ], [ 19.6875, 17.30868789 ], [ 19.6875, 16.97274102 ], [ 19.3359375, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 17.30868789 ], [ 19.3359375, 17.64402203 ], [ 19.6875, 17.64402203 ], [ 19.6875, 17.30868789 ], [ 19.3359375, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 12.55456353 ], [ 19.6875, 12.89748918 ], [ 20.0390625, 12.89748918 ], [ 20.0390625, 12.55456353 ], [ 19.6875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 12.89748918 ], [ 19.6875, 13.2399455 ], [ 20.0390625, 13.2399455 ], [ 20.0390625, 12.89748918 ], [ 19.6875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 13.2399455 ], [ 19.6875, 13.5819209 ], [ 20.0390625, 13.5819209 ], [ 20.0390625, 13.2399455 ], [ 19.6875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 13.5819209 ], [ 19.6875, 13.9234039 ], [ 20.0390625, 13.9234039 ], [ 20.0390625, 13.5819209 ], [ 19.6875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 13.9234039 ], [ 19.6875, 14.26438309 ], [ 20.0390625, 14.26438309 ], [ 20.0390625, 13.9234039 ], [ 19.6875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 14.26438309 ], [ 19.6875, 14.60484716 ], [ 20.0390625, 14.60484716 ], [ 20.0390625, 14.26438309 ], [ 19.6875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 14.60484716 ], [ 19.6875, 14.94478488 ], [ 20.0390625, 14.94478488 ], [ 20.0390625, 14.60484716 ], [ 19.6875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 14.94478488 ], [ 19.6875, 15.28418511 ], [ 20.0390625, 15.28418511 ], [ 20.0390625, 14.94478488 ], [ 19.6875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 15.28418511 ], [ 19.6875, 15.62303683 ], [ 20.0390625, 15.62303683 ], [ 20.0390625, 15.28418511 ], [ 19.6875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 15.62303683 ], [ 19.6875, 15.96132908 ], [ 20.0390625, 15.96132908 ], [ 20.0390625, 15.62303683 ], [ 19.6875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 15.96132908 ], [ 19.6875, 16.29905101 ], [ 20.0390625, 16.29905101 ], [ 20.0390625, 15.96132908 ], [ 19.6875, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 16.29905101 ], [ 19.6875, 16.63619188 ], [ 20.0390625, 16.63619188 ], [ 20.0390625, 16.29905101 ], [ 19.6875, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 16.63619188 ], [ 19.6875, 16.97274102 ], [ 20.0390625, 16.97274102 ], [ 20.0390625, 16.63619188 ], [ 19.6875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 16.97274102 ], [ 19.6875, 17.30868789 ], [ 20.0390625, 17.30868789 ], [ 20.0390625, 16.97274102 ], [ 19.6875, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 17.30868789 ], [ 19.6875, 17.64402203 ], [ 20.0390625, 17.64402203 ], [ 20.0390625, 17.30868789 ], [ 19.6875, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 12.55456353 ], [ 20.0390625, 12.89748918 ], [ 20.390625, 12.89748918 ], [ 20.390625, 12.55456353 ], [ 20.0390625, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 12.89748918 ], [ 20.0390625, 13.2399455 ], [ 20.390625, 13.2399455 ], [ 20.390625, 12.89748918 ], [ 20.0390625, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 13.2399455 ], [ 20.0390625, 13.5819209 ], [ 20.390625, 13.5819209 ], [ 20.390625, 13.2399455 ], [ 20.0390625, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 13.5819209 ], [ 20.0390625, 13.9234039 ], [ 20.390625, 13.9234039 ], [ 20.390625, 13.5819209 ], [ 20.0390625, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 13.9234039 ], [ 20.0390625, 14.26438309 ], [ 20.390625, 14.26438309 ], [ 20.390625, 13.9234039 ], [ 20.0390625, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 14.26438309 ], [ 20.0390625, 14.60484716 ], [ 20.390625, 14.60484716 ], [ 20.390625, 14.26438309 ], [ 20.0390625, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 14.60484716 ], [ 20.0390625, 14.94478488 ], [ 20.390625, 14.94478488 ], [ 20.390625, 14.60484716 ], [ 20.0390625, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 14.94478488 ], [ 20.0390625, 15.28418511 ], [ 20.390625, 15.28418511 ], [ 20.390625, 14.94478488 ], [ 20.0390625, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 15.28418511 ], [ 20.0390625, 15.62303683 ], [ 20.390625, 15.62303683 ], [ 20.390625, 15.28418511 ], [ 20.0390625, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 15.62303683 ], [ 20.0390625, 15.96132908 ], [ 20.390625, 15.96132908 ], [ 20.390625, 15.62303683 ], [ 20.0390625, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 15.96132908 ], [ 20.0390625, 16.29905101 ], [ 20.390625, 16.29905101 ], [ 20.390625, 15.96132908 ], [ 20.0390625, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 16.29905101 ], [ 20.0390625, 16.63619188 ], [ 20.390625, 16.63619188 ], [ 20.390625, 16.29905101 ], [ 20.0390625, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 16.63619188 ], [ 20.0390625, 16.97274102 ], [ 20.390625, 16.97274102 ], [ 20.390625, 16.63619188 ], [ 20.0390625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 16.97274102 ], [ 20.0390625, 17.30868789 ], [ 20.390625, 17.30868789 ], [ 20.390625, 16.97274102 ], [ 20.0390625, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 17.30868789 ], [ 20.0390625, 17.64402203 ], [ 20.390625, 17.64402203 ], [ 20.390625, 17.30868789 ], [ 20.0390625, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 12.55456353 ], [ 20.390625, 12.89748918 ], [ 20.7421875, 12.89748918 ], [ 20.7421875, 12.55456353 ], [ 20.390625, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 12.89748918 ], [ 20.390625, 13.2399455 ], [ 20.7421875, 13.2399455 ], [ 20.7421875, 12.89748918 ], [ 20.390625, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 13.2399455 ], [ 20.390625, 13.5819209 ], [ 20.7421875, 13.5819209 ], [ 20.7421875, 13.2399455 ], [ 20.390625, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 13.5819209 ], [ 20.390625, 13.9234039 ], [ 20.7421875, 13.9234039 ], [ 20.7421875, 13.5819209 ], [ 20.390625, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 13.9234039 ], [ 20.390625, 14.26438309 ], [ 20.7421875, 14.26438309 ], [ 20.7421875, 13.9234039 ], [ 20.390625, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 14.26438309 ], [ 20.390625, 14.60484716 ], [ 20.7421875, 14.60484716 ], [ 20.7421875, 14.26438309 ], [ 20.390625, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 14.60484716 ], [ 20.390625, 14.94478488 ], [ 20.7421875, 14.94478488 ], [ 20.7421875, 14.60484716 ], [ 20.390625, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 14.94478488 ], [ 20.390625, 15.28418511 ], [ 20.7421875, 15.28418511 ], [ 20.7421875, 14.94478488 ], [ 20.390625, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 15.28418511 ], [ 20.390625, 15.62303683 ], [ 20.7421875, 15.62303683 ], [ 20.7421875, 15.28418511 ], [ 20.390625, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 15.62303683 ], [ 20.390625, 15.96132908 ], [ 20.7421875, 15.96132908 ], [ 20.7421875, 15.62303683 ], [ 20.390625, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 15.96132908 ], [ 20.390625, 16.29905101 ], [ 20.7421875, 16.29905101 ], [ 20.7421875, 15.96132908 ], [ 20.390625, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 16.29905101 ], [ 20.390625, 16.63619188 ], [ 20.7421875, 16.63619188 ], [ 20.7421875, 16.29905101 ], [ 20.390625, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 16.63619188 ], [ 20.390625, 16.97274102 ], [ 20.7421875, 16.97274102 ], [ 20.7421875, 16.63619188 ], [ 20.390625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 16.97274102 ], [ 20.390625, 17.30868789 ], [ 20.7421875, 17.30868789 ], [ 20.7421875, 16.97274102 ], [ 20.390625, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 17.30868789 ], [ 20.390625, 17.64402203 ], [ 20.7421875, 17.64402203 ], [ 20.7421875, 17.30868789 ], [ 20.390625, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 12.55456353 ], [ 20.7421875, 12.89748918 ], [ 21.09375, 12.89748918 ], [ 21.09375, 12.55456353 ], [ 20.7421875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 12.89748918 ], [ 20.7421875, 13.2399455 ], [ 21.09375, 13.2399455 ], [ 21.09375, 12.89748918 ], [ 20.7421875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 13.2399455 ], [ 20.7421875, 13.5819209 ], [ 21.09375, 13.5819209 ], [ 21.09375, 13.2399455 ], [ 20.7421875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 13.5819209 ], [ 20.7421875, 13.9234039 ], [ 21.09375, 13.9234039 ], [ 21.09375, 13.5819209 ], [ 20.7421875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 13.9234039 ], [ 20.7421875, 14.26438309 ], [ 21.09375, 14.26438309 ], [ 21.09375, 13.9234039 ], [ 20.7421875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 14.26438309 ], [ 20.7421875, 14.60484716 ], [ 21.09375, 14.60484716 ], [ 21.09375, 14.26438309 ], [ 20.7421875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 14.60484716 ], [ 20.7421875, 14.94478488 ], [ 21.09375, 14.94478488 ], [ 21.09375, 14.60484716 ], [ 20.7421875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 14.94478488 ], [ 20.7421875, 15.28418511 ], [ 21.09375, 15.28418511 ], [ 21.09375, 14.94478488 ], [ 20.7421875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 15.28418511 ], [ 20.7421875, 15.62303683 ], [ 21.09375, 15.62303683 ], [ 21.09375, 15.28418511 ], [ 20.7421875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 15.62303683 ], [ 20.7421875, 15.96132908 ], [ 21.09375, 15.96132908 ], [ 21.09375, 15.62303683 ], [ 20.7421875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 15.96132908 ], [ 20.7421875, 16.29905101 ], [ 21.09375, 16.29905101 ], [ 21.09375, 15.96132908 ], [ 20.7421875, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 16.29905101 ], [ 20.7421875, 16.63619188 ], [ 21.09375, 16.63619188 ], [ 21.09375, 16.29905101 ], [ 20.7421875, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 16.63619188 ], [ 20.7421875, 16.97274102 ], [ 21.09375, 16.97274102 ], [ 21.09375, 16.63619188 ], [ 20.7421875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 16.97274102 ], [ 20.7421875, 17.30868789 ], [ 21.09375, 17.30868789 ], [ 21.09375, 16.97274102 ], [ 20.7421875, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 17.30868789 ], [ 20.7421875, 17.64402203 ], [ 21.09375, 17.64402203 ], [ 21.09375, 17.30868789 ], [ 20.7421875, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 12.55456353 ], [ 21.09375, 12.89748918 ], [ 21.4453125, 12.89748918 ], [ 21.4453125, 12.55456353 ], [ 21.09375, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 12.89748918 ], [ 21.09375, 13.2399455 ], [ 21.4453125, 13.2399455 ], [ 21.4453125, 12.89748918 ], [ 21.09375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 13.2399455 ], [ 21.09375, 13.5819209 ], [ 21.4453125, 13.5819209 ], [ 21.4453125, 13.2399455 ], [ 21.09375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 13.5819209 ], [ 21.09375, 13.9234039 ], [ 21.4453125, 13.9234039 ], [ 21.4453125, 13.5819209 ], [ 21.09375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 13.9234039 ], [ 21.09375, 14.26438309 ], [ 21.4453125, 14.26438309 ], [ 21.4453125, 13.9234039 ], [ 21.09375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 14.26438309 ], [ 21.09375, 14.60484716 ], [ 21.4453125, 14.60484716 ], [ 21.4453125, 14.26438309 ], [ 21.09375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 14.60484716 ], [ 21.09375, 14.94478488 ], [ 21.4453125, 14.94478488 ], [ 21.4453125, 14.60484716 ], [ 21.09375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 14.94478488 ], [ 21.09375, 15.28418511 ], [ 21.4453125, 15.28418511 ], [ 21.4453125, 14.94478488 ], [ 21.09375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 15.28418511 ], [ 21.09375, 15.62303683 ], [ 21.4453125, 15.62303683 ], [ 21.4453125, 15.28418511 ], [ 21.09375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 15.62303683 ], [ 21.09375, 15.96132908 ], [ 21.4453125, 15.96132908 ], [ 21.4453125, 15.62303683 ], [ 21.09375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 15.96132908 ], [ 21.09375, 16.29905101 ], [ 21.4453125, 16.29905101 ], [ 21.4453125, 15.96132908 ], [ 21.09375, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 16.29905101 ], [ 21.09375, 16.63619188 ], [ 21.4453125, 16.63619188 ], [ 21.4453125, 16.29905101 ], [ 21.09375, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 16.63619188 ], [ 21.09375, 16.97274102 ], [ 21.4453125, 16.97274102 ], [ 21.4453125, 16.63619188 ], [ 21.09375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 16.97274102 ], [ 21.09375, 17.30868789 ], [ 21.4453125, 17.30868789 ], [ 21.4453125, 16.97274102 ], [ 21.09375, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 17.30868789 ], [ 21.09375, 17.64402203 ], [ 21.4453125, 17.64402203 ], [ 21.4453125, 17.30868789 ], [ 21.09375, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 17.64402203 ], [ 21.09375, 17.9787331 ], [ 21.4453125, 17.9787331 ], [ 21.4453125, 17.64402203 ], [ 21.09375, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 17.9787331 ], [ 21.09375, 18.31281085 ], [ 21.4453125, 18.31281085 ], [ 21.4453125, 17.9787331 ], [ 21.09375, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 18.31281085 ], [ 21.09375, 18.64624514 ], [ 21.4453125, 18.64624514 ], [ 21.4453125, 18.31281085 ], [ 21.09375, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 18.64624514 ], [ 21.09375, 18.97902595 ], [ 21.4453125, 18.97902595 ], [ 21.4453125, 18.64624514 ], [ 21.09375, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 18.97902595 ], [ 21.09375, 19.31114336 ], [ 21.4453125, 19.31114336 ], [ 21.4453125, 18.97902595 ], [ 21.09375, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 19.31114336 ], [ 21.09375, 19.64258753 ], [ 21.4453125, 19.64258753 ], [ 21.4453125, 19.31114336 ], [ 21.09375, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 19.64258753 ], [ 21.09375, 19.97334879 ], [ 21.4453125, 19.97334879 ], [ 21.4453125, 19.64258753 ], [ 21.09375, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 19.97334879 ], [ 21.09375, 20.30341752 ], [ 21.4453125, 20.30341752 ], [ 21.4453125, 19.97334879 ], [ 21.09375, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 20.30341752 ], [ 21.09375, 20.63278425 ], [ 21.4453125, 20.63278425 ], [ 21.4453125, 20.30341752 ], [ 21.09375, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 20.63278425 ], [ 21.09375, 20.96143961 ], [ 21.4453125, 20.96143961 ], [ 21.4453125, 20.63278425 ], [ 21.09375, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 20.96143961 ], [ 21.09375, 21.28937436 ], [ 21.4453125, 21.28937436 ], [ 21.4453125, 20.96143961 ], [ 21.09375, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 21.28937436 ], [ 21.09375, 21.61657934 ], [ 21.4453125, 21.61657934 ], [ 21.4453125, 21.28937436 ], [ 21.09375, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 12.55456353 ], [ 21.4453125, 12.89748918 ], [ 21.796875, 12.89748918 ], [ 21.796875, 12.55456353 ], [ 21.4453125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 12.89748918 ], [ 21.4453125, 13.2399455 ], [ 21.796875, 13.2399455 ], [ 21.796875, 12.89748918 ], [ 21.4453125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 13.2399455 ], [ 21.4453125, 13.5819209 ], [ 21.796875, 13.5819209 ], [ 21.796875, 13.2399455 ], [ 21.4453125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 13.5819209 ], [ 21.4453125, 13.9234039 ], [ 21.796875, 13.9234039 ], [ 21.796875, 13.5819209 ], [ 21.4453125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 13.9234039 ], [ 21.4453125, 14.26438309 ], [ 21.796875, 14.26438309 ], [ 21.796875, 13.9234039 ], [ 21.4453125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 14.26438309 ], [ 21.4453125, 14.60484716 ], [ 21.796875, 14.60484716 ], [ 21.796875, 14.26438309 ], [ 21.4453125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 14.60484716 ], [ 21.4453125, 14.94478488 ], [ 21.796875, 14.94478488 ], [ 21.796875, 14.60484716 ], [ 21.4453125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 14.94478488 ], [ 21.4453125, 15.28418511 ], [ 21.796875, 15.28418511 ], [ 21.796875, 14.94478488 ], [ 21.4453125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 15.28418511 ], [ 21.4453125, 15.62303683 ], [ 21.796875, 15.62303683 ], [ 21.796875, 15.28418511 ], [ 21.4453125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 15.62303683 ], [ 21.4453125, 15.96132908 ], [ 21.796875, 15.96132908 ], [ 21.796875, 15.62303683 ], [ 21.4453125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 15.96132908 ], [ 21.4453125, 16.29905101 ], [ 21.796875, 16.29905101 ], [ 21.796875, 15.96132908 ], [ 21.4453125, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 16.29905101 ], [ 21.4453125, 16.63619188 ], [ 21.796875, 16.63619188 ], [ 21.796875, 16.29905101 ], [ 21.4453125, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 16.63619188 ], [ 21.4453125, 16.97274102 ], [ 21.796875, 16.97274102 ], [ 21.796875, 16.63619188 ], [ 21.4453125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 16.97274102 ], [ 21.4453125, 17.30868789 ], [ 21.796875, 17.30868789 ], [ 21.796875, 16.97274102 ], [ 21.4453125, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 17.30868789 ], [ 21.4453125, 17.64402203 ], [ 21.796875, 17.64402203 ], [ 21.796875, 17.30868789 ], [ 21.4453125, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 17.64402203 ], [ 21.4453125, 17.9787331 ], [ 21.796875, 17.9787331 ], [ 21.796875, 17.64402203 ], [ 21.4453125, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 17.9787331 ], [ 21.4453125, 18.31281085 ], [ 21.796875, 18.31281085 ], [ 21.796875, 17.9787331 ], [ 21.4453125, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 18.31281085 ], [ 21.4453125, 18.64624514 ], [ 21.796875, 18.64624514 ], [ 21.796875, 18.31281085 ], [ 21.4453125, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 18.64624514 ], [ 21.4453125, 18.97902595 ], [ 21.796875, 18.97902595 ], [ 21.796875, 18.64624514 ], [ 21.4453125, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 18.97902595 ], [ 21.4453125, 19.31114336 ], [ 21.796875, 19.31114336 ], [ 21.796875, 18.97902595 ], [ 21.4453125, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 19.31114336 ], [ 21.4453125, 19.64258753 ], [ 21.796875, 19.64258753 ], [ 21.796875, 19.31114336 ], [ 21.4453125, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 19.64258753 ], [ 21.4453125, 19.97334879 ], [ 21.796875, 19.97334879 ], [ 21.796875, 19.64258753 ], [ 21.4453125, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 19.97334879 ], [ 21.4453125, 20.30341752 ], [ 21.796875, 20.30341752 ], [ 21.796875, 19.97334879 ], [ 21.4453125, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 20.30341752 ], [ 21.4453125, 20.63278425 ], [ 21.796875, 20.63278425 ], [ 21.796875, 20.30341752 ], [ 21.4453125, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 20.63278425 ], [ 21.4453125, 20.96143961 ], [ 21.796875, 20.96143961 ], [ 21.796875, 20.63278425 ], [ 21.4453125, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 20.96143961 ], [ 21.4453125, 21.28937436 ], [ 21.796875, 21.28937436 ], [ 21.796875, 20.96143961 ], [ 21.4453125, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 21.28937436 ], [ 21.4453125, 21.61657934 ], [ 21.796875, 21.61657934 ], [ 21.796875, 21.28937436 ], [ 21.4453125, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 12.55456353 ], [ 21.796875, 12.89748918 ], [ 22.1484375, 12.89748918 ], [ 22.1484375, 12.55456353 ], [ 21.796875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 12.89748918 ], [ 21.796875, 13.2399455 ], [ 22.1484375, 13.2399455 ], [ 22.1484375, 12.89748918 ], [ 21.796875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 13.2399455 ], [ 21.796875, 13.5819209 ], [ 22.1484375, 13.5819209 ], [ 22.1484375, 13.2399455 ], [ 21.796875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 13.5819209 ], [ 21.796875, 13.9234039 ], [ 22.1484375, 13.9234039 ], [ 22.1484375, 13.5819209 ], [ 21.796875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 13.9234039 ], [ 21.796875, 14.26438309 ], [ 22.1484375, 14.26438309 ], [ 22.1484375, 13.9234039 ], [ 21.796875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 14.26438309 ], [ 21.796875, 14.60484716 ], [ 22.1484375, 14.60484716 ], [ 22.1484375, 14.26438309 ], [ 21.796875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 14.60484716 ], [ 21.796875, 14.94478488 ], [ 22.1484375, 14.94478488 ], [ 22.1484375, 14.60484716 ], [ 21.796875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 14.94478488 ], [ 21.796875, 15.28418511 ], [ 22.1484375, 15.28418511 ], [ 22.1484375, 14.94478488 ], [ 21.796875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 15.28418511 ], [ 21.796875, 15.62303683 ], [ 22.1484375, 15.62303683 ], [ 22.1484375, 15.28418511 ], [ 21.796875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 15.62303683 ], [ 21.796875, 15.96132908 ], [ 22.1484375, 15.96132908 ], [ 22.1484375, 15.62303683 ], [ 21.796875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 15.96132908 ], [ 21.796875, 16.29905101 ], [ 22.1484375, 16.29905101 ], [ 22.1484375, 15.96132908 ], [ 21.796875, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 16.29905101 ], [ 21.796875, 16.63619188 ], [ 22.1484375, 16.63619188 ], [ 22.1484375, 16.29905101 ], [ 21.796875, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 16.63619188 ], [ 21.796875, 16.97274102 ], [ 22.1484375, 16.97274102 ], [ 22.1484375, 16.63619188 ], [ 21.796875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 16.97274102 ], [ 21.796875, 17.30868789 ], [ 22.1484375, 17.30868789 ], [ 22.1484375, 16.97274102 ], [ 21.796875, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 17.30868789 ], [ 21.796875, 17.64402203 ], [ 22.1484375, 17.64402203 ], [ 22.1484375, 17.30868789 ], [ 21.796875, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 17.64402203 ], [ 21.796875, 17.9787331 ], [ 22.1484375, 17.9787331 ], [ 22.1484375, 17.64402203 ], [ 21.796875, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 17.9787331 ], [ 21.796875, 18.31281085 ], [ 22.1484375, 18.31281085 ], [ 22.1484375, 17.9787331 ], [ 21.796875, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 18.31281085 ], [ 21.796875, 18.64624514 ], [ 22.1484375, 18.64624514 ], [ 22.1484375, 18.31281085 ], [ 21.796875, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 18.64624514 ], [ 21.796875, 18.97902595 ], [ 22.1484375, 18.97902595 ], [ 22.1484375, 18.64624514 ], [ 21.796875, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 18.97902595 ], [ 21.796875, 19.31114336 ], [ 22.1484375, 19.31114336 ], [ 22.1484375, 18.97902595 ], [ 21.796875, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 19.31114336 ], [ 21.796875, 19.64258753 ], [ 22.1484375, 19.64258753 ], [ 22.1484375, 19.31114336 ], [ 21.796875, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 19.64258753 ], [ 21.796875, 19.97334879 ], [ 22.1484375, 19.97334879 ], [ 22.1484375, 19.64258753 ], [ 21.796875, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 19.97334879 ], [ 21.796875, 20.30341752 ], [ 22.1484375, 20.30341752 ], [ 22.1484375, 19.97334879 ], [ 21.796875, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 20.30341752 ], [ 21.796875, 20.63278425 ], [ 22.1484375, 20.63278425 ], [ 22.1484375, 20.30341752 ], [ 21.796875, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 20.63278425 ], [ 21.796875, 20.96143961 ], [ 22.1484375, 20.96143961 ], [ 22.1484375, 20.63278425 ], [ 21.796875, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 20.96143961 ], [ 21.796875, 21.28937436 ], [ 22.1484375, 21.28937436 ], [ 22.1484375, 20.96143961 ], [ 21.796875, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 21.28937436 ], [ 21.796875, 21.61657934 ], [ 22.1484375, 21.61657934 ], [ 22.1484375, 21.28937436 ], [ 21.796875, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 12.55456353 ], [ 22.1484375, 12.89748918 ], [ 22.5, 12.89748918 ], [ 22.5, 12.55456353 ], [ 22.1484375, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 12.89748918 ], [ 22.1484375, 13.2399455 ], [ 22.5, 13.2399455 ], [ 22.5, 12.89748918 ], [ 22.1484375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 13.2399455 ], [ 22.1484375, 13.5819209 ], [ 22.5, 13.5819209 ], [ 22.5, 13.2399455 ], [ 22.1484375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 13.5819209 ], [ 22.1484375, 13.9234039 ], [ 22.5, 13.9234039 ], [ 22.5, 13.5819209 ], [ 22.1484375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 13.9234039 ], [ 22.1484375, 14.26438309 ], [ 22.5, 14.26438309 ], [ 22.5, 13.9234039 ], [ 22.1484375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 14.26438309 ], [ 22.1484375, 14.60484716 ], [ 22.5, 14.60484716 ], [ 22.5, 14.26438309 ], [ 22.1484375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 14.60484716 ], [ 22.1484375, 14.94478488 ], [ 22.5, 14.94478488 ], [ 22.5, 14.60484716 ], [ 22.1484375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 14.94478488 ], [ 22.1484375, 15.28418511 ], [ 22.5, 15.28418511 ], [ 22.5, 14.94478488 ], [ 22.1484375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 15.28418511 ], [ 22.1484375, 15.62303683 ], [ 22.5, 15.62303683 ], [ 22.5, 15.28418511 ], [ 22.1484375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 15.62303683 ], [ 22.1484375, 15.96132908 ], [ 22.5, 15.96132908 ], [ 22.5, 15.62303683 ], [ 22.1484375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 15.96132908 ], [ 22.1484375, 16.29905101 ], [ 22.5, 16.29905101 ], [ 22.5, 15.96132908 ], [ 22.1484375, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 16.29905101 ], [ 22.1484375, 16.63619188 ], [ 22.5, 16.63619188 ], [ 22.5, 16.29905101 ], [ 22.1484375, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 16.63619188 ], [ 22.1484375, 16.97274102 ], [ 22.5, 16.97274102 ], [ 22.5, 16.63619188 ], [ 22.1484375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 16.97274102 ], [ 22.1484375, 17.30868789 ], [ 22.5, 17.30868789 ], [ 22.5, 16.97274102 ], [ 22.1484375, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 17.30868789 ], [ 22.1484375, 17.64402203 ], [ 22.5, 17.64402203 ], [ 22.5, 17.30868789 ], [ 22.1484375, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 17.64402203 ], [ 22.1484375, 17.9787331 ], [ 22.5, 17.9787331 ], [ 22.5, 17.64402203 ], [ 22.1484375, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 17.9787331 ], [ 22.1484375, 18.31281085 ], [ 22.5, 18.31281085 ], [ 22.5, 17.9787331 ], [ 22.1484375, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 18.31281085 ], [ 22.1484375, 18.64624514 ], [ 22.5, 18.64624514 ], [ 22.5, 18.31281085 ], [ 22.1484375, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 18.64624514 ], [ 22.1484375, 18.97902595 ], [ 22.5, 18.97902595 ], [ 22.5, 18.64624514 ], [ 22.1484375, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 18.97902595 ], [ 22.1484375, 19.31114336 ], [ 22.5, 19.31114336 ], [ 22.5, 18.97902595 ], [ 22.1484375, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 19.31114336 ], [ 22.1484375, 19.64258753 ], [ 22.5, 19.64258753 ], [ 22.5, 19.31114336 ], [ 22.1484375, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 19.64258753 ], [ 22.1484375, 19.97334879 ], [ 22.5, 19.97334879 ], [ 22.5, 19.64258753 ], [ 22.1484375, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 19.97334879 ], [ 22.1484375, 20.30341752 ], [ 22.5, 20.30341752 ], [ 22.5, 19.97334879 ], [ 22.1484375, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 20.30341752 ], [ 22.1484375, 20.63278425 ], [ 22.5, 20.63278425 ], [ 22.5, 20.30341752 ], [ 22.1484375, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 20.63278425 ], [ 22.1484375, 20.96143961 ], [ 22.5, 20.96143961 ], [ 22.5, 20.63278425 ], [ 22.1484375, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 20.96143961 ], [ 22.1484375, 21.28937436 ], [ 22.5, 21.28937436 ], [ 22.5, 20.96143961 ], [ 22.1484375, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 21.28937436 ], [ 22.1484375, 21.61657934 ], [ 22.5, 21.61657934 ], [ 22.5, 21.28937436 ], [ 22.1484375, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 12.55456353 ], [ 22.5, 12.89748918 ], [ 22.8515625, 12.89748918 ], [ 22.8515625, 12.55456353 ], [ 22.5, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 12.89748918 ], [ 22.5, 13.2399455 ], [ 22.8515625, 13.2399455 ], [ 22.8515625, 12.89748918 ], [ 22.5, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 13.2399455 ], [ 22.5, 13.5819209 ], [ 22.8515625, 13.5819209 ], [ 22.8515625, 13.2399455 ], [ 22.5, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 13.5819209 ], [ 22.5, 13.9234039 ], [ 22.8515625, 13.9234039 ], [ 22.8515625, 13.5819209 ], [ 22.5, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 13.9234039 ], [ 22.5, 14.26438309 ], [ 22.8515625, 14.26438309 ], [ 22.8515625, 13.9234039 ], [ 22.5, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 14.26438309 ], [ 22.5, 14.60484716 ], [ 22.8515625, 14.60484716 ], [ 22.8515625, 14.26438309 ], [ 22.5, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 14.60484716 ], [ 22.5, 14.94478488 ], [ 22.8515625, 14.94478488 ], [ 22.8515625, 14.60484716 ], [ 22.5, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 14.94478488 ], [ 22.5, 15.28418511 ], [ 22.8515625, 15.28418511 ], [ 22.8515625, 14.94478488 ], [ 22.5, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 15.28418511 ], [ 22.5, 15.62303683 ], [ 22.8515625, 15.62303683 ], [ 22.8515625, 15.28418511 ], [ 22.5, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 15.62303683 ], [ 22.5, 15.96132908 ], [ 22.8515625, 15.96132908 ], [ 22.8515625, 15.62303683 ], [ 22.5, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 15.96132908 ], [ 22.5, 16.29905101 ], [ 22.8515625, 16.29905101 ], [ 22.8515625, 15.96132908 ], [ 22.5, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.29905101 ], [ 22.5, 16.63619188 ], [ 22.8515625, 16.63619188 ], [ 22.8515625, 16.29905101 ], [ 22.5, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.63619188 ], [ 22.5, 16.97274102 ], [ 22.8515625, 16.97274102 ], [ 22.8515625, 16.63619188 ], [ 22.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.97274102 ], [ 22.5, 17.30868789 ], [ 22.8515625, 17.30868789 ], [ 22.8515625, 16.97274102 ], [ 22.5, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 17.30868789 ], [ 22.5, 17.64402203 ], [ 22.8515625, 17.64402203 ], [ 22.8515625, 17.30868789 ], [ 22.5, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 17.64402203 ], [ 22.5, 17.9787331 ], [ 22.8515625, 17.9787331 ], [ 22.8515625, 17.64402203 ], [ 22.5, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 17.9787331 ], [ 22.5, 18.31281085 ], [ 22.8515625, 18.31281085 ], [ 22.8515625, 17.9787331 ], [ 22.5, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 18.31281085 ], [ 22.5, 18.64624514 ], [ 22.8515625, 18.64624514 ], [ 22.8515625, 18.31281085 ], [ 22.5, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 18.64624514 ], [ 22.5, 18.97902595 ], [ 22.8515625, 18.97902595 ], [ 22.8515625, 18.64624514 ], [ 22.5, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 18.97902595 ], [ 22.5, 19.31114336 ], [ 22.8515625, 19.31114336 ], [ 22.8515625, 18.97902595 ], [ 22.5, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 19.31114336 ], [ 22.5, 19.64258753 ], [ 22.8515625, 19.64258753 ], [ 22.8515625, 19.31114336 ], [ 22.5, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 19.64258753 ], [ 22.5, 19.97334879 ], [ 22.8515625, 19.97334879 ], [ 22.8515625, 19.64258753 ], [ 22.5, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 19.97334879 ], [ 22.5, 20.30341752 ], [ 22.8515625, 20.30341752 ], [ 22.8515625, 19.97334879 ], [ 22.5, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 20.30341752 ], [ 22.5, 20.63278425 ], [ 22.8515625, 20.63278425 ], [ 22.8515625, 20.30341752 ], [ 22.5, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 20.63278425 ], [ 22.5, 20.96143961 ], [ 22.8515625, 20.96143961 ], [ 22.8515625, 20.63278425 ], [ 22.5, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 20.96143961 ], [ 22.5, 21.28937436 ], [ 22.8515625, 21.28937436 ], [ 22.8515625, 20.96143961 ], [ 22.5, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 21.28937436 ], [ 22.5, 21.61657934 ], [ 22.8515625, 21.61657934 ], [ 22.8515625, 21.28937436 ], [ 22.5, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 12.55456353 ], [ 22.8515625, 12.89748918 ], [ 23.203125, 12.89748918 ], [ 23.203125, 12.55456353 ], [ 22.8515625, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 12.89748918 ], [ 22.8515625, 13.2399455 ], [ 23.203125, 13.2399455 ], [ 23.203125, 12.89748918 ], [ 22.8515625, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 13.2399455 ], [ 22.8515625, 13.5819209 ], [ 23.203125, 13.5819209 ], [ 23.203125, 13.2399455 ], [ 22.8515625, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 13.5819209 ], [ 22.8515625, 13.9234039 ], [ 23.203125, 13.9234039 ], [ 23.203125, 13.5819209 ], [ 22.8515625, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 13.9234039 ], [ 22.8515625, 14.26438309 ], [ 23.203125, 14.26438309 ], [ 23.203125, 13.9234039 ], [ 22.8515625, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 14.26438309 ], [ 22.8515625, 14.60484716 ], [ 23.203125, 14.60484716 ], [ 23.203125, 14.26438309 ], [ 22.8515625, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 14.60484716 ], [ 22.8515625, 14.94478488 ], [ 23.203125, 14.94478488 ], [ 23.203125, 14.60484716 ], [ 22.8515625, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 14.94478488 ], [ 22.8515625, 15.28418511 ], [ 23.203125, 15.28418511 ], [ 23.203125, 14.94478488 ], [ 22.8515625, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 15.28418511 ], [ 22.8515625, 15.62303683 ], [ 23.203125, 15.62303683 ], [ 23.203125, 15.28418511 ], [ 22.8515625, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 15.62303683 ], [ 22.8515625, 15.96132908 ], [ 23.203125, 15.96132908 ], [ 23.203125, 15.62303683 ], [ 22.8515625, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 15.96132908 ], [ 22.8515625, 16.29905101 ], [ 23.203125, 16.29905101 ], [ 23.203125, 15.96132908 ], [ 22.8515625, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 16.29905101 ], [ 22.8515625, 16.63619188 ], [ 23.203125, 16.63619188 ], [ 23.203125, 16.29905101 ], [ 22.8515625, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 16.63619188 ], [ 22.8515625, 16.97274102 ], [ 23.203125, 16.97274102 ], [ 23.203125, 16.63619188 ], [ 22.8515625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 16.97274102 ], [ 22.8515625, 17.30868789 ], [ 23.203125, 17.30868789 ], [ 23.203125, 16.97274102 ], [ 22.8515625, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 17.30868789 ], [ 22.8515625, 17.64402203 ], [ 23.203125, 17.64402203 ], [ 23.203125, 17.30868789 ], [ 22.8515625, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 17.64402203 ], [ 22.8515625, 17.9787331 ], [ 23.203125, 17.9787331 ], [ 23.203125, 17.64402203 ], [ 22.8515625, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 17.9787331 ], [ 22.8515625, 18.31281085 ], [ 23.203125, 18.31281085 ], [ 23.203125, 17.9787331 ], [ 22.8515625, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 18.31281085 ], [ 22.8515625, 18.64624514 ], [ 23.203125, 18.64624514 ], [ 23.203125, 18.31281085 ], [ 22.8515625, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 18.64624514 ], [ 22.8515625, 18.97902595 ], [ 23.203125, 18.97902595 ], [ 23.203125, 18.64624514 ], [ 22.8515625, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 18.97902595 ], [ 22.8515625, 19.31114336 ], [ 23.203125, 19.31114336 ], [ 23.203125, 18.97902595 ], [ 22.8515625, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 19.31114336 ], [ 22.8515625, 19.64258753 ], [ 23.203125, 19.64258753 ], [ 23.203125, 19.31114336 ], [ 22.8515625, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 19.64258753 ], [ 22.8515625, 19.97334879 ], [ 23.203125, 19.97334879 ], [ 23.203125, 19.64258753 ], [ 22.8515625, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 19.97334879 ], [ 22.8515625, 20.30341752 ], [ 23.203125, 20.30341752 ], [ 23.203125, 19.97334879 ], [ 22.8515625, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 20.30341752 ], [ 22.8515625, 20.63278425 ], [ 23.203125, 20.63278425 ], [ 23.203125, 20.30341752 ], [ 22.8515625, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 20.63278425 ], [ 22.8515625, 20.96143961 ], [ 23.203125, 20.96143961 ], [ 23.203125, 20.63278425 ], [ 22.8515625, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 20.96143961 ], [ 22.8515625, 21.28937436 ], [ 23.203125, 21.28937436 ], [ 23.203125, 20.96143961 ], [ 22.8515625, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 21.28937436 ], [ 22.8515625, 21.61657934 ], [ 23.203125, 21.61657934 ], [ 23.203125, 21.28937436 ], [ 22.8515625, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 12.55456353 ], [ 23.203125, 12.89748918 ], [ 23.5546875, 12.89748918 ], [ 23.5546875, 12.55456353 ], [ 23.203125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 12.89748918 ], [ 23.203125, 13.2399455 ], [ 23.5546875, 13.2399455 ], [ 23.5546875, 12.89748918 ], [ 23.203125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 13.2399455 ], [ 23.203125, 13.5819209 ], [ 23.5546875, 13.5819209 ], [ 23.5546875, 13.2399455 ], [ 23.203125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 13.5819209 ], [ 23.203125, 13.9234039 ], [ 23.5546875, 13.9234039 ], [ 23.5546875, 13.5819209 ], [ 23.203125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 13.9234039 ], [ 23.203125, 14.26438309 ], [ 23.5546875, 14.26438309 ], [ 23.5546875, 13.9234039 ], [ 23.203125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 14.26438309 ], [ 23.203125, 14.60484716 ], [ 23.5546875, 14.60484716 ], [ 23.5546875, 14.26438309 ], [ 23.203125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 14.60484716 ], [ 23.203125, 14.94478488 ], [ 23.5546875, 14.94478488 ], [ 23.5546875, 14.60484716 ], [ 23.203125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 14.94478488 ], [ 23.203125, 15.28418511 ], [ 23.5546875, 15.28418511 ], [ 23.5546875, 14.94478488 ], [ 23.203125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 15.28418511 ], [ 23.203125, 15.62303683 ], [ 23.5546875, 15.62303683 ], [ 23.5546875, 15.28418511 ], [ 23.203125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 15.62303683 ], [ 23.203125, 15.96132908 ], [ 23.5546875, 15.96132908 ], [ 23.5546875, 15.62303683 ], [ 23.203125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 15.96132908 ], [ 23.203125, 16.29905101 ], [ 23.5546875, 16.29905101 ], [ 23.5546875, 15.96132908 ], [ 23.203125, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 16.29905101 ], [ 23.203125, 16.63619188 ], [ 23.5546875, 16.63619188 ], [ 23.5546875, 16.29905101 ], [ 23.203125, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 16.63619188 ], [ 23.203125, 16.97274102 ], [ 23.5546875, 16.97274102 ], [ 23.5546875, 16.63619188 ], [ 23.203125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 16.97274102 ], [ 23.203125, 17.30868789 ], [ 23.5546875, 17.30868789 ], [ 23.5546875, 16.97274102 ], [ 23.203125, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 17.30868789 ], [ 23.203125, 17.64402203 ], [ 23.5546875, 17.64402203 ], [ 23.5546875, 17.30868789 ], [ 23.203125, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 17.64402203 ], [ 23.203125, 17.9787331 ], [ 23.5546875, 17.9787331 ], [ 23.5546875, 17.64402203 ], [ 23.203125, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 17.9787331 ], [ 23.203125, 18.31281085 ], [ 23.5546875, 18.31281085 ], [ 23.5546875, 17.9787331 ], [ 23.203125, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 18.31281085 ], [ 23.203125, 18.64624514 ], [ 23.5546875, 18.64624514 ], [ 23.5546875, 18.31281085 ], [ 23.203125, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 18.64624514 ], [ 23.203125, 18.97902595 ], [ 23.5546875, 18.97902595 ], [ 23.5546875, 18.64624514 ], [ 23.203125, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 18.97902595 ], [ 23.203125, 19.31114336 ], [ 23.5546875, 19.31114336 ], [ 23.5546875, 18.97902595 ], [ 23.203125, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 19.31114336 ], [ 23.203125, 19.64258753 ], [ 23.5546875, 19.64258753 ], [ 23.5546875, 19.31114336 ], [ 23.203125, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 19.64258753 ], [ 23.203125, 19.97334879 ], [ 23.5546875, 19.97334879 ], [ 23.5546875, 19.64258753 ], [ 23.203125, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 19.97334879 ], [ 23.203125, 20.30341752 ], [ 23.5546875, 20.30341752 ], [ 23.5546875, 19.97334879 ], [ 23.203125, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 20.30341752 ], [ 23.203125, 20.63278425 ], [ 23.5546875, 20.63278425 ], [ 23.5546875, 20.30341752 ], [ 23.203125, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 20.63278425 ], [ 23.203125, 20.96143961 ], [ 23.5546875, 20.96143961 ], [ 23.5546875, 20.63278425 ], [ 23.203125, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 20.96143961 ], [ 23.203125, 21.28937436 ], [ 23.5546875, 21.28937436 ], [ 23.5546875, 20.96143961 ], [ 23.203125, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 21.28937436 ], [ 23.203125, 21.61657934 ], [ 23.5546875, 21.61657934 ], [ 23.5546875, 21.28937436 ], [ 23.203125, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 12.55456353 ], [ 23.5546875, 12.89748918 ], [ 23.90625, 12.89748918 ], [ 23.90625, 12.55456353 ], [ 23.5546875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 12.89748918 ], [ 23.5546875, 13.2399455 ], [ 23.90625, 13.2399455 ], [ 23.90625, 12.89748918 ], [ 23.5546875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 13.2399455 ], [ 23.5546875, 13.5819209 ], [ 23.90625, 13.5819209 ], [ 23.90625, 13.2399455 ], [ 23.5546875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 13.5819209 ], [ 23.5546875, 13.9234039 ], [ 23.90625, 13.9234039 ], [ 23.90625, 13.5819209 ], [ 23.5546875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 13.9234039 ], [ 23.5546875, 14.26438309 ], [ 23.90625, 14.26438309 ], [ 23.90625, 13.9234039 ], [ 23.5546875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 14.26438309 ], [ 23.5546875, 14.60484716 ], [ 23.90625, 14.60484716 ], [ 23.90625, 14.26438309 ], [ 23.5546875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 14.60484716 ], [ 23.5546875, 14.94478488 ], [ 23.90625, 14.94478488 ], [ 23.90625, 14.60484716 ], [ 23.5546875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 14.94478488 ], [ 23.5546875, 15.28418511 ], [ 23.90625, 15.28418511 ], [ 23.90625, 14.94478488 ], [ 23.5546875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 15.28418511 ], [ 23.5546875, 15.62303683 ], [ 23.90625, 15.62303683 ], [ 23.90625, 15.28418511 ], [ 23.5546875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 15.62303683 ], [ 23.5546875, 15.96132908 ], [ 23.90625, 15.96132908 ], [ 23.90625, 15.62303683 ], [ 23.5546875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 15.96132908 ], [ 23.5546875, 16.29905101 ], [ 23.90625, 16.29905101 ], [ 23.90625, 15.96132908 ], [ 23.5546875, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 16.29905101 ], [ 23.5546875, 16.63619188 ], [ 23.90625, 16.63619188 ], [ 23.90625, 16.29905101 ], [ 23.5546875, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 16.63619188 ], [ 23.5546875, 16.97274102 ], [ 23.90625, 16.97274102 ], [ 23.90625, 16.63619188 ], [ 23.5546875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 16.97274102 ], [ 23.5546875, 17.30868789 ], [ 23.90625, 17.30868789 ], [ 23.90625, 16.97274102 ], [ 23.5546875, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 17.30868789 ], [ 23.5546875, 17.64402203 ], [ 23.90625, 17.64402203 ], [ 23.90625, 17.30868789 ], [ 23.5546875, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 17.64402203 ], [ 23.5546875, 17.9787331 ], [ 23.90625, 17.9787331 ], [ 23.90625, 17.64402203 ], [ 23.5546875, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 17.9787331 ], [ 23.5546875, 18.31281085 ], [ 23.90625, 18.31281085 ], [ 23.90625, 17.9787331 ], [ 23.5546875, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 18.31281085 ], [ 23.5546875, 18.64624514 ], [ 23.90625, 18.64624514 ], [ 23.90625, 18.31281085 ], [ 23.5546875, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 18.64624514 ], [ 23.5546875, 18.97902595 ], [ 23.90625, 18.97902595 ], [ 23.90625, 18.64624514 ], [ 23.5546875, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 18.97902595 ], [ 23.5546875, 19.31114336 ], [ 23.90625, 19.31114336 ], [ 23.90625, 18.97902595 ], [ 23.5546875, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 19.31114336 ], [ 23.5546875, 19.64258753 ], [ 23.90625, 19.64258753 ], [ 23.90625, 19.31114336 ], [ 23.5546875, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 19.64258753 ], [ 23.5546875, 19.97334879 ], [ 23.90625, 19.97334879 ], [ 23.90625, 19.64258753 ], [ 23.5546875, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 19.97334879 ], [ 23.5546875, 20.30341752 ], [ 23.90625, 20.30341752 ], [ 23.90625, 19.97334879 ], [ 23.5546875, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 20.30341752 ], [ 23.5546875, 20.63278425 ], [ 23.90625, 20.63278425 ], [ 23.90625, 20.30341752 ], [ 23.5546875, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 20.63278425 ], [ 23.5546875, 20.96143961 ], [ 23.90625, 20.96143961 ], [ 23.90625, 20.63278425 ], [ 23.5546875, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 20.96143961 ], [ 23.5546875, 21.28937436 ], [ 23.90625, 21.28937436 ], [ 23.90625, 20.96143961 ], [ 23.5546875, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 21.28937436 ], [ 23.5546875, 21.61657934 ], [ 23.90625, 21.61657934 ], [ 23.90625, 21.28937436 ], [ 23.5546875, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 12.55456353 ], [ 23.90625, 12.89748918 ], [ 24.2578125, 12.89748918 ], [ 24.2578125, 12.55456353 ], [ 23.90625, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 12.89748918 ], [ 23.90625, 13.2399455 ], [ 24.2578125, 13.2399455 ], [ 24.2578125, 12.89748918 ], [ 23.90625, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 13.2399455 ], [ 23.90625, 13.5819209 ], [ 24.2578125, 13.5819209 ], [ 24.2578125, 13.2399455 ], [ 23.90625, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 13.5819209 ], [ 23.90625, 13.9234039 ], [ 24.2578125, 13.9234039 ], [ 24.2578125, 13.5819209 ], [ 23.90625, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 13.9234039 ], [ 23.90625, 14.26438309 ], [ 24.2578125, 14.26438309 ], [ 24.2578125, 13.9234039 ], [ 23.90625, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 14.26438309 ], [ 23.90625, 14.60484716 ], [ 24.2578125, 14.60484716 ], [ 24.2578125, 14.26438309 ], [ 23.90625, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 14.60484716 ], [ 23.90625, 14.94478488 ], [ 24.2578125, 14.94478488 ], [ 24.2578125, 14.60484716 ], [ 23.90625, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 14.94478488 ], [ 23.90625, 15.28418511 ], [ 24.2578125, 15.28418511 ], [ 24.2578125, 14.94478488 ], [ 23.90625, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 15.28418511 ], [ 23.90625, 15.62303683 ], [ 24.2578125, 15.62303683 ], [ 24.2578125, 15.28418511 ], [ 23.90625, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 15.62303683 ], [ 23.90625, 15.96132908 ], [ 24.2578125, 15.96132908 ], [ 24.2578125, 15.62303683 ], [ 23.90625, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 15.96132908 ], [ 23.90625, 16.29905101 ], [ 24.2578125, 16.29905101 ], [ 24.2578125, 15.96132908 ], [ 23.90625, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 16.29905101 ], [ 23.90625, 16.63619188 ], [ 24.2578125, 16.63619188 ], [ 24.2578125, 16.29905101 ], [ 23.90625, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 16.63619188 ], [ 23.90625, 16.97274102 ], [ 24.2578125, 16.97274102 ], [ 24.2578125, 16.63619188 ], [ 23.90625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 16.97274102 ], [ 23.90625, 17.30868789 ], [ 24.2578125, 17.30868789 ], [ 24.2578125, 16.97274102 ], [ 23.90625, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 17.30868789 ], [ 23.90625, 17.64402203 ], [ 24.2578125, 17.64402203 ], [ 24.2578125, 17.30868789 ], [ 23.90625, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 17.64402203 ], [ 23.90625, 17.9787331 ], [ 24.2578125, 17.9787331 ], [ 24.2578125, 17.64402203 ], [ 23.90625, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 17.9787331 ], [ 23.90625, 18.31281085 ], [ 24.2578125, 18.31281085 ], [ 24.2578125, 17.9787331 ], [ 23.90625, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 18.31281085 ], [ 23.90625, 18.64624514 ], [ 24.2578125, 18.64624514 ], [ 24.2578125, 18.31281085 ], [ 23.90625, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 18.64624514 ], [ 23.90625, 18.97902595 ], [ 24.2578125, 18.97902595 ], [ 24.2578125, 18.64624514 ], [ 23.90625, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 18.97902595 ], [ 23.90625, 19.31114336 ], [ 24.2578125, 19.31114336 ], [ 24.2578125, 18.97902595 ], [ 23.90625, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 19.31114336 ], [ 23.90625, 19.64258753 ], [ 24.2578125, 19.64258753 ], [ 24.2578125, 19.31114336 ], [ 23.90625, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 19.64258753 ], [ 23.90625, 19.97334879 ], [ 24.2578125, 19.97334879 ], [ 24.2578125, 19.64258753 ], [ 23.90625, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 19.97334879 ], [ 23.90625, 20.30341752 ], [ 24.2578125, 20.30341752 ], [ 24.2578125, 19.97334879 ], [ 23.90625, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 20.30341752 ], [ 23.90625, 20.63278425 ], [ 24.2578125, 20.63278425 ], [ 24.2578125, 20.30341752 ], [ 23.90625, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 20.63278425 ], [ 23.90625, 20.96143961 ], [ 24.2578125, 20.96143961 ], [ 24.2578125, 20.63278425 ], [ 23.90625, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 20.96143961 ], [ 23.90625, 21.28937436 ], [ 24.2578125, 21.28937436 ], [ 24.2578125, 20.96143961 ], [ 23.90625, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 21.28937436 ], [ 23.90625, 21.61657934 ], [ 24.2578125, 21.61657934 ], [ 24.2578125, 21.28937436 ], [ 23.90625, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 12.55456353 ], [ 24.2578125, 12.89748918 ], [ 24.609375, 12.89748918 ], [ 24.609375, 12.55456353 ], [ 24.2578125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 12.89748918 ], [ 24.2578125, 13.2399455 ], [ 24.609375, 13.2399455 ], [ 24.609375, 12.89748918 ], [ 24.2578125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 13.2399455 ], [ 24.2578125, 13.5819209 ], [ 24.609375, 13.5819209 ], [ 24.609375, 13.2399455 ], [ 24.2578125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 13.5819209 ], [ 24.2578125, 13.9234039 ], [ 24.609375, 13.9234039 ], [ 24.609375, 13.5819209 ], [ 24.2578125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 13.9234039 ], [ 24.2578125, 14.26438309 ], [ 24.609375, 14.26438309 ], [ 24.609375, 13.9234039 ], [ 24.2578125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 14.26438309 ], [ 24.2578125, 14.60484716 ], [ 24.609375, 14.60484716 ], [ 24.609375, 14.26438309 ], [ 24.2578125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 14.60484716 ], [ 24.2578125, 14.94478488 ], [ 24.609375, 14.94478488 ], [ 24.609375, 14.60484716 ], [ 24.2578125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 14.94478488 ], [ 24.2578125, 15.28418511 ], [ 24.609375, 15.28418511 ], [ 24.609375, 14.94478488 ], [ 24.2578125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 15.28418511 ], [ 24.2578125, 15.62303683 ], [ 24.609375, 15.62303683 ], [ 24.609375, 15.28418511 ], [ 24.2578125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 15.62303683 ], [ 24.2578125, 15.96132908 ], [ 24.609375, 15.96132908 ], [ 24.609375, 15.62303683 ], [ 24.2578125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 15.96132908 ], [ 24.2578125, 16.29905101 ], [ 24.609375, 16.29905101 ], [ 24.609375, 15.96132908 ], [ 24.2578125, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 16.29905101 ], [ 24.2578125, 16.63619188 ], [ 24.609375, 16.63619188 ], [ 24.609375, 16.29905101 ], [ 24.2578125, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 16.63619188 ], [ 24.2578125, 16.97274102 ], [ 24.609375, 16.97274102 ], [ 24.609375, 16.63619188 ], [ 24.2578125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 16.97274102 ], [ 24.2578125, 17.30868789 ], [ 24.609375, 17.30868789 ], [ 24.609375, 16.97274102 ], [ 24.2578125, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 17.30868789 ], [ 24.2578125, 17.64402203 ], [ 24.609375, 17.64402203 ], [ 24.609375, 17.30868789 ], [ 24.2578125, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 17.64402203 ], [ 24.2578125, 17.9787331 ], [ 24.609375, 17.9787331 ], [ 24.609375, 17.64402203 ], [ 24.2578125, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 17.9787331 ], [ 24.2578125, 18.31281085 ], [ 24.609375, 18.31281085 ], [ 24.609375, 17.9787331 ], [ 24.2578125, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 18.31281085 ], [ 24.2578125, 18.64624514 ], [ 24.609375, 18.64624514 ], [ 24.609375, 18.31281085 ], [ 24.2578125, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 18.64624514 ], [ 24.2578125, 18.97902595 ], [ 24.609375, 18.97902595 ], [ 24.609375, 18.64624514 ], [ 24.2578125, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 18.97902595 ], [ 24.2578125, 19.31114336 ], [ 24.609375, 19.31114336 ], [ 24.609375, 18.97902595 ], [ 24.2578125, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 19.31114336 ], [ 24.2578125, 19.64258753 ], [ 24.609375, 19.64258753 ], [ 24.609375, 19.31114336 ], [ 24.2578125, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 19.64258753 ], [ 24.2578125, 19.97334879 ], [ 24.609375, 19.97334879 ], [ 24.609375, 19.64258753 ], [ 24.2578125, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 19.97334879 ], [ 24.2578125, 20.30341752 ], [ 24.609375, 20.30341752 ], [ 24.609375, 19.97334879 ], [ 24.2578125, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 20.30341752 ], [ 24.2578125, 20.63278425 ], [ 24.609375, 20.63278425 ], [ 24.609375, 20.30341752 ], [ 24.2578125, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 20.63278425 ], [ 24.2578125, 20.96143961 ], [ 24.609375, 20.96143961 ], [ 24.609375, 20.63278425 ], [ 24.2578125, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 20.96143961 ], [ 24.2578125, 21.28937436 ], [ 24.609375, 21.28937436 ], [ 24.609375, 20.96143961 ], [ 24.2578125, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 21.28937436 ], [ 24.2578125, 21.61657934 ], [ 24.609375, 21.61657934 ], [ 24.609375, 21.28937436 ], [ 24.2578125, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 12.55456353 ], [ 24.609375, 12.89748918 ], [ 24.9609375, 12.89748918 ], [ 24.9609375, 12.55456353 ], [ 24.609375, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 12.89748918 ], [ 24.609375, 13.2399455 ], [ 24.9609375, 13.2399455 ], [ 24.9609375, 12.89748918 ], [ 24.609375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 13.2399455 ], [ 24.609375, 13.5819209 ], [ 24.9609375, 13.5819209 ], [ 24.9609375, 13.2399455 ], [ 24.609375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 13.5819209 ], [ 24.609375, 13.9234039 ], [ 24.9609375, 13.9234039 ], [ 24.9609375, 13.5819209 ], [ 24.609375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 13.9234039 ], [ 24.609375, 14.26438309 ], [ 24.9609375, 14.26438309 ], [ 24.9609375, 13.9234039 ], [ 24.609375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 14.26438309 ], [ 24.609375, 14.60484716 ], [ 24.9609375, 14.60484716 ], [ 24.9609375, 14.26438309 ], [ 24.609375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 14.60484716 ], [ 24.609375, 14.94478488 ], [ 24.9609375, 14.94478488 ], [ 24.9609375, 14.60484716 ], [ 24.609375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 14.94478488 ], [ 24.609375, 15.28418511 ], [ 24.9609375, 15.28418511 ], [ 24.9609375, 14.94478488 ], [ 24.609375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 15.28418511 ], [ 24.609375, 15.62303683 ], [ 24.9609375, 15.62303683 ], [ 24.9609375, 15.28418511 ], [ 24.609375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 15.62303683 ], [ 24.609375, 15.96132908 ], [ 24.9609375, 15.96132908 ], [ 24.9609375, 15.62303683 ], [ 24.609375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 15.96132908 ], [ 24.609375, 16.29905101 ], [ 24.9609375, 16.29905101 ], [ 24.9609375, 15.96132908 ], [ 24.609375, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 16.29905101 ], [ 24.609375, 16.63619188 ], [ 24.9609375, 16.63619188 ], [ 24.9609375, 16.29905101 ], [ 24.609375, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 16.63619188 ], [ 24.609375, 16.97274102 ], [ 24.9609375, 16.97274102 ], [ 24.9609375, 16.63619188 ], [ 24.609375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 16.97274102 ], [ 24.609375, 17.30868789 ], [ 24.9609375, 17.30868789 ], [ 24.9609375, 16.97274102 ], [ 24.609375, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 17.30868789 ], [ 24.609375, 17.64402203 ], [ 24.9609375, 17.64402203 ], [ 24.9609375, 17.30868789 ], [ 24.609375, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 17.64402203 ], [ 24.609375, 17.9787331 ], [ 24.9609375, 17.9787331 ], [ 24.9609375, 17.64402203 ], [ 24.609375, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 17.9787331 ], [ 24.609375, 18.31281085 ], [ 24.9609375, 18.31281085 ], [ 24.9609375, 17.9787331 ], [ 24.609375, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 18.31281085 ], [ 24.609375, 18.64624514 ], [ 24.9609375, 18.64624514 ], [ 24.9609375, 18.31281085 ], [ 24.609375, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 18.64624514 ], [ 24.609375, 18.97902595 ], [ 24.9609375, 18.97902595 ], [ 24.9609375, 18.64624514 ], [ 24.609375, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 18.97902595 ], [ 24.609375, 19.31114336 ], [ 24.9609375, 19.31114336 ], [ 24.9609375, 18.97902595 ], [ 24.609375, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 19.31114336 ], [ 24.609375, 19.64258753 ], [ 24.9609375, 19.64258753 ], [ 24.9609375, 19.31114336 ], [ 24.609375, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 19.64258753 ], [ 24.609375, 19.97334879 ], [ 24.9609375, 19.97334879 ], [ 24.9609375, 19.64258753 ], [ 24.609375, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 19.97334879 ], [ 24.609375, 20.30341752 ], [ 24.9609375, 20.30341752 ], [ 24.9609375, 19.97334879 ], [ 24.609375, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 20.30341752 ], [ 24.609375, 20.63278425 ], [ 24.9609375, 20.63278425 ], [ 24.9609375, 20.30341752 ], [ 24.609375, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 20.63278425 ], [ 24.609375, 20.96143961 ], [ 24.9609375, 20.96143961 ], [ 24.9609375, 20.63278425 ], [ 24.609375, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 20.96143961 ], [ 24.609375, 21.28937436 ], [ 24.9609375, 21.28937436 ], [ 24.9609375, 20.96143961 ], [ 24.609375, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 21.28937436 ], [ 24.609375, 21.61657934 ], [ 24.9609375, 21.61657934 ], [ 24.9609375, 21.28937436 ], [ 24.609375, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 12.55456353 ], [ 24.9609375, 12.89748918 ], [ 25.3125, 12.89748918 ], [ 25.3125, 12.55456353 ], [ 24.9609375, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 12.89748918 ], [ 24.9609375, 13.2399455 ], [ 25.3125, 13.2399455 ], [ 25.3125, 12.89748918 ], [ 24.9609375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 13.2399455 ], [ 24.9609375, 13.5819209 ], [ 25.3125, 13.5819209 ], [ 25.3125, 13.2399455 ], [ 24.9609375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 13.5819209 ], [ 24.9609375, 13.9234039 ], [ 25.3125, 13.9234039 ], [ 25.3125, 13.5819209 ], [ 24.9609375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 13.9234039 ], [ 24.9609375, 14.26438309 ], [ 25.3125, 14.26438309 ], [ 25.3125, 13.9234039 ], [ 24.9609375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 14.26438309 ], [ 24.9609375, 14.60484716 ], [ 25.3125, 14.60484716 ], [ 25.3125, 14.26438309 ], [ 24.9609375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 14.60484716 ], [ 24.9609375, 14.94478488 ], [ 25.3125, 14.94478488 ], [ 25.3125, 14.60484716 ], [ 24.9609375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 14.94478488 ], [ 24.9609375, 15.28418511 ], [ 25.3125, 15.28418511 ], [ 25.3125, 14.94478488 ], [ 24.9609375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 15.28418511 ], [ 24.9609375, 15.62303683 ], [ 25.3125, 15.62303683 ], [ 25.3125, 15.28418511 ], [ 24.9609375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 15.62303683 ], [ 24.9609375, 15.96132908 ], [ 25.3125, 15.96132908 ], [ 25.3125, 15.62303683 ], [ 24.9609375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 15.96132908 ], [ 24.9609375, 16.29905101 ], [ 25.3125, 16.29905101 ], [ 25.3125, 15.96132908 ], [ 24.9609375, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 16.29905101 ], [ 24.9609375, 16.63619188 ], [ 25.3125, 16.63619188 ], [ 25.3125, 16.29905101 ], [ 24.9609375, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 16.63619188 ], [ 24.9609375, 16.97274102 ], [ 25.3125, 16.97274102 ], [ 25.3125, 16.63619188 ], [ 24.9609375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 16.97274102 ], [ 24.9609375, 17.30868789 ], [ 25.3125, 17.30868789 ], [ 25.3125, 16.97274102 ], [ 24.9609375, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 17.30868789 ], [ 24.9609375, 17.64402203 ], [ 25.3125, 17.64402203 ], [ 25.3125, 17.30868789 ], [ 24.9609375, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 17.64402203 ], [ 24.9609375, 17.9787331 ], [ 25.3125, 17.9787331 ], [ 25.3125, 17.64402203 ], [ 24.9609375, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 17.9787331 ], [ 24.9609375, 18.31281085 ], [ 25.3125, 18.31281085 ], [ 25.3125, 17.9787331 ], [ 24.9609375, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 18.31281085 ], [ 24.9609375, 18.64624514 ], [ 25.3125, 18.64624514 ], [ 25.3125, 18.31281085 ], [ 24.9609375, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 18.64624514 ], [ 24.9609375, 18.97902595 ], [ 25.3125, 18.97902595 ], [ 25.3125, 18.64624514 ], [ 24.9609375, 18.64624514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 18.97902595 ], [ 24.9609375, 19.31114336 ], [ 25.3125, 19.31114336 ], [ 25.3125, 18.97902595 ], [ 24.9609375, 18.97902595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 19.31114336 ], [ 24.9609375, 19.64258753 ], [ 25.3125, 19.64258753 ], [ 25.3125, 19.31114336 ], [ 24.9609375, 19.31114336 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 19.64258753 ], [ 24.9609375, 19.97334879 ], [ 25.3125, 19.97334879 ], [ 25.3125, 19.64258753 ], [ 24.9609375, 19.64258753 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 19.97334879 ], [ 24.9609375, 20.30341752 ], [ 25.3125, 20.30341752 ], [ 25.3125, 19.97334879 ], [ 24.9609375, 19.97334879 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 20.30341752 ], [ 24.9609375, 20.63278425 ], [ 25.3125, 20.63278425 ], [ 25.3125, 20.30341752 ], [ 24.9609375, 20.30341752 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 20.63278425 ], [ 24.9609375, 20.96143961 ], [ 25.3125, 20.96143961 ], [ 25.3125, 20.63278425 ], [ 24.9609375, 20.63278425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 20.96143961 ], [ 24.9609375, 21.28937436 ], [ 25.3125, 21.28937436 ], [ 25.3125, 20.96143961 ], [ 24.9609375, 20.96143961 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 21.28937436 ], [ 24.9609375, 21.61657934 ], [ 25.3125, 21.61657934 ], [ 25.3125, 21.28937436 ], [ 24.9609375, 21.28937436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.98291016, 21.39170473 ], [ 21.15966797, 21.41216223 ], [ 21.15966797, 17.60213912 ], [ 17.79785156, 17.60213912 ], [ 17.79785156, 15.15697371 ], [ 15.31494141, 15.15697371 ], [ 15.31494141, 12.5974545 ], [ 24.98291016, 12.5974545 ], [ 24.98291016, 21.39170473 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/road.geojson ================================================ { "type": "LineString", "coordinates": [ [ 66.95291519165039, 39.66207259792365 ], [ 66.95137023925781, 39.658240178117005 ], [ 66.95102691650389, 39.653614560848446 ], [ 66.95308685302734, 39.64958341339568 ], [ 66.95669174194336, 39.64594857073592 ] ] } ================================================ FILE: test/fixtures/russia.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ 28.30078125, 56.36525013685606 ], [ 30.05859375, 55.7765730186677 ], [ 32.34375, 53.5403073915002 ], [ 30.761718749999996, 53.12040528310657 ], [ 31.113281249999996, 52.16045455774706 ], [ 34.80468749999999, 52.16045455774706 ], [ 39.19921875, 49.83798245308484 ], [ 40.60546875, 49.83798245308484 ], [ 38.3203125, 47.98992166741417 ], [ 35.68359375, 43.58039085560786 ], [ 40.078125, 43.83452678223682 ], [ 43.59375, 43.83452678223682 ], [ 44.6484375, 42.553080288955826 ], [ 48.33984375, 41.11246878918086 ], [ 46.93359375, 44.96479793033104 ], [ 48.69140625, 46.437856895024204 ], [ 48.8671875, 47.754097979680026 ], [ 46.93359375, 50.17689812200107 ], [ 50.625, 51.39920565355378 ], [ 52.734375, 51.39920565355378 ], [ 55.01953125, 50.62507306341435 ], [ 59.0625, 50.958426723359935 ], [ 61.69921875, 50.958426723359935 ], [ 61.17187499999999, 51.6180165487737 ], [ 59.58984374999999, 52.16045455774706 ], [ 61.17187499999999, 53.330872983017066 ], [ 61.52343749999999, 54.265224078605655 ], [ 63.80859374999999, 54.265224078605655 ], [ 68.02734375, 55.178867663281984 ], [ 70.13671875, 55.27911529201561 ], [ 73.125, 53.330872983017066 ], [ 75.41015624999999, 54.16243396806779 ], [ 76.81640625, 53.74871079689897 ], [ 78.3984375, 52.05249047600099 ], [ 80.5078125, 51.17934297928927 ], [ 82.96875, 51.17934297928927 ], [ 85.078125, 49.03786794532644 ], [ 87.36328125, 49.724479188713005 ], [ 89.47265625, 49.724479188713005 ], [ 92.10937499999999, 50.28933925329178 ], [ 94.5703125, 50.28933925329178 ], [ 96.15234375, 50.28933925329178 ], [ 97.91015624999999, 49.724479188713005 ], [ 98.26171875, 51.28940590271679 ], [ 99.49218749999999, 52.26815737376817 ], [ 102.3046875, 50.958426723359935 ], [ 103.0078125, 49.95121990866204 ], [ 105.8203125, 50.84757295365389 ], [ 106.5234375, 49.83798245308484 ], [ 110.0390625, 49.83798245308484 ], [ 111.97265625, 49.49667452747045 ], [ 116.3671875, 50.28933925329178 ], [ 120.05859375, 51.6180165487737 ], [ 120.234375, 53.12040528310657 ], [ 122.87109375, 53.5403073915002 ], [ 126.21093749999999, 52.482780222078226 ], [ 126.91406249999999, 50.51342652633956 ], [ 130.78125, 48.45835188280866 ], [ 131.8359375, 47.635783590864854 ], [ 134.82421875, 48.45835188280866 ], [ 132.5390625, 45.9511496866914 ], [ 130.4296875, 44.715513732021364 ], [ 131.484375, 41.902277040963696 ], [ 133.76953125, 42.94033923363181 ], [ 141.15234374999997, 51.069016659603896 ], [ 140.2734375, 53.74871079689897 ], [ 136.0546875, 54.87660665410869 ], [ 137.98828125, 56.65622649350222 ], [ 140.625, 58.17070248348612 ], [ 142.20703125, 59.445075099047166 ], [ 145.8984375, 59.445075099047166 ], [ 149.0625, 59.712097173322924 ], [ 152.05078125, 59.265880628258095 ], [ 153.10546875, 59.085738569819505 ], [ 155.56640625, 59.085738569819505 ], [ 154.51171875, 59.712097173322924 ], [ 156.26953125, 61.10078883158897 ], [ 158.73046875, 61.938950426660604 ], [ 159.78515624999997, 61.60639637138628 ], [ 159.78515624999997, 60.930432202923335 ], [ 161.54296875, 60.930432202923335 ], [ 163.65234374999997, 62.431074232920906 ], [ 163.65234374999997, 61.270232790000634 ], [ 161.015625, 60.1524422143808 ], [ 158.02734375, 58.07787626787517 ], [ 155.56640625, 56.75272287205736 ], [ 155.390625, 55.37911044801047 ], [ 155.390625, 53.12040528310657 ], [ 156.62109374999997, 52.16045455774706 ], [ 156.796875, 51.6180165487737 ], [ 159.43359375, 53.014783245859206 ], [ 160.6640625, 54.470037612805754 ], [ 162.24609375, 55.47885346331034 ], [ 162.59765625, 57.040729838360875 ], [ 162.59765625, 58.35563036280967 ], [ 164.00390625, 59.712097173322924 ], [ 165.9375, 60.326947742998414 ], [ 167.6953125, 60.58696734225869 ], [ 170.15625, 60.1524422143808 ], [ 173.32031249999997, 61.60639637138628 ], [ 176.8359375, 62.67414334669093 ], [ 178.9453125, 62.59334083012024 ], [ 179.296875, 63.31268278043484 ], [ 176.48437499999997, 64.84893726357947 ], [ 179.82421875, 65.14611484756372 ], [ 180, 66.08936427047085 ], [ 182.8125, 65.58572002329473 ], [ 184.5703125, 64.84893726357947 ], [ 186.328125, 64.24459476798192 ], [ 187.91015625, 64.99793920061401 ], [ 189.4921875, 65.73062649311031 ], [ 190.546875, 66.58321725728175 ], [ 187.3828125, 67.06743335108298 ], [ 185.09765625, 67.06743335108298 ], [ 183.69140625, 68.07330474079025 ], [ 181.58203125, 68.78414378041504 ], [ 177.36328125, 69.47296854140573 ], [ 174.375, 69.77895177646758 ], [ 170.5078125, 69.96043926902489 ], [ 170.5078125, 69.2249968541159 ], [ 170.5078125, 68.78414378041504 ], [ 167.34375, 69.47296854140573 ], [ 165.234375, 69.47296854140573 ], [ 161.54296875, 69.65708627301174 ], [ 160.83984375, 69.16255790810501 ], [ 159.2578125, 69.83962194067463 ], [ 159.78515624999997, 70.55417853776078 ], [ 152.2265625, 71.13098770917023 ], [ 149.0625, 72.0739114882038 ], [ 145.72265625, 72.3424643905499 ], [ 140.9765625, 72.71190310803662 ], [ 139.04296875, 71.85622888185527 ], [ 134.47265625, 71.69129271863999 ], [ 130.95703125, 71.69129271863999 ], [ 129.0234375, 70.67088107015755 ], [ 126.91406249999999, 72.55449849665266 ], [ 126.73828125, 73.52839948765174 ], [ 123.57421875, 73.52839948765174 ], [ 122.16796875, 72.97118902284586 ], [ 120.41015624999999, 72.97118902284586 ], [ 118.47656249999999, 73.47848507889992 ], [ 113.203125, 73.82482034613932 ], [ 108.6328125, 73.52839948765174 ], [ 106.875, 73.72659470212253 ], [ 109.16015624999999, 74.35482803013984 ], [ 112.8515625, 75.00494000767517 ], [ 112.8515625, 76.10079606754579 ], [ 110.56640625, 76.59854506890699 ], [ 107.75390625, 76.59854506890699 ], [ 106.34765625, 77.07878389624943 ], [ 105.64453124999999, 77.57995914400348 ], [ 102.12890625, 77.57995914400348 ], [ 101.07421875, 76.9206135182968 ], [ 99.31640625, 76.18499546094715 ], [ 91.7578125, 75.88809074612949 ], [ 90.17578124999999, 75.36450565060709 ], [ 87.01171875, 74.59010800882325 ], [ 86.484375, 74.16408546675687 ], [ 86.30859375, 73.92246884621466 ], [ 83.84765625, 73.82482034613932 ], [ 78.92578124999999, 73.67726447634907 ], [ 80.33203125, 73.07384351277217 ], [ 80.85937499999999, 72.28906720017675 ], [ 82.96875, 71.91088787611528 ], [ 79.62890625, 71.91088787611528 ], [ 78.046875, 72.1279362810559 ], [ 75.05859375, 71.58053179556501 ], [ 72.421875, 71.63599288330609 ], [ 72.0703125, 72.60712040027555 ], [ 69.43359375, 72.71190310803662 ], [ 68.37890625, 71.63599288330609 ], [ 67.1484375, 70.61261423801925 ], [ 66.97265625, 69.2249968541159 ], [ 69.9609375, 68.78414378041504 ], [ 68.203125, 68.33437594128185 ], [ 64.3359375, 68.72044056989829 ], [ 63.28125, 69.65708627301174 ], [ 61.17187499999999, 69.65708627301174 ], [ 59.765625, 68.52823492039876 ], [ 55.8984375, 68.65655498475735 ], [ 51.15234375, 68.65655498475735 ], [ 47.98828124999999, 68.00757101804004 ], [ 47.109375, 67.13582938531948 ], [ 42.71484375, 67.06743335108298 ], [ 40.42968749999999, 65.58572002329473 ], [ 36.73828124999999, 64.92354174306496 ], [ 34.98046875, 65.44000165965534 ], [ 33.57421875, 66.65297740055279 ], [ 36.73828124999999, 66.16051056018838 ], [ 41.66015625, 66.58321725728175 ], [ 39.19921875, 67.47492238478702 ], [ 35.68359375, 68.13885164925573 ], [ 32.6953125, 69.2249968541159 ], [ 29.70703125, 69.41124235697256 ], [ 29.70703125, 68.46379955520322 ], [ 29.70703125, 64.62387720204691 ], [ 31.640625, 63.704722429433225 ], [ 30.234375, 61.438767493682825 ], [ 28.125, 60.23981116999893 ], [ 27.24609375, 58.17070248348612 ], [ 28.30078125, 56.36525013685606 ] ] ] } ================================================ FILE: test/fixtures/russia_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 48.92249926 ], [ 101.25, 52.48278022 ], [ 106.875, 52.48278022 ], [ 106.875, 48.92249926 ], [ 101.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 52.48278022 ], [ 101.25, 55.77657302 ], [ 106.875, 55.77657302 ], [ 106.875, 52.48278022 ], [ 101.25, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 55.77657302 ], [ 101.25, 58.81374172 ], [ 106.875, 58.81374172 ], [ 106.875, 55.77657302 ], [ 101.25, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 58.81374172 ], [ 101.25, 61.60639637 ], [ 106.875, 61.60639637 ], [ 106.875, 58.81374172 ], [ 101.25, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 61.60639637 ], [ 101.25, 64.1681069 ], [ 106.875, 64.1681069 ], [ 106.875, 61.60639637 ], [ 101.25, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 64.1681069 ], [ 101.25, 66.51326044 ], [ 106.875, 66.51326044 ], [ 106.875, 64.1681069 ], [ 101.25, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 66.51326044 ], [ 101.25, 68.65655498 ], [ 106.875, 68.65655498 ], [ 106.875, 66.51326044 ], [ 101.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 68.65655498 ], [ 101.25, 70.61261424 ], [ 106.875, 70.61261424 ], [ 106.875, 68.65655498 ], [ 101.25, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 70.61261424 ], [ 101.25, 72.39570571 ], [ 106.875, 72.39570571 ], [ 106.875, 70.61261424 ], [ 101.25, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 72.39570571 ], [ 101.25, 74.01954331 ], [ 106.875, 74.01954331 ], [ 106.875, 72.39570571 ], [ 101.25, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 74.01954331 ], [ 101.25, 75.49715732 ], [ 106.875, 75.49715732 ], [ 106.875, 74.01954331 ], [ 101.25, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 75.49715732 ], [ 101.25, 76.84081641 ], [ 106.875, 76.84081641 ], [ 106.875, 75.49715732 ], [ 101.25, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 76.84081641 ], [ 101.25, 78.06198919 ], [ 106.875, 78.06198919 ], [ 106.875, 76.84081641 ], [ 101.25, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 48.92249926 ], [ 106.875, 52.48278022 ], [ 112.5, 52.48278022 ], [ 112.5, 48.92249926 ], [ 106.875, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 52.48278022 ], [ 106.875, 55.77657302 ], [ 112.5, 55.77657302 ], [ 112.5, 52.48278022 ], [ 106.875, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 55.77657302 ], [ 106.875, 58.81374172 ], [ 112.5, 58.81374172 ], [ 112.5, 55.77657302 ], [ 106.875, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 58.81374172 ], [ 106.875, 61.60639637 ], [ 112.5, 61.60639637 ], [ 112.5, 58.81374172 ], [ 106.875, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 61.60639637 ], [ 106.875, 64.1681069 ], [ 112.5, 64.1681069 ], [ 112.5, 61.60639637 ], [ 106.875, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 64.1681069 ], [ 106.875, 66.51326044 ], [ 112.5, 66.51326044 ], [ 112.5, 64.1681069 ], [ 106.875, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 66.51326044 ], [ 106.875, 68.65655498 ], [ 112.5, 68.65655498 ], [ 112.5, 66.51326044 ], [ 106.875, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 68.65655498 ], [ 106.875, 70.61261424 ], [ 112.5, 70.61261424 ], [ 112.5, 68.65655498 ], [ 106.875, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 70.61261424 ], [ 106.875, 72.39570571 ], [ 112.5, 72.39570571 ], [ 112.5, 70.61261424 ], [ 106.875, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 72.39570571 ], [ 106.875, 74.01954331 ], [ 112.5, 74.01954331 ], [ 112.5, 72.39570571 ], [ 106.875, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 74.01954331 ], [ 106.875, 75.49715732 ], [ 112.5, 75.49715732 ], [ 112.5, 74.01954331 ], [ 106.875, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 75.49715732 ], [ 106.875, 76.84081641 ], [ 112.5, 76.84081641 ], [ 112.5, 75.49715732 ], [ 106.875, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 76.84081641 ], [ 106.875, 78.06198919 ], [ 112.5, 78.06198919 ], [ 112.5, 76.84081641 ], [ 106.875, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 48.92249926 ], [ 112.5, 52.48278022 ], [ 118.125, 52.48278022 ], [ 118.125, 48.92249926 ], [ 112.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 52.48278022 ], [ 112.5, 55.77657302 ], [ 118.125, 55.77657302 ], [ 118.125, 52.48278022 ], [ 112.5, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 55.77657302 ], [ 112.5, 58.81374172 ], [ 118.125, 58.81374172 ], [ 118.125, 55.77657302 ], [ 112.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 58.81374172 ], [ 112.5, 61.60639637 ], [ 118.125, 61.60639637 ], [ 118.125, 58.81374172 ], [ 112.5, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 61.60639637 ], [ 112.5, 64.1681069 ], [ 118.125, 64.1681069 ], [ 118.125, 61.60639637 ], [ 112.5, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 64.1681069 ], [ 112.5, 66.51326044 ], [ 118.125, 66.51326044 ], [ 118.125, 64.1681069 ], [ 112.5, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 66.51326044 ], [ 112.5, 68.65655498 ], [ 118.125, 68.65655498 ], [ 118.125, 66.51326044 ], [ 112.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 68.65655498 ], [ 112.5, 70.61261424 ], [ 118.125, 70.61261424 ], [ 118.125, 68.65655498 ], [ 112.5, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 70.61261424 ], [ 112.5, 72.39570571 ], [ 118.125, 72.39570571 ], [ 118.125, 70.61261424 ], [ 112.5, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 72.39570571 ], [ 112.5, 74.01954331 ], [ 118.125, 74.01954331 ], [ 118.125, 72.39570571 ], [ 112.5, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 74.01954331 ], [ 112.5, 75.49715732 ], [ 118.125, 75.49715732 ], [ 118.125, 74.01954331 ], [ 112.5, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 75.49715732 ], [ 112.5, 76.84081641 ], [ 118.125, 76.84081641 ], [ 118.125, 75.49715732 ], [ 112.5, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 48.92249926 ], [ 118.125, 52.48278022 ], [ 123.75, 52.48278022 ], [ 123.75, 48.92249926 ], [ 118.125, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 52.48278022 ], [ 118.125, 55.77657302 ], [ 123.75, 55.77657302 ], [ 123.75, 52.48278022 ], [ 118.125, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 55.77657302 ], [ 118.125, 58.81374172 ], [ 123.75, 58.81374172 ], [ 123.75, 55.77657302 ], [ 118.125, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 58.81374172 ], [ 118.125, 61.60639637 ], [ 123.75, 61.60639637 ], [ 123.75, 58.81374172 ], [ 118.125, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 61.60639637 ], [ 118.125, 64.1681069 ], [ 123.75, 64.1681069 ], [ 123.75, 61.60639637 ], [ 118.125, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 64.1681069 ], [ 118.125, 66.51326044 ], [ 123.75, 66.51326044 ], [ 123.75, 64.1681069 ], [ 118.125, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 66.51326044 ], [ 118.125, 68.65655498 ], [ 123.75, 68.65655498 ], [ 123.75, 66.51326044 ], [ 118.125, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 68.65655498 ], [ 118.125, 70.61261424 ], [ 123.75, 70.61261424 ], [ 123.75, 68.65655498 ], [ 118.125, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 70.61261424 ], [ 118.125, 72.39570571 ], [ 123.75, 72.39570571 ], [ 123.75, 70.61261424 ], [ 118.125, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 72.39570571 ], [ 118.125, 74.01954331 ], [ 123.75, 74.01954331 ], [ 123.75, 72.39570571 ], [ 118.125, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 48.92249926 ], [ 123.75, 52.48278022 ], [ 129.375, 52.48278022 ], [ 129.375, 48.92249926 ], [ 123.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 52.48278022 ], [ 123.75, 55.77657302 ], [ 129.375, 55.77657302 ], [ 129.375, 52.48278022 ], [ 123.75, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 55.77657302 ], [ 123.75, 58.81374172 ], [ 129.375, 58.81374172 ], [ 129.375, 55.77657302 ], [ 123.75, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 58.81374172 ], [ 123.75, 61.60639637 ], [ 129.375, 61.60639637 ], [ 129.375, 58.81374172 ], [ 123.75, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 61.60639637 ], [ 123.75, 64.1681069 ], [ 129.375, 64.1681069 ], [ 129.375, 61.60639637 ], [ 123.75, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 64.1681069 ], [ 123.75, 66.51326044 ], [ 129.375, 66.51326044 ], [ 129.375, 64.1681069 ], [ 123.75, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 66.51326044 ], [ 123.75, 68.65655498 ], [ 129.375, 68.65655498 ], [ 129.375, 66.51326044 ], [ 123.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 68.65655498 ], [ 123.75, 70.61261424 ], [ 129.375, 70.61261424 ], [ 129.375, 68.65655498 ], [ 123.75, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 70.61261424 ], [ 123.75, 72.39570571 ], [ 129.375, 72.39570571 ], [ 129.375, 70.61261424 ], [ 123.75, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 72.39570571 ], [ 123.75, 74.01954331 ], [ 129.375, 74.01954331 ], [ 129.375, 72.39570571 ], [ 123.75, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 40.97989807 ], [ 129.375, 45.08903556 ], [ 135, 45.08903556 ], [ 135, 40.97989807 ], [ 129.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 45.08903556 ], [ 129.375, 48.92249926 ], [ 135, 48.92249926 ], [ 135, 45.08903556 ], [ 129.375, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 48.92249926 ], [ 129.375, 52.48278022 ], [ 135, 52.48278022 ], [ 135, 48.92249926 ], [ 129.375, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 52.48278022 ], [ 129.375, 55.77657302 ], [ 135, 55.77657302 ], [ 135, 52.48278022 ], [ 129.375, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 55.77657302 ], [ 129.375, 58.81374172 ], [ 135, 58.81374172 ], [ 135, 55.77657302 ], [ 129.375, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 58.81374172 ], [ 129.375, 61.60639637 ], [ 135, 61.60639637 ], [ 135, 58.81374172 ], [ 129.375, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 61.60639637 ], [ 129.375, 64.1681069 ], [ 135, 64.1681069 ], [ 135, 61.60639637 ], [ 129.375, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 64.1681069 ], [ 129.375, 66.51326044 ], [ 135, 66.51326044 ], [ 135, 64.1681069 ], [ 129.375, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 66.51326044 ], [ 129.375, 68.65655498 ], [ 135, 68.65655498 ], [ 135, 66.51326044 ], [ 129.375, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 68.65655498 ], [ 129.375, 70.61261424 ], [ 135, 70.61261424 ], [ 135, 68.65655498 ], [ 129.375, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 70.61261424 ], [ 129.375, 72.39570571 ], [ 135, 72.39570571 ], [ 135, 70.61261424 ], [ 129.375, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 40.97989807 ], [ 135, 45.08903556 ], [ 140.625, 45.08903556 ], [ 140.625, 40.97989807 ], [ 135, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 45.08903556 ], [ 135, 48.92249926 ], [ 140.625, 48.92249926 ], [ 140.625, 45.08903556 ], [ 135, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 48.92249926 ], [ 135, 52.48278022 ], [ 140.625, 52.48278022 ], [ 140.625, 48.92249926 ], [ 135, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 52.48278022 ], [ 135, 55.77657302 ], [ 140.625, 55.77657302 ], [ 140.625, 52.48278022 ], [ 135, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 55.77657302 ], [ 135, 58.81374172 ], [ 140.625, 58.81374172 ], [ 140.625, 55.77657302 ], [ 135, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 58.81374172 ], [ 135, 61.60639637 ], [ 140.625, 61.60639637 ], [ 140.625, 58.81374172 ], [ 135, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 61.60639637 ], [ 135, 64.1681069 ], [ 140.625, 64.1681069 ], [ 140.625, 61.60639637 ], [ 135, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 64.1681069 ], [ 135, 66.51326044 ], [ 140.625, 66.51326044 ], [ 140.625, 64.1681069 ], [ 135, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 66.51326044 ], [ 135, 68.65655498 ], [ 140.625, 68.65655498 ], [ 140.625, 66.51326044 ], [ 135, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 68.65655498 ], [ 135, 70.61261424 ], [ 140.625, 70.61261424 ], [ 140.625, 68.65655498 ], [ 135, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 70.61261424 ], [ 135, 72.39570571 ], [ 140.625, 72.39570571 ], [ 140.625, 70.61261424 ], [ 135, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 72.39570571 ], [ 135, 74.01954331 ], [ 140.625, 74.01954331 ], [ 140.625, 72.39570571 ], [ 135, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 48.92249926 ], [ 140.625, 52.48278022 ], [ 146.25, 52.48278022 ], [ 146.25, 48.92249926 ], [ 140.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 52.48278022 ], [ 140.625, 55.77657302 ], [ 146.25, 55.77657302 ], [ 146.25, 52.48278022 ], [ 140.625, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 55.77657302 ], [ 140.625, 58.81374172 ], [ 146.25, 58.81374172 ], [ 146.25, 55.77657302 ], [ 140.625, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 58.81374172 ], [ 140.625, 61.60639637 ], [ 146.25, 61.60639637 ], [ 146.25, 58.81374172 ], [ 140.625, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 61.60639637 ], [ 140.625, 64.1681069 ], [ 146.25, 64.1681069 ], [ 146.25, 61.60639637 ], [ 140.625, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 64.1681069 ], [ 140.625, 66.51326044 ], [ 146.25, 66.51326044 ], [ 146.25, 64.1681069 ], [ 140.625, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 66.51326044 ], [ 140.625, 68.65655498 ], [ 146.25, 68.65655498 ], [ 146.25, 66.51326044 ], [ 140.625, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 68.65655498 ], [ 140.625, 70.61261424 ], [ 146.25, 70.61261424 ], [ 146.25, 68.65655498 ], [ 140.625, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 70.61261424 ], [ 140.625, 72.39570571 ], [ 146.25, 72.39570571 ], [ 146.25, 70.61261424 ], [ 140.625, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 72.39570571 ], [ 140.625, 74.01954331 ], [ 146.25, 74.01954331 ], [ 146.25, 72.39570571 ], [ 140.625, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, 58.81374172 ], [ 146.25, 61.60639637 ], [ 151.875, 61.60639637 ], [ 151.875, 58.81374172 ], [ 146.25, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, 61.60639637 ], [ 146.25, 64.1681069 ], [ 151.875, 64.1681069 ], [ 151.875, 61.60639637 ], [ 146.25, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, 64.1681069 ], [ 146.25, 66.51326044 ], [ 151.875, 66.51326044 ], [ 151.875, 64.1681069 ], [ 146.25, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, 66.51326044 ], [ 146.25, 68.65655498 ], [ 151.875, 68.65655498 ], [ 151.875, 66.51326044 ], [ 146.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, 68.65655498 ], [ 146.25, 70.61261424 ], [ 151.875, 70.61261424 ], [ 151.875, 68.65655498 ], [ 146.25, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, 70.61261424 ], [ 146.25, 72.39570571 ], [ 151.875, 72.39570571 ], [ 151.875, 70.61261424 ], [ 146.25, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 48.92249926 ], [ 151.875, 52.48278022 ], [ 157.5, 52.48278022 ], [ 157.5, 48.92249926 ], [ 151.875, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 52.48278022 ], [ 151.875, 55.77657302 ], [ 157.5, 55.77657302 ], [ 157.5, 52.48278022 ], [ 151.875, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 55.77657302 ], [ 151.875, 58.81374172 ], [ 157.5, 58.81374172 ], [ 157.5, 55.77657302 ], [ 151.875, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 58.81374172 ], [ 151.875, 61.60639637 ], [ 157.5, 61.60639637 ], [ 157.5, 58.81374172 ], [ 151.875, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 61.60639637 ], [ 151.875, 64.1681069 ], [ 157.5, 64.1681069 ], [ 157.5, 61.60639637 ], [ 151.875, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 64.1681069 ], [ 151.875, 66.51326044 ], [ 157.5, 66.51326044 ], [ 157.5, 64.1681069 ], [ 151.875, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 66.51326044 ], [ 151.875, 68.65655498 ], [ 157.5, 68.65655498 ], [ 157.5, 66.51326044 ], [ 151.875, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 68.65655498 ], [ 151.875, 70.61261424 ], [ 157.5, 70.61261424 ], [ 157.5, 68.65655498 ], [ 151.875, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 70.61261424 ], [ 151.875, 72.39570571 ], [ 157.5, 72.39570571 ], [ 157.5, 70.61261424 ], [ 151.875, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 48.92249926 ], [ 157.5, 52.48278022 ], [ 163.125, 52.48278022 ], [ 163.125, 48.92249926 ], [ 157.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 52.48278022 ], [ 157.5, 55.77657302 ], [ 163.125, 55.77657302 ], [ 163.125, 52.48278022 ], [ 157.5, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 55.77657302 ], [ 157.5, 58.81374172 ], [ 163.125, 58.81374172 ], [ 163.125, 55.77657302 ], [ 157.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 58.81374172 ], [ 157.5, 61.60639637 ], [ 163.125, 61.60639637 ], [ 163.125, 58.81374172 ], [ 157.5, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 61.60639637 ], [ 157.5, 64.1681069 ], [ 163.125, 64.1681069 ], [ 163.125, 61.60639637 ], [ 157.5, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 64.1681069 ], [ 157.5, 66.51326044 ], [ 163.125, 66.51326044 ], [ 163.125, 64.1681069 ], [ 157.5, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 66.51326044 ], [ 157.5, 68.65655498 ], [ 163.125, 68.65655498 ], [ 163.125, 66.51326044 ], [ 157.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 68.65655498 ], [ 157.5, 70.61261424 ], [ 163.125, 70.61261424 ], [ 163.125, 68.65655498 ], [ 157.5, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 70.61261424 ], [ 157.5, 72.39570571 ], [ 163.125, 72.39570571 ], [ 163.125, 70.61261424 ], [ 157.5, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, 58.81374172 ], [ 163.125, 61.60639637 ], [ 168.75, 61.60639637 ], [ 168.75, 58.81374172 ], [ 163.125, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, 61.60639637 ], [ 163.125, 64.1681069 ], [ 168.75, 64.1681069 ], [ 168.75, 61.60639637 ], [ 163.125, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, 64.1681069 ], [ 163.125, 66.51326044 ], [ 168.75, 66.51326044 ], [ 168.75, 64.1681069 ], [ 163.125, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, 66.51326044 ], [ 163.125, 68.65655498 ], [ 168.75, 68.65655498 ], [ 168.75, 66.51326044 ], [ 163.125, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, 68.65655498 ], [ 163.125, 70.61261424 ], [ 168.75, 70.61261424 ], [ 168.75, 68.65655498 ], [ 163.125, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, 58.81374172 ], [ 168.75, 61.60639637 ], [ 174.375, 61.60639637 ], [ 174.375, 58.81374172 ], [ 168.75, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, 61.60639637 ], [ 168.75, 64.1681069 ], [ 174.375, 64.1681069 ], [ 174.375, 61.60639637 ], [ 168.75, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, 64.1681069 ], [ 168.75, 66.51326044 ], [ 174.375, 66.51326044 ], [ 174.375, 64.1681069 ], [ 168.75, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, 66.51326044 ], [ 168.75, 68.65655498 ], [ 174.375, 68.65655498 ], [ 174.375, 66.51326044 ], [ 168.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, 68.65655498 ], [ 168.75, 70.61261424 ], [ 174.375, 70.61261424 ], [ 174.375, 68.65655498 ], [ 168.75, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.375, 61.60639637 ], [ 174.375, 64.1681069 ], [ 180, 64.1681069 ], [ 180, 61.60639637 ], [ 174.375, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.375, 64.1681069 ], [ 174.375, 66.51326044 ], [ 180, 66.51326044 ], [ 180, 64.1681069 ], [ 174.375, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.375, 66.51326044 ], [ 174.375, 68.65655498 ], [ 180, 68.65655498 ], [ 180, 66.51326044 ], [ 174.375, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.375, 68.65655498 ], [ 174.375, 70.61261424 ], [ 180, 70.61261424 ], [ 180, 68.65655498 ], [ 174.375, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 180, 64.1681069 ], [ 180, 66.51326044 ], [ 185.625, 66.51326044 ], [ 185.625, 64.1681069 ], [ 180, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 180, 66.51326044 ], [ 180, 68.65655498 ], [ 185.625, 68.65655498 ], [ 185.625, 66.51326044 ], [ 180, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 180, 68.65655498 ], [ 180, 70.61261424 ], [ 185.625, 70.61261424 ], [ 185.625, 68.65655498 ], [ 180, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 185.625, 64.1681069 ], [ 185.625, 66.51326044 ], [ 191.25, 66.51326044 ], [ 191.25, 64.1681069 ], [ 185.625, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 185.625, 66.51326044 ], [ 185.625, 68.65655498 ], [ 191.25, 68.65655498 ], [ 191.25, 66.51326044 ], [ 185.625, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 55.77657302 ], [ 22.5, 58.81374172 ], [ 28.125, 58.81374172 ], [ 28.125, 55.77657302 ], [ 22.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 58.81374172 ], [ 22.5, 61.60639637 ], [ 28.125, 61.60639637 ], [ 28.125, 58.81374172 ], [ 22.5, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 48.92249926 ], [ 28.125, 52.48278022 ], [ 33.75, 52.48278022 ], [ 33.75, 48.92249926 ], [ 28.125, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 52.48278022 ], [ 28.125, 55.77657302 ], [ 33.75, 55.77657302 ], [ 33.75, 52.48278022 ], [ 28.125, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 55.77657302 ], [ 28.125, 58.81374172 ], [ 33.75, 58.81374172 ], [ 33.75, 55.77657302 ], [ 28.125, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 58.81374172 ], [ 28.125, 61.60639637 ], [ 33.75, 61.60639637 ], [ 33.75, 58.81374172 ], [ 28.125, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 61.60639637 ], [ 28.125, 64.1681069 ], [ 33.75, 64.1681069 ], [ 33.75, 61.60639637 ], [ 28.125, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 64.1681069 ], [ 28.125, 66.51326044 ], [ 33.75, 66.51326044 ], [ 33.75, 64.1681069 ], [ 28.125, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 66.51326044 ], [ 28.125, 68.65655498 ], [ 33.75, 68.65655498 ], [ 33.75, 66.51326044 ], [ 28.125, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 68.65655498 ], [ 28.125, 70.61261424 ], [ 33.75, 70.61261424 ], [ 33.75, 68.65655498 ], [ 28.125, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 40.97989807 ], [ 33.75, 45.08903556 ], [ 39.375, 45.08903556 ], [ 39.375, 40.97989807 ], [ 33.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 45.08903556 ], [ 33.75, 48.92249926 ], [ 39.375, 48.92249926 ], [ 39.375, 45.08903556 ], [ 33.75, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 48.92249926 ], [ 33.75, 52.48278022 ], [ 39.375, 52.48278022 ], [ 39.375, 48.92249926 ], [ 33.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 52.48278022 ], [ 33.75, 55.77657302 ], [ 39.375, 55.77657302 ], [ 39.375, 52.48278022 ], [ 33.75, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 55.77657302 ], [ 33.75, 58.81374172 ], [ 39.375, 58.81374172 ], [ 39.375, 55.77657302 ], [ 33.75, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 58.81374172 ], [ 33.75, 61.60639637 ], [ 39.375, 61.60639637 ], [ 39.375, 58.81374172 ], [ 33.75, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 61.60639637 ], [ 33.75, 64.1681069 ], [ 39.375, 64.1681069 ], [ 39.375, 61.60639637 ], [ 33.75, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 64.1681069 ], [ 33.75, 66.51326044 ], [ 39.375, 66.51326044 ], [ 39.375, 64.1681069 ], [ 33.75, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 66.51326044 ], [ 33.75, 68.65655498 ], [ 39.375, 68.65655498 ], [ 39.375, 66.51326044 ], [ 33.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 68.65655498 ], [ 33.75, 70.61261424 ], [ 39.375, 70.61261424 ], [ 39.375, 68.65655498 ], [ 33.75, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 40.97989807 ], [ 39.375, 45.08903556 ], [ 45, 45.08903556 ], [ 45, 40.97989807 ], [ 39.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 45.08903556 ], [ 39.375, 48.92249926 ], [ 45, 48.92249926 ], [ 45, 45.08903556 ], [ 39.375, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 48.92249926 ], [ 39.375, 52.48278022 ], [ 45, 52.48278022 ], [ 45, 48.92249926 ], [ 39.375, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 52.48278022 ], [ 39.375, 55.77657302 ], [ 45, 55.77657302 ], [ 45, 52.48278022 ], [ 39.375, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 55.77657302 ], [ 39.375, 58.81374172 ], [ 45, 58.81374172 ], [ 45, 55.77657302 ], [ 39.375, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 58.81374172 ], [ 39.375, 61.60639637 ], [ 45, 61.60639637 ], [ 45, 58.81374172 ], [ 39.375, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 61.60639637 ], [ 39.375, 64.1681069 ], [ 45, 64.1681069 ], [ 45, 61.60639637 ], [ 39.375, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 64.1681069 ], [ 39.375, 66.51326044 ], [ 45, 66.51326044 ], [ 45, 64.1681069 ], [ 39.375, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 66.51326044 ], [ 39.375, 68.65655498 ], [ 45, 68.65655498 ], [ 45, 66.51326044 ], [ 39.375, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 40.97989807 ], [ 45, 45.08903556 ], [ 50.625, 45.08903556 ], [ 50.625, 40.97989807 ], [ 45, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 45.08903556 ], [ 45, 48.92249926 ], [ 50.625, 48.92249926 ], [ 50.625, 45.08903556 ], [ 45, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 48.92249926 ], [ 45, 52.48278022 ], [ 50.625, 52.48278022 ], [ 50.625, 48.92249926 ], [ 45, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 52.48278022 ], [ 45, 55.77657302 ], [ 50.625, 55.77657302 ], [ 50.625, 52.48278022 ], [ 45, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 55.77657302 ], [ 45, 58.81374172 ], [ 50.625, 58.81374172 ], [ 50.625, 55.77657302 ], [ 45, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 58.81374172 ], [ 45, 61.60639637 ], [ 50.625, 61.60639637 ], [ 50.625, 58.81374172 ], [ 45, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 61.60639637 ], [ 45, 64.1681069 ], [ 50.625, 64.1681069 ], [ 50.625, 61.60639637 ], [ 45, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 64.1681069 ], [ 45, 66.51326044 ], [ 50.625, 66.51326044 ], [ 50.625, 64.1681069 ], [ 45, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 66.51326044 ], [ 45, 68.65655498 ], [ 50.625, 68.65655498 ], [ 50.625, 66.51326044 ], [ 45, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 48.92249926 ], [ 50.625, 52.48278022 ], [ 56.25, 52.48278022 ], [ 56.25, 48.92249926 ], [ 50.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 52.48278022 ], [ 50.625, 55.77657302 ], [ 56.25, 55.77657302 ], [ 56.25, 52.48278022 ], [ 50.625, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 55.77657302 ], [ 50.625, 58.81374172 ], [ 56.25, 58.81374172 ], [ 56.25, 55.77657302 ], [ 50.625, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 58.81374172 ], [ 50.625, 61.60639637 ], [ 56.25, 61.60639637 ], [ 56.25, 58.81374172 ], [ 50.625, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 61.60639637 ], [ 50.625, 64.1681069 ], [ 56.25, 64.1681069 ], [ 56.25, 61.60639637 ], [ 50.625, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 64.1681069 ], [ 50.625, 66.51326044 ], [ 56.25, 66.51326044 ], [ 56.25, 64.1681069 ], [ 50.625, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 66.51326044 ], [ 50.625, 68.65655498 ], [ 56.25, 68.65655498 ], [ 56.25, 66.51326044 ], [ 50.625, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 48.92249926 ], [ 56.25, 52.48278022 ], [ 61.875, 52.48278022 ], [ 61.875, 48.92249926 ], [ 56.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 52.48278022 ], [ 56.25, 55.77657302 ], [ 61.875, 55.77657302 ], [ 61.875, 52.48278022 ], [ 56.25, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 55.77657302 ], [ 56.25, 58.81374172 ], [ 61.875, 58.81374172 ], [ 61.875, 55.77657302 ], [ 56.25, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 58.81374172 ], [ 56.25, 61.60639637 ], [ 61.875, 61.60639637 ], [ 61.875, 58.81374172 ], [ 56.25, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 61.60639637 ], [ 56.25, 64.1681069 ], [ 61.875, 64.1681069 ], [ 61.875, 61.60639637 ], [ 56.25, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 64.1681069 ], [ 56.25, 66.51326044 ], [ 61.875, 66.51326044 ], [ 61.875, 64.1681069 ], [ 56.25, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 66.51326044 ], [ 56.25, 68.65655498 ], [ 61.875, 68.65655498 ], [ 61.875, 66.51326044 ], [ 56.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 68.65655498 ], [ 56.25, 70.61261424 ], [ 61.875, 70.61261424 ], [ 61.875, 68.65655498 ], [ 56.25, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 52.48278022 ], [ 61.875, 55.77657302 ], [ 67.5, 55.77657302 ], [ 67.5, 52.48278022 ], [ 61.875, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 55.77657302 ], [ 61.875, 58.81374172 ], [ 67.5, 58.81374172 ], [ 67.5, 55.77657302 ], [ 61.875, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 58.81374172 ], [ 61.875, 61.60639637 ], [ 67.5, 61.60639637 ], [ 67.5, 58.81374172 ], [ 61.875, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 61.60639637 ], [ 61.875, 64.1681069 ], [ 67.5, 64.1681069 ], [ 67.5, 61.60639637 ], [ 61.875, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 64.1681069 ], [ 61.875, 66.51326044 ], [ 67.5, 66.51326044 ], [ 67.5, 64.1681069 ], [ 61.875, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 66.51326044 ], [ 61.875, 68.65655498 ], [ 67.5, 68.65655498 ], [ 67.5, 66.51326044 ], [ 61.875, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 68.65655498 ], [ 61.875, 70.61261424 ], [ 67.5, 70.61261424 ], [ 67.5, 68.65655498 ], [ 61.875, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 70.61261424 ], [ 61.875, 72.39570571 ], [ 67.5, 72.39570571 ], [ 67.5, 70.61261424 ], [ 61.875, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 52.48278022 ], [ 67.5, 55.77657302 ], [ 73.125, 55.77657302 ], [ 73.125, 52.48278022 ], [ 67.5, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 55.77657302 ], [ 67.5, 58.81374172 ], [ 73.125, 58.81374172 ], [ 73.125, 55.77657302 ], [ 67.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 58.81374172 ], [ 67.5, 61.60639637 ], [ 73.125, 61.60639637 ], [ 73.125, 58.81374172 ], [ 67.5, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 61.60639637 ], [ 67.5, 64.1681069 ], [ 73.125, 64.1681069 ], [ 73.125, 61.60639637 ], [ 67.5, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 64.1681069 ], [ 67.5, 66.51326044 ], [ 73.125, 66.51326044 ], [ 73.125, 64.1681069 ], [ 67.5, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 66.51326044 ], [ 67.5, 68.65655498 ], [ 73.125, 68.65655498 ], [ 73.125, 66.51326044 ], [ 67.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 68.65655498 ], [ 67.5, 70.61261424 ], [ 73.125, 70.61261424 ], [ 73.125, 68.65655498 ], [ 67.5, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 70.61261424 ], [ 67.5, 72.39570571 ], [ 73.125, 72.39570571 ], [ 73.125, 70.61261424 ], [ 67.5, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 72.39570571 ], [ 67.5, 74.01954331 ], [ 73.125, 74.01954331 ], [ 73.125, 72.39570571 ], [ 67.5, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 48.92249926 ], [ 73.125, 52.48278022 ], [ 78.75, 52.48278022 ], [ 78.75, 48.92249926 ], [ 73.125, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 52.48278022 ], [ 73.125, 55.77657302 ], [ 78.75, 55.77657302 ], [ 78.75, 52.48278022 ], [ 73.125, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 55.77657302 ], [ 73.125, 58.81374172 ], [ 78.75, 58.81374172 ], [ 78.75, 55.77657302 ], [ 73.125, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 58.81374172 ], [ 73.125, 61.60639637 ], [ 78.75, 61.60639637 ], [ 78.75, 58.81374172 ], [ 73.125, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 61.60639637 ], [ 73.125, 64.1681069 ], [ 78.75, 64.1681069 ], [ 78.75, 61.60639637 ], [ 73.125, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 64.1681069 ], [ 73.125, 66.51326044 ], [ 78.75, 66.51326044 ], [ 78.75, 64.1681069 ], [ 73.125, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 66.51326044 ], [ 73.125, 68.65655498 ], [ 78.75, 68.65655498 ], [ 78.75, 66.51326044 ], [ 73.125, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 68.65655498 ], [ 73.125, 70.61261424 ], [ 78.75, 70.61261424 ], [ 78.75, 68.65655498 ], [ 73.125, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 70.61261424 ], [ 73.125, 72.39570571 ], [ 78.75, 72.39570571 ], [ 78.75, 70.61261424 ], [ 73.125, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 48.92249926 ], [ 78.75, 52.48278022 ], [ 84.375, 52.48278022 ], [ 84.375, 48.92249926 ], [ 78.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 52.48278022 ], [ 78.75, 55.77657302 ], [ 84.375, 55.77657302 ], [ 84.375, 52.48278022 ], [ 78.75, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 55.77657302 ], [ 78.75, 58.81374172 ], [ 84.375, 58.81374172 ], [ 84.375, 55.77657302 ], [ 78.75, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 58.81374172 ], [ 78.75, 61.60639637 ], [ 84.375, 61.60639637 ], [ 84.375, 58.81374172 ], [ 78.75, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 61.60639637 ], [ 78.75, 64.1681069 ], [ 84.375, 64.1681069 ], [ 84.375, 61.60639637 ], [ 78.75, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 64.1681069 ], [ 78.75, 66.51326044 ], [ 84.375, 66.51326044 ], [ 84.375, 64.1681069 ], [ 78.75, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 66.51326044 ], [ 78.75, 68.65655498 ], [ 84.375, 68.65655498 ], [ 84.375, 66.51326044 ], [ 78.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 68.65655498 ], [ 78.75, 70.61261424 ], [ 84.375, 70.61261424 ], [ 84.375, 68.65655498 ], [ 78.75, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 70.61261424 ], [ 78.75, 72.39570571 ], [ 84.375, 72.39570571 ], [ 84.375, 70.61261424 ], [ 78.75, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 72.39570571 ], [ 78.75, 74.01954331 ], [ 84.375, 74.01954331 ], [ 84.375, 72.39570571 ], [ 78.75, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 48.92249926 ], [ 84.375, 52.48278022 ], [ 90, 52.48278022 ], [ 90, 48.92249926 ], [ 84.375, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 52.48278022 ], [ 84.375, 55.77657302 ], [ 90, 55.77657302 ], [ 90, 52.48278022 ], [ 84.375, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 55.77657302 ], [ 84.375, 58.81374172 ], [ 90, 58.81374172 ], [ 90, 55.77657302 ], [ 84.375, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 58.81374172 ], [ 84.375, 61.60639637 ], [ 90, 61.60639637 ], [ 90, 58.81374172 ], [ 84.375, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 61.60639637 ], [ 84.375, 64.1681069 ], [ 90, 64.1681069 ], [ 90, 61.60639637 ], [ 84.375, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 64.1681069 ], [ 84.375, 66.51326044 ], [ 90, 66.51326044 ], [ 90, 64.1681069 ], [ 84.375, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 66.51326044 ], [ 84.375, 68.65655498 ], [ 90, 68.65655498 ], [ 90, 66.51326044 ], [ 84.375, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 68.65655498 ], [ 84.375, 70.61261424 ], [ 90, 70.61261424 ], [ 90, 68.65655498 ], [ 84.375, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 70.61261424 ], [ 84.375, 72.39570571 ], [ 90, 72.39570571 ], [ 90, 70.61261424 ], [ 84.375, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 72.39570571 ], [ 84.375, 74.01954331 ], [ 90, 74.01954331 ], [ 90, 72.39570571 ], [ 84.375, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 74.01954331 ], [ 84.375, 75.49715732 ], [ 90, 75.49715732 ], [ 90, 74.01954331 ], [ 84.375, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 48.92249926 ], [ 90, 52.48278022 ], [ 95.625, 52.48278022 ], [ 95.625, 48.92249926 ], [ 90, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 52.48278022 ], [ 90, 55.77657302 ], [ 95.625, 55.77657302 ], [ 95.625, 52.48278022 ], [ 90, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 55.77657302 ], [ 90, 58.81374172 ], [ 95.625, 58.81374172 ], [ 95.625, 55.77657302 ], [ 90, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 58.81374172 ], [ 90, 61.60639637 ], [ 95.625, 61.60639637 ], [ 95.625, 58.81374172 ], [ 90, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 61.60639637 ], [ 90, 64.1681069 ], [ 95.625, 64.1681069 ], [ 95.625, 61.60639637 ], [ 90, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 64.1681069 ], [ 90, 66.51326044 ], [ 95.625, 66.51326044 ], [ 95.625, 64.1681069 ], [ 90, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 66.51326044 ], [ 90, 68.65655498 ], [ 95.625, 68.65655498 ], [ 95.625, 66.51326044 ], [ 90, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 68.65655498 ], [ 90, 70.61261424 ], [ 95.625, 70.61261424 ], [ 95.625, 68.65655498 ], [ 90, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 70.61261424 ], [ 90, 72.39570571 ], [ 95.625, 72.39570571 ], [ 95.625, 70.61261424 ], [ 90, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 72.39570571 ], [ 90, 74.01954331 ], [ 95.625, 74.01954331 ], [ 95.625, 72.39570571 ], [ 90, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 74.01954331 ], [ 90, 75.49715732 ], [ 95.625, 75.49715732 ], [ 95.625, 74.01954331 ], [ 90, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 75.49715732 ], [ 90, 76.84081641 ], [ 95.625, 76.84081641 ], [ 95.625, 75.49715732 ], [ 90, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 48.92249926 ], [ 95.625, 52.48278022 ], [ 101.25, 52.48278022 ], [ 101.25, 48.92249926 ], [ 95.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 52.48278022 ], [ 95.625, 55.77657302 ], [ 101.25, 55.77657302 ], [ 101.25, 52.48278022 ], [ 95.625, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 55.77657302 ], [ 95.625, 58.81374172 ], [ 101.25, 58.81374172 ], [ 101.25, 55.77657302 ], [ 95.625, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 58.81374172 ], [ 95.625, 61.60639637 ], [ 101.25, 61.60639637 ], [ 101.25, 58.81374172 ], [ 95.625, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 61.60639637 ], [ 95.625, 64.1681069 ], [ 101.25, 64.1681069 ], [ 101.25, 61.60639637 ], [ 95.625, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 64.1681069 ], [ 95.625, 66.51326044 ], [ 101.25, 66.51326044 ], [ 101.25, 64.1681069 ], [ 95.625, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 66.51326044 ], [ 95.625, 68.65655498 ], [ 101.25, 68.65655498 ], [ 101.25, 66.51326044 ], [ 95.625, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 68.65655498 ], [ 95.625, 70.61261424 ], [ 101.25, 70.61261424 ], [ 101.25, 68.65655498 ], [ 95.625, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 70.61261424 ], [ 95.625, 72.39570571 ], [ 101.25, 72.39570571 ], [ 101.25, 70.61261424 ], [ 95.625, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 72.39570571 ], [ 95.625, 74.01954331 ], [ 101.25, 74.01954331 ], [ 101.25, 72.39570571 ], [ 95.625, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 74.01954331 ], [ 95.625, 75.49715732 ], [ 101.25, 75.49715732 ], [ 101.25, 74.01954331 ], [ 95.625, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 75.49715732 ], [ 95.625, 76.84081641 ], [ 101.25, 76.84081641 ], [ 101.25, 75.49715732 ], [ 95.625, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 76.84081641 ], [ 95.625, 78.06198919 ], [ 101.25, 78.06198919 ], [ 101.25, 76.84081641 ], [ 95.625, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.30078125, 56.36525014 ], [ 30.05859375, 55.77657302 ], [ 32.34375, 53.54030739 ], [ 30.76171875, 53.12040528 ], [ 31.11328125, 52.16045456 ], [ 34.8046875, 52.16045456 ], [ 39.19921875, 49.83798245 ], [ 40.60546875, 49.83798245 ], [ 38.3203125, 47.98992167 ], [ 35.68359375, 43.58039086 ], [ 40.078125, 43.83452678 ], [ 43.59375, 43.83452678 ], [ 44.6484375, 42.55308029 ], [ 48.33984375, 41.11246879 ], [ 46.93359375, 44.96479793 ], [ 48.69140625, 46.4378569 ], [ 48.8671875, 47.75409798 ], [ 46.93359375, 50.17689812 ], [ 50.625, 51.39920565 ], [ 52.734375, 51.39920565 ], [ 55.01953125, 50.62507306 ], [ 59.0625, 50.95842672 ], [ 61.69921875, 50.95842672 ], [ 61.171875, 51.61801655 ], [ 59.58984375, 52.16045456 ], [ 61.171875, 53.33087298 ], [ 61.5234375, 54.26522408 ], [ 63.80859375, 54.26522408 ], [ 68.02734375, 55.17886766 ], [ 70.13671875, 55.27911529 ], [ 73.125, 53.33087298 ], [ 75.41015625, 54.16243397 ], [ 76.81640625, 53.7487108 ], [ 78.3984375, 52.05249048 ], [ 80.5078125, 51.17934298 ], [ 82.96875, 51.17934298 ], [ 85.078125, 49.03786795 ], [ 87.36328125, 49.72447919 ], [ 89.47265625, 49.72447919 ], [ 92.109375, 50.28933925 ], [ 94.5703125, 50.28933925 ], [ 96.15234375, 50.28933925 ], [ 97.91015625, 49.72447919 ], [ 98.26171875, 51.2894059 ], [ 99.4921875, 52.26815737 ], [ 102.3046875, 50.95842672 ], [ 103.0078125, 49.95121991 ], [ 105.8203125, 50.84757295 ], [ 106.5234375, 49.83798245 ], [ 110.0390625, 49.83798245 ], [ 111.97265625, 49.49667453 ], [ 116.3671875, 50.28933925 ], [ 120.05859375, 51.61801655 ], [ 120.234375, 53.12040528 ], [ 122.87109375, 53.54030739 ], [ 126.2109375, 52.48278022 ], [ 126.9140625, 50.51342653 ], [ 130.78125, 48.45835188 ], [ 131.8359375, 47.63578359 ], [ 134.82421875, 48.45835188 ], [ 132.5390625, 45.95114969 ], [ 130.4296875, 44.71551373 ], [ 131.484375, 41.90227704 ], [ 133.76953125, 42.94033923 ], [ 141.15234375, 51.06901666 ], [ 140.2734375, 53.7487108 ], [ 136.0546875, 54.87660665 ], [ 137.98828125, 56.65622649 ], [ 140.625, 58.17070248 ], [ 142.20703125, 59.4450751 ], [ 145.8984375, 59.4450751 ], [ 149.0625, 59.71209717 ], [ 152.05078125, 59.26588063 ], [ 153.10546875, 59.08573857 ], [ 155.56640625, 59.08573857 ], [ 154.51171875, 59.71209717 ], [ 156.26953125, 61.10078883 ], [ 158.73046875, 61.93895043 ], [ 159.78515625, 61.60639637 ], [ 159.78515625, 60.9304322 ], [ 161.54296875, 60.9304322 ], [ 163.65234375, 62.43107423 ], [ 163.65234375, 61.27023279 ], [ 161.015625, 60.15244221 ], [ 158.02734375, 58.07787627 ], [ 155.56640625, 56.75272287 ], [ 155.390625, 55.37911045 ], [ 155.390625, 53.12040528 ], [ 156.62109375, 52.16045456 ], [ 156.796875, 51.61801655 ], [ 159.43359375, 53.01478325 ], [ 160.6640625, 54.47003761 ], [ 162.24609375, 55.47885346 ], [ 162.59765625, 57.04072984 ], [ 162.59765625, 58.35563036 ], [ 164.00390625, 59.71209717 ], [ 165.9375, 60.32694774 ], [ 167.6953125, 60.58696734 ], [ 170.15625, 60.15244221 ], [ 173.3203125, 61.60639637 ], [ 176.8359375, 62.67414335 ], [ 178.9453125, 62.59334083 ], [ 179.296875, 63.31268278 ], [ 176.484375, 64.84893726 ], [ 179.82421875, 65.14611485 ], [ 180, 66.08936427 ], [ 182.8125, 65.58572002 ], [ 184.5703125, 64.84893726 ], [ 186.328125, 64.24459477 ], [ 187.91015625, 64.9979392 ], [ 189.4921875, 65.73062649 ], [ 190.546875, 66.58321726 ], [ 187.3828125, 67.06743335 ], [ 185.09765625, 67.06743335 ], [ 183.69140625, 68.07330474 ], [ 181.58203125, 68.78414378 ], [ 177.36328125, 69.47296854 ], [ 174.375, 69.77895178 ], [ 170.5078125, 69.96043927 ], [ 170.5078125, 69.22499685 ], [ 170.5078125, 68.78414378 ], [ 167.34375, 69.47296854 ], [ 165.234375, 69.47296854 ], [ 161.54296875, 69.65708627 ], [ 160.83984375, 69.16255791 ], [ 159.2578125, 69.83962194 ], [ 159.78515625, 70.55417854 ], [ 152.2265625, 71.13098771 ], [ 149.0625, 72.07391149 ], [ 145.72265625, 72.34246439 ], [ 140.9765625, 72.71190311 ], [ 139.04296875, 71.85622888 ], [ 134.47265625, 71.69129272 ], [ 130.95703125, 71.69129272 ], [ 129.0234375, 70.67088107 ], [ 126.9140625, 72.5544985 ], [ 126.73828125, 73.52839949 ], [ 123.57421875, 73.52839949 ], [ 122.16796875, 72.97118902 ], [ 120.41015625, 72.97118902 ], [ 118.4765625, 73.47848508 ], [ 113.203125, 73.82482035 ], [ 108.6328125, 73.52839949 ], [ 106.875, 73.7265947 ], [ 109.16015625, 74.35482803 ], [ 112.8515625, 75.00494001 ], [ 112.8515625, 76.10079607 ], [ 110.56640625, 76.59854507 ], [ 107.75390625, 76.59854507 ], [ 106.34765625, 77.0787839 ], [ 105.64453125, 77.57995914 ], [ 102.12890625, 77.57995914 ], [ 101.07421875, 76.92061352 ], [ 99.31640625, 76.18499546 ], [ 91.7578125, 75.88809075 ], [ 90.17578125, 75.36450565 ], [ 87.01171875, 74.59010801 ], [ 86.484375, 74.16408547 ], [ 86.30859375, 73.92246885 ], [ 83.84765625, 73.82482035 ], [ 78.92578125, 73.67726448 ], [ 80.33203125, 73.07384351 ], [ 80.859375, 72.2890672 ], [ 82.96875, 71.91088788 ], [ 79.62890625, 71.91088788 ], [ 78.046875, 72.12793628 ], [ 75.05859375, 71.5805318 ], [ 72.421875, 71.63599288 ], [ 72.0703125, 72.6071204 ], [ 69.43359375, 72.71190311 ], [ 68.37890625, 71.63599288 ], [ 67.1484375, 70.61261424 ], [ 66.97265625, 69.22499685 ], [ 69.9609375, 68.78414378 ], [ 68.203125, 68.33437594 ], [ 64.3359375, 68.72044057 ], [ 63.28125, 69.65708627 ], [ 61.171875, 69.65708627 ], [ 59.765625, 68.52823492 ], [ 55.8984375, 68.65655498 ], [ 51.15234375, 68.65655498 ], [ 47.98828125, 68.00757102 ], [ 47.109375, 67.13582939 ], [ 42.71484375, 67.06743335 ], [ 40.4296875, 65.58572002 ], [ 36.73828125, 64.92354174 ], [ 34.98046875, 65.44000166 ], [ 33.57421875, 66.6529774 ], [ 36.73828125, 66.16051056 ], [ 41.66015625, 66.58321726 ], [ 39.19921875, 67.47492238 ], [ 35.68359375, 68.13885165 ], [ 32.6953125, 69.22499685 ], [ 29.70703125, 69.41124236 ], [ 29.70703125, 68.46379956 ], [ 29.70703125, 64.6238772 ], [ 31.640625, 63.70472243 ], [ 30.234375, 61.43876749 ], [ 28.125, 60.23981117 ], [ 27.24609375, 58.17070248 ], [ 28.30078125, 56.36525014 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/small_poly.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ -79.9365234375, 32.77212032198862 ], [ -79.9306869506836, 32.77212032198862 ], [ -79.9306869506836, 32.776811185047144 ], [ -79.9365234375, 32.776811185047144 ], [ -79.9365234375, 32.77212032198862 ] ] ] } ================================================ FILE: test/fixtures/small_poly_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.15625, 32.54681317 ], [ -80.15625, 32.84267363 ], [ -79.8046875, 32.84267363 ], [ -79.8046875, 32.54681317 ], [ -80.15625, 32.54681317 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.93652344, 32.77212032 ], [ -79.93068695, 32.77212032 ], [ -79.93068695, 32.77681119 ], [ -79.93652344, 32.77681119 ], [ -79.93652344, 32.77212032 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/spiked.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ 16.611328125, 8.667918002363134 ], [ 13.447265624999998, 3.381823735328289 ], [ 15.3369140625, -6.0968598188879355 ], [ 16.7431640625, 1.0546279422758869 ], [ 18.193359375, -10.314919285813147 ], [ 19.248046875, -1.4061088354351468 ], [ 20.698242187499996, -4.565473550710278 ], [ 22.587890625, 0.3515602939922709 ], [ 24.2138671875, -11.73830237143684 ], [ 29.091796875, 5.003394345022162 ], [ 26.4990234375, 9.752370139173285 ], [ 26.0595703125, 7.623886853120036 ], [ 24.9169921875, 9.44906182688142 ], [ 22.587890625, 6.751896464843375 ], [ 21.665039062499996, 12.597454504832017 ], [ 20.9619140625, 8.189742344383703 ], [ 18.193359375, 14.3069694978258 ], [ 16.611328125, 8.667918002363134 ] ] ] } ================================================ FILE: test/fixtures/spiked_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 1.75753681 ], [ 13.359375, 2.10889866 ], [ 13.7109375, 2.10889866 ], [ 13.7109375, 1.75753681 ], [ 13.359375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 2.10889866 ], [ 13.359375, 2.46018118 ], [ 13.7109375, 2.46018118 ], [ 13.7109375, 2.10889866 ], [ 13.359375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 2.46018118 ], [ 13.359375, 2.81137119 ], [ 13.7109375, 2.81137119 ], [ 13.7109375, 2.46018118 ], [ 13.359375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 2.81137119 ], [ 13.359375, 3.16245553 ], [ 13.7109375, 3.16245553 ], [ 13.7109375, 2.81137119 ], [ 13.359375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 3.16245553 ], [ 13.359375, 3.51342105 ], [ 13.7109375, 3.51342105 ], [ 13.7109375, 3.16245553 ], [ 13.359375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 3.51342105 ], [ 13.359375, 3.86425462 ], [ 13.7109375, 3.86425462 ], [ 13.7109375, 3.51342105 ], [ 13.359375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 0 ], [ 13.7109375, 0.35156029 ], [ 14.0625, 0.35156029 ], [ 14.0625, 0 ], [ 13.7109375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 0.35156029 ], [ 13.7109375, 0.70310735 ], [ 14.0625, 0.70310735 ], [ 14.0625, 0.35156029 ], [ 13.7109375, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 0.70310735 ], [ 13.7109375, 1.05462794 ], [ 14.0625, 1.05462794 ], [ 14.0625, 0.70310735 ], [ 13.7109375, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 1.05462794 ], [ 13.7109375, 1.40610884 ], [ 14.0625, 1.40610884 ], [ 14.0625, 1.05462794 ], [ 13.7109375, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 1.40610884 ], [ 13.7109375, 1.75753681 ], [ 14.0625, 1.75753681 ], [ 14.0625, 1.40610884 ], [ 13.7109375, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 1.75753681 ], [ 13.7109375, 2.10889866 ], [ 14.0625, 2.10889866 ], [ 14.0625, 1.75753681 ], [ 13.7109375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 2.10889866 ], [ 13.7109375, 2.46018118 ], [ 14.0625, 2.46018118 ], [ 14.0625, 2.10889866 ], [ 13.7109375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 2.46018118 ], [ 13.7109375, 2.81137119 ], [ 14.0625, 2.81137119 ], [ 14.0625, 2.46018118 ], [ 13.7109375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 2.81137119 ], [ 13.7109375, 3.16245553 ], [ 14.0625, 3.16245553 ], [ 14.0625, 2.81137119 ], [ 13.7109375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 3.16245553 ], [ 13.7109375, 3.51342105 ], [ 14.0625, 3.51342105 ], [ 14.0625, 3.16245553 ], [ 13.7109375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 3.51342105 ], [ 13.7109375, 3.86425462 ], [ 14.0625, 3.86425462 ], [ 14.0625, 3.51342105 ], [ 13.7109375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 3.86425462 ], [ 13.7109375, 4.21494314 ], [ 14.0625, 4.21494314 ], [ 14.0625, 3.86425462 ], [ 13.7109375, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.7109375, 4.21494314 ], [ 13.7109375, 4.56547355 ], [ 14.0625, 4.56547355 ], [ 14.0625, 4.21494314 ], [ 13.7109375, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, -0.35156029 ], [ 14.0625, 0 ], [ 14.4140625, 0 ], [ 14.4140625, -0.35156029 ], [ 14.0625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, -0.70310735 ], [ 14.0625, -0.35156029 ], [ 14.4140625, -0.35156029 ], [ 14.4140625, -0.70310735 ], [ 14.0625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, -1.05462794 ], [ 14.0625, -0.70310735 ], [ 14.4140625, -0.70310735 ], [ 14.4140625, -1.05462794 ], [ 14.0625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, -1.40610884 ], [ 14.0625, -1.05462794 ], [ 14.4140625, -1.05462794 ], [ 14.4140625, -1.40610884 ], [ 14.0625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, -1.75753681 ], [ 14.0625, -1.40610884 ], [ 14.4140625, -1.40610884 ], [ 14.4140625, -1.75753681 ], [ 14.0625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 0 ], [ 14.0625, 0.35156029 ], [ 14.4140625, 0.35156029 ], [ 14.4140625, 0 ], [ 14.0625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 0.35156029 ], [ 14.0625, 0.70310735 ], [ 14.4140625, 0.70310735 ], [ 14.4140625, 0.35156029 ], [ 14.0625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 0.70310735 ], [ 14.0625, 1.05462794 ], [ 14.4140625, 1.05462794 ], [ 14.4140625, 0.70310735 ], [ 14.0625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 1.05462794 ], [ 14.0625, 1.40610884 ], [ 14.4140625, 1.40610884 ], [ 14.4140625, 1.05462794 ], [ 14.0625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 1.40610884 ], [ 14.0625, 1.75753681 ], [ 14.4140625, 1.75753681 ], [ 14.4140625, 1.40610884 ], [ 14.0625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 1.75753681 ], [ 14.0625, 2.10889866 ], [ 14.4140625, 2.10889866 ], [ 14.4140625, 1.75753681 ], [ 14.0625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 2.10889866 ], [ 14.0625, 2.46018118 ], [ 14.4140625, 2.46018118 ], [ 14.4140625, 2.10889866 ], [ 14.0625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 2.46018118 ], [ 14.0625, 2.81137119 ], [ 14.4140625, 2.81137119 ], [ 14.4140625, 2.46018118 ], [ 14.0625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 2.81137119 ], [ 14.0625, 3.16245553 ], [ 14.4140625, 3.16245553 ], [ 14.4140625, 2.81137119 ], [ 14.0625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 3.16245553 ], [ 14.0625, 3.51342105 ], [ 14.4140625, 3.51342105 ], [ 14.4140625, 3.16245553 ], [ 14.0625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 3.51342105 ], [ 14.0625, 3.86425462 ], [ 14.4140625, 3.86425462 ], [ 14.4140625, 3.51342105 ], [ 14.0625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 3.86425462 ], [ 14.0625, 4.21494314 ], [ 14.4140625, 4.21494314 ], [ 14.4140625, 3.86425462 ], [ 14.0625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 4.21494314 ], [ 14.0625, 4.56547355 ], [ 14.4140625, 4.56547355 ], [ 14.4140625, 4.21494314 ], [ 14.0625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 4.56547355 ], [ 14.0625, 4.9158328 ], [ 14.4140625, 4.9158328 ], [ 14.4140625, 4.56547355 ], [ 14.0625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0625, 4.9158328 ], [ 14.0625, 5.26600788 ], [ 14.4140625, 5.26600788 ], [ 14.4140625, 4.9158328 ], [ 14.0625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -0.35156029 ], [ 14.4140625, 0 ], [ 14.765625, 0 ], [ 14.765625, -0.35156029 ], [ 14.4140625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -0.70310735 ], [ 14.4140625, -0.35156029 ], [ 14.765625, -0.35156029 ], [ 14.765625, -0.70310735 ], [ 14.4140625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -1.05462794 ], [ 14.4140625, -0.70310735 ], [ 14.765625, -0.70310735 ], [ 14.765625, -1.05462794 ], [ 14.4140625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -1.40610884 ], [ 14.4140625, -1.05462794 ], [ 14.765625, -1.05462794 ], [ 14.765625, -1.40610884 ], [ 14.4140625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -1.75753681 ], [ 14.4140625, -1.40610884 ], [ 14.765625, -1.40610884 ], [ 14.765625, -1.75753681 ], [ 14.4140625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -2.10889866 ], [ 14.4140625, -1.75753681 ], [ 14.765625, -1.75753681 ], [ 14.765625, -2.10889866 ], [ 14.4140625, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -2.46018118 ], [ 14.4140625, -2.10889866 ], [ 14.765625, -2.10889866 ], [ 14.765625, -2.46018118 ], [ 14.4140625, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -2.81137119 ], [ 14.4140625, -2.46018118 ], [ 14.765625, -2.46018118 ], [ 14.765625, -2.81137119 ], [ 14.4140625, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -3.16245553 ], [ 14.4140625, -2.81137119 ], [ 14.765625, -2.81137119 ], [ 14.765625, -3.16245553 ], [ 14.4140625, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, -3.51342105 ], [ 14.4140625, -3.16245553 ], [ 14.765625, -3.16245553 ], [ 14.765625, -3.51342105 ], [ 14.4140625, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 0 ], [ 14.4140625, 0.35156029 ], [ 14.765625, 0.35156029 ], [ 14.765625, 0 ], [ 14.4140625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 0.35156029 ], [ 14.4140625, 0.70310735 ], [ 14.765625, 0.70310735 ], [ 14.765625, 0.35156029 ], [ 14.4140625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 0.70310735 ], [ 14.4140625, 1.05462794 ], [ 14.765625, 1.05462794 ], [ 14.765625, 0.70310735 ], [ 14.4140625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 1.05462794 ], [ 14.4140625, 1.40610884 ], [ 14.765625, 1.40610884 ], [ 14.765625, 1.05462794 ], [ 14.4140625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 1.40610884 ], [ 14.4140625, 1.75753681 ], [ 14.765625, 1.75753681 ], [ 14.765625, 1.40610884 ], [ 14.4140625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 1.75753681 ], [ 14.4140625, 2.10889866 ], [ 14.765625, 2.10889866 ], [ 14.765625, 1.75753681 ], [ 14.4140625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 2.10889866 ], [ 14.4140625, 2.46018118 ], [ 14.765625, 2.46018118 ], [ 14.765625, 2.10889866 ], [ 14.4140625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 2.46018118 ], [ 14.4140625, 2.81137119 ], [ 14.765625, 2.81137119 ], [ 14.765625, 2.46018118 ], [ 14.4140625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 2.81137119 ], [ 14.4140625, 3.16245553 ], [ 14.765625, 3.16245553 ], [ 14.765625, 2.81137119 ], [ 14.4140625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 3.16245553 ], [ 14.4140625, 3.51342105 ], [ 14.765625, 3.51342105 ], [ 14.765625, 3.16245553 ], [ 14.4140625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 3.51342105 ], [ 14.4140625, 3.86425462 ], [ 14.765625, 3.86425462 ], [ 14.765625, 3.51342105 ], [ 14.4140625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 3.86425462 ], [ 14.4140625, 4.21494314 ], [ 14.765625, 4.21494314 ], [ 14.765625, 3.86425462 ], [ 14.4140625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 4.21494314 ], [ 14.4140625, 4.56547355 ], [ 14.765625, 4.56547355 ], [ 14.765625, 4.21494314 ], [ 14.4140625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 4.56547355 ], [ 14.4140625, 4.9158328 ], [ 14.765625, 4.9158328 ], [ 14.765625, 4.56547355 ], [ 14.4140625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 4.9158328 ], [ 14.4140625, 5.26600788 ], [ 14.765625, 5.26600788 ], [ 14.765625, 4.9158328 ], [ 14.4140625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4140625, 5.26600788 ], [ 14.4140625, 5.61598582 ], [ 14.765625, 5.61598582 ], [ 14.765625, 5.26600788 ], [ 14.4140625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -0.35156029 ], [ 14.765625, 0 ], [ 15.1171875, 0 ], [ 15.1171875, -0.35156029 ], [ 14.765625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -0.70310735 ], [ 14.765625, -0.35156029 ], [ 15.1171875, -0.35156029 ], [ 15.1171875, -0.70310735 ], [ 14.765625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -1.05462794 ], [ 14.765625, -0.70310735 ], [ 15.1171875, -0.70310735 ], [ 15.1171875, -1.05462794 ], [ 14.765625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -1.40610884 ], [ 14.765625, -1.05462794 ], [ 15.1171875, -1.05462794 ], [ 15.1171875, -1.40610884 ], [ 14.765625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -1.75753681 ], [ 14.765625, -1.40610884 ], [ 15.1171875, -1.40610884 ], [ 15.1171875, -1.75753681 ], [ 14.765625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -2.10889866 ], [ 14.765625, -1.75753681 ], [ 15.1171875, -1.75753681 ], [ 15.1171875, -2.10889866 ], [ 14.765625, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -2.46018118 ], [ 14.765625, -2.10889866 ], [ 15.1171875, -2.10889866 ], [ 15.1171875, -2.46018118 ], [ 14.765625, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -2.81137119 ], [ 14.765625, -2.46018118 ], [ 15.1171875, -2.46018118 ], [ 15.1171875, -2.81137119 ], [ 14.765625, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -3.16245553 ], [ 14.765625, -2.81137119 ], [ 15.1171875, -2.81137119 ], [ 15.1171875, -3.16245553 ], [ 14.765625, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -3.51342105 ], [ 14.765625, -3.16245553 ], [ 15.1171875, -3.16245553 ], [ 15.1171875, -3.51342105 ], [ 14.765625, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -3.86425462 ], [ 14.765625, -3.51342105 ], [ 15.1171875, -3.51342105 ], [ 15.1171875, -3.86425462 ], [ 14.765625, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -4.21494314 ], [ 14.765625, -3.86425462 ], [ 15.1171875, -3.86425462 ], [ 15.1171875, -4.21494314 ], [ 14.765625, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -4.56547355 ], [ 14.765625, -4.21494314 ], [ 15.1171875, -4.21494314 ], [ 15.1171875, -4.56547355 ], [ 14.765625, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -4.9158328 ], [ 14.765625, -4.56547355 ], [ 15.1171875, -4.56547355 ], [ 15.1171875, -4.9158328 ], [ 14.765625, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, -5.26600788 ], [ 14.765625, -4.9158328 ], [ 15.1171875, -4.9158328 ], [ 15.1171875, -5.26600788 ], [ 14.765625, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 0 ], [ 14.765625, 0.35156029 ], [ 15.1171875, 0.35156029 ], [ 15.1171875, 0 ], [ 14.765625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 0.35156029 ], [ 14.765625, 0.70310735 ], [ 15.1171875, 0.70310735 ], [ 15.1171875, 0.35156029 ], [ 14.765625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 0.70310735 ], [ 14.765625, 1.05462794 ], [ 15.1171875, 1.05462794 ], [ 15.1171875, 0.70310735 ], [ 14.765625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 1.05462794 ], [ 14.765625, 1.40610884 ], [ 15.1171875, 1.40610884 ], [ 15.1171875, 1.05462794 ], [ 14.765625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 1.40610884 ], [ 14.765625, 1.75753681 ], [ 15.1171875, 1.75753681 ], [ 15.1171875, 1.40610884 ], [ 14.765625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 1.75753681 ], [ 14.765625, 2.10889866 ], [ 15.1171875, 2.10889866 ], [ 15.1171875, 1.75753681 ], [ 14.765625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 2.10889866 ], [ 14.765625, 2.46018118 ], [ 15.1171875, 2.46018118 ], [ 15.1171875, 2.10889866 ], [ 14.765625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 2.46018118 ], [ 14.765625, 2.81137119 ], [ 15.1171875, 2.81137119 ], [ 15.1171875, 2.46018118 ], [ 14.765625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 2.81137119 ], [ 14.765625, 3.16245553 ], [ 15.1171875, 3.16245553 ], [ 15.1171875, 2.81137119 ], [ 14.765625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 3.16245553 ], [ 14.765625, 3.51342105 ], [ 15.1171875, 3.51342105 ], [ 15.1171875, 3.16245553 ], [ 14.765625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 3.51342105 ], [ 14.765625, 3.86425462 ], [ 15.1171875, 3.86425462 ], [ 15.1171875, 3.51342105 ], [ 14.765625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 3.86425462 ], [ 14.765625, 4.21494314 ], [ 15.1171875, 4.21494314 ], [ 15.1171875, 3.86425462 ], [ 14.765625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 4.21494314 ], [ 14.765625, 4.56547355 ], [ 15.1171875, 4.56547355 ], [ 15.1171875, 4.21494314 ], [ 14.765625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 4.56547355 ], [ 14.765625, 4.9158328 ], [ 15.1171875, 4.9158328 ], [ 15.1171875, 4.56547355 ], [ 14.765625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 4.9158328 ], [ 14.765625, 5.26600788 ], [ 15.1171875, 5.26600788 ], [ 15.1171875, 4.9158328 ], [ 14.765625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 5.26600788 ], [ 14.765625, 5.61598582 ], [ 15.1171875, 5.61598582 ], [ 15.1171875, 5.26600788 ], [ 14.765625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 5.61598582 ], [ 14.765625, 5.96575367 ], [ 15.1171875, 5.96575367 ], [ 15.1171875, 5.61598582 ], [ 14.765625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 5.96575367 ], [ 14.765625, 6.31529854 ], [ 15.1171875, 6.31529854 ], [ 15.1171875, 5.96575367 ], [ 14.765625, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -0.35156029 ], [ 15.1171875, 0 ], [ 15.46875, 0 ], [ 15.46875, -0.35156029 ], [ 15.1171875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -0.70310735 ], [ 15.1171875, -0.35156029 ], [ 15.46875, -0.35156029 ], [ 15.46875, -0.70310735 ], [ 15.1171875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -1.05462794 ], [ 15.1171875, -0.70310735 ], [ 15.46875, -0.70310735 ], [ 15.46875, -1.05462794 ], [ 15.1171875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -1.40610884 ], [ 15.1171875, -1.05462794 ], [ 15.46875, -1.05462794 ], [ 15.46875, -1.40610884 ], [ 15.1171875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -1.75753681 ], [ 15.1171875, -1.40610884 ], [ 15.46875, -1.40610884 ], [ 15.46875, -1.75753681 ], [ 15.1171875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -2.10889866 ], [ 15.1171875, -1.75753681 ], [ 15.46875, -1.75753681 ], [ 15.46875, -2.10889866 ], [ 15.1171875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -2.46018118 ], [ 15.1171875, -2.10889866 ], [ 15.46875, -2.10889866 ], [ 15.46875, -2.46018118 ], [ 15.1171875, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -2.81137119 ], [ 15.1171875, -2.46018118 ], [ 15.46875, -2.46018118 ], [ 15.46875, -2.81137119 ], [ 15.1171875, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -3.16245553 ], [ 15.1171875, -2.81137119 ], [ 15.46875, -2.81137119 ], [ 15.46875, -3.16245553 ], [ 15.1171875, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -3.51342105 ], [ 15.1171875, -3.16245553 ], [ 15.46875, -3.16245553 ], [ 15.46875, -3.51342105 ], [ 15.1171875, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -3.86425462 ], [ 15.1171875, -3.51342105 ], [ 15.46875, -3.51342105 ], [ 15.46875, -3.86425462 ], [ 15.1171875, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -4.21494314 ], [ 15.1171875, -3.86425462 ], [ 15.46875, -3.86425462 ], [ 15.46875, -4.21494314 ], [ 15.1171875, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -4.56547355 ], [ 15.1171875, -4.21494314 ], [ 15.46875, -4.21494314 ], [ 15.46875, -4.56547355 ], [ 15.1171875, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -4.9158328 ], [ 15.1171875, -4.56547355 ], [ 15.46875, -4.56547355 ], [ 15.46875, -4.9158328 ], [ 15.1171875, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -5.26600788 ], [ 15.1171875, -4.9158328 ], [ 15.46875, -4.9158328 ], [ 15.46875, -5.26600788 ], [ 15.1171875, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -5.61598582 ], [ 15.1171875, -5.26600788 ], [ 15.46875, -5.26600788 ], [ 15.46875, -5.61598582 ], [ 15.1171875, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -5.96575367 ], [ 15.1171875, -5.61598582 ], [ 15.46875, -5.61598582 ], [ 15.46875, -5.96575367 ], [ 15.1171875, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, -6.31529854 ], [ 15.1171875, -5.96575367 ], [ 15.46875, -5.96575367 ], [ 15.46875, -6.31529854 ], [ 15.1171875, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 0 ], [ 15.1171875, 0.35156029 ], [ 15.46875, 0.35156029 ], [ 15.46875, 0 ], [ 15.1171875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 0.35156029 ], [ 15.1171875, 0.70310735 ], [ 15.46875, 0.70310735 ], [ 15.46875, 0.35156029 ], [ 15.1171875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 0.70310735 ], [ 15.1171875, 1.05462794 ], [ 15.46875, 1.05462794 ], [ 15.46875, 0.70310735 ], [ 15.1171875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 1.05462794 ], [ 15.1171875, 1.40610884 ], [ 15.46875, 1.40610884 ], [ 15.46875, 1.05462794 ], [ 15.1171875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 1.40610884 ], [ 15.1171875, 1.75753681 ], [ 15.46875, 1.75753681 ], [ 15.46875, 1.40610884 ], [ 15.1171875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 1.75753681 ], [ 15.1171875, 2.10889866 ], [ 15.46875, 2.10889866 ], [ 15.46875, 1.75753681 ], [ 15.1171875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 2.10889866 ], [ 15.1171875, 2.46018118 ], [ 15.46875, 2.46018118 ], [ 15.46875, 2.10889866 ], [ 15.1171875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 2.46018118 ], [ 15.1171875, 2.81137119 ], [ 15.46875, 2.81137119 ], [ 15.46875, 2.46018118 ], [ 15.1171875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 2.81137119 ], [ 15.1171875, 3.16245553 ], [ 15.46875, 3.16245553 ], [ 15.46875, 2.81137119 ], [ 15.1171875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 3.16245553 ], [ 15.1171875, 3.51342105 ], [ 15.46875, 3.51342105 ], [ 15.46875, 3.16245553 ], [ 15.1171875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 3.51342105 ], [ 15.1171875, 3.86425462 ], [ 15.46875, 3.86425462 ], [ 15.46875, 3.51342105 ], [ 15.1171875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 3.86425462 ], [ 15.1171875, 4.21494314 ], [ 15.46875, 4.21494314 ], [ 15.46875, 3.86425462 ], [ 15.1171875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 4.21494314 ], [ 15.1171875, 4.56547355 ], [ 15.46875, 4.56547355 ], [ 15.46875, 4.21494314 ], [ 15.1171875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 4.56547355 ], [ 15.1171875, 4.9158328 ], [ 15.46875, 4.9158328 ], [ 15.46875, 4.56547355 ], [ 15.1171875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 4.9158328 ], [ 15.1171875, 5.26600788 ], [ 15.46875, 5.26600788 ], [ 15.46875, 4.9158328 ], [ 15.1171875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 5.26600788 ], [ 15.1171875, 5.61598582 ], [ 15.46875, 5.61598582 ], [ 15.46875, 5.26600788 ], [ 15.1171875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 5.61598582 ], [ 15.1171875, 5.96575367 ], [ 15.46875, 5.96575367 ], [ 15.46875, 5.61598582 ], [ 15.1171875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 5.96575367 ], [ 15.1171875, 6.31529854 ], [ 15.46875, 6.31529854 ], [ 15.46875, 5.96575367 ], [ 15.1171875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 6.31529854 ], [ 15.1171875, 6.66460756 ], [ 15.46875, 6.66460756 ], [ 15.46875, 6.31529854 ], [ 15.1171875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.1171875, 6.66460756 ], [ 15.1171875, 7.01366793 ], [ 15.46875, 7.01366793 ], [ 15.46875, 6.66460756 ], [ 15.1171875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -0.35156029 ], [ 15.46875, 0 ], [ 15.8203125, 0 ], [ 15.8203125, -0.35156029 ], [ 15.46875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -0.70310735 ], [ 15.46875, -0.35156029 ], [ 15.8203125, -0.35156029 ], [ 15.8203125, -0.70310735 ], [ 15.46875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -1.05462794 ], [ 15.46875, -0.70310735 ], [ 15.8203125, -0.70310735 ], [ 15.8203125, -1.05462794 ], [ 15.46875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -1.40610884 ], [ 15.46875, -1.05462794 ], [ 15.8203125, -1.05462794 ], [ 15.8203125, -1.40610884 ], [ 15.46875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -1.75753681 ], [ 15.46875, -1.40610884 ], [ 15.8203125, -1.40610884 ], [ 15.8203125, -1.75753681 ], [ 15.46875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -2.10889866 ], [ 15.46875, -1.75753681 ], [ 15.8203125, -1.75753681 ], [ 15.8203125, -2.10889866 ], [ 15.46875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -2.46018118 ], [ 15.46875, -2.10889866 ], [ 15.8203125, -2.10889866 ], [ 15.8203125, -2.46018118 ], [ 15.46875, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -2.81137119 ], [ 15.46875, -2.46018118 ], [ 15.8203125, -2.46018118 ], [ 15.8203125, -2.81137119 ], [ 15.46875, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -3.16245553 ], [ 15.46875, -2.81137119 ], [ 15.8203125, -2.81137119 ], [ 15.8203125, -3.16245553 ], [ 15.46875, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -3.51342105 ], [ 15.46875, -3.16245553 ], [ 15.8203125, -3.16245553 ], [ 15.8203125, -3.51342105 ], [ 15.46875, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -3.86425462 ], [ 15.46875, -3.51342105 ], [ 15.8203125, -3.51342105 ], [ 15.8203125, -3.86425462 ], [ 15.46875, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -4.21494314 ], [ 15.46875, -3.86425462 ], [ 15.8203125, -3.86425462 ], [ 15.8203125, -4.21494314 ], [ 15.46875, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -4.56547355 ], [ 15.46875, -4.21494314 ], [ 15.8203125, -4.21494314 ], [ 15.8203125, -4.56547355 ], [ 15.46875, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -4.9158328 ], [ 15.46875, -4.56547355 ], [ 15.8203125, -4.56547355 ], [ 15.8203125, -4.9158328 ], [ 15.46875, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -5.26600788 ], [ 15.46875, -4.9158328 ], [ 15.8203125, -4.9158328 ], [ 15.8203125, -5.26600788 ], [ 15.46875, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, -5.61598582 ], [ 15.46875, -5.26600788 ], [ 15.8203125, -5.26600788 ], [ 15.8203125, -5.61598582 ], [ 15.46875, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 0 ], [ 15.46875, 0.35156029 ], [ 15.8203125, 0.35156029 ], [ 15.8203125, 0 ], [ 15.46875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 0.35156029 ], [ 15.46875, 0.70310735 ], [ 15.8203125, 0.70310735 ], [ 15.8203125, 0.35156029 ], [ 15.46875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 0.70310735 ], [ 15.46875, 1.05462794 ], [ 15.8203125, 1.05462794 ], [ 15.8203125, 0.70310735 ], [ 15.46875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 1.05462794 ], [ 15.46875, 1.40610884 ], [ 15.8203125, 1.40610884 ], [ 15.8203125, 1.05462794 ], [ 15.46875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 1.40610884 ], [ 15.46875, 1.75753681 ], [ 15.8203125, 1.75753681 ], [ 15.8203125, 1.40610884 ], [ 15.46875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 1.75753681 ], [ 15.46875, 2.10889866 ], [ 15.8203125, 2.10889866 ], [ 15.8203125, 1.75753681 ], [ 15.46875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 2.10889866 ], [ 15.46875, 2.46018118 ], [ 15.8203125, 2.46018118 ], [ 15.8203125, 2.10889866 ], [ 15.46875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 2.46018118 ], [ 15.46875, 2.81137119 ], [ 15.8203125, 2.81137119 ], [ 15.8203125, 2.46018118 ], [ 15.46875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 2.81137119 ], [ 15.46875, 3.16245553 ], [ 15.8203125, 3.16245553 ], [ 15.8203125, 2.81137119 ], [ 15.46875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 3.16245553 ], [ 15.46875, 3.51342105 ], [ 15.8203125, 3.51342105 ], [ 15.8203125, 3.16245553 ], [ 15.46875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 3.51342105 ], [ 15.46875, 3.86425462 ], [ 15.8203125, 3.86425462 ], [ 15.8203125, 3.51342105 ], [ 15.46875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 3.86425462 ], [ 15.46875, 4.21494314 ], [ 15.8203125, 4.21494314 ], [ 15.8203125, 3.86425462 ], [ 15.46875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 4.21494314 ], [ 15.46875, 4.56547355 ], [ 15.8203125, 4.56547355 ], [ 15.8203125, 4.21494314 ], [ 15.46875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 4.56547355 ], [ 15.46875, 4.9158328 ], [ 15.8203125, 4.9158328 ], [ 15.8203125, 4.56547355 ], [ 15.46875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 4.9158328 ], [ 15.46875, 5.26600788 ], [ 15.8203125, 5.26600788 ], [ 15.8203125, 4.9158328 ], [ 15.46875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 5.26600788 ], [ 15.46875, 5.61598582 ], [ 15.8203125, 5.61598582 ], [ 15.8203125, 5.26600788 ], [ 15.46875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 5.61598582 ], [ 15.46875, 5.96575367 ], [ 15.8203125, 5.96575367 ], [ 15.8203125, 5.61598582 ], [ 15.46875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 5.96575367 ], [ 15.46875, 6.31529854 ], [ 15.8203125, 6.31529854 ], [ 15.8203125, 5.96575367 ], [ 15.46875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 6.31529854 ], [ 15.46875, 6.66460756 ], [ 15.8203125, 6.66460756 ], [ 15.8203125, 6.31529854 ], [ 15.46875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 6.66460756 ], [ 15.46875, 7.01366793 ], [ 15.8203125, 7.01366793 ], [ 15.8203125, 6.66460756 ], [ 15.46875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.46875, 7.01366793 ], [ 15.46875, 7.36246687 ], [ 15.8203125, 7.36246687 ], [ 15.8203125, 7.01366793 ], [ 15.46875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -0.35156029 ], [ 15.8203125, 0 ], [ 16.171875, 0 ], [ 16.171875, -0.35156029 ], [ 15.8203125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -0.70310735 ], [ 15.8203125, -0.35156029 ], [ 16.171875, -0.35156029 ], [ 16.171875, -0.70310735 ], [ 15.8203125, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -1.05462794 ], [ 15.8203125, -0.70310735 ], [ 16.171875, -0.70310735 ], [ 16.171875, -1.05462794 ], [ 15.8203125, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -1.40610884 ], [ 15.8203125, -1.05462794 ], [ 16.171875, -1.05462794 ], [ 16.171875, -1.40610884 ], [ 15.8203125, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -1.75753681 ], [ 15.8203125, -1.40610884 ], [ 16.171875, -1.40610884 ], [ 16.171875, -1.75753681 ], [ 15.8203125, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -2.10889866 ], [ 15.8203125, -1.75753681 ], [ 16.171875, -1.75753681 ], [ 16.171875, -2.10889866 ], [ 15.8203125, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -2.46018118 ], [ 15.8203125, -2.10889866 ], [ 16.171875, -2.10889866 ], [ 16.171875, -2.46018118 ], [ 15.8203125, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -2.81137119 ], [ 15.8203125, -2.46018118 ], [ 16.171875, -2.46018118 ], [ 16.171875, -2.81137119 ], [ 15.8203125, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -3.16245553 ], [ 15.8203125, -2.81137119 ], [ 16.171875, -2.81137119 ], [ 16.171875, -3.16245553 ], [ 15.8203125, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -3.51342105 ], [ 15.8203125, -3.16245553 ], [ 16.171875, -3.16245553 ], [ 16.171875, -3.51342105 ], [ 15.8203125, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, -3.86425462 ], [ 15.8203125, -3.51342105 ], [ 16.171875, -3.51342105 ], [ 16.171875, -3.86425462 ], [ 15.8203125, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 0 ], [ 15.8203125, 0.35156029 ], [ 16.171875, 0.35156029 ], [ 16.171875, 0 ], [ 15.8203125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 0.35156029 ], [ 15.8203125, 0.70310735 ], [ 16.171875, 0.70310735 ], [ 16.171875, 0.35156029 ], [ 15.8203125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 0.70310735 ], [ 15.8203125, 1.05462794 ], [ 16.171875, 1.05462794 ], [ 16.171875, 0.70310735 ], [ 15.8203125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 1.05462794 ], [ 15.8203125, 1.40610884 ], [ 16.171875, 1.40610884 ], [ 16.171875, 1.05462794 ], [ 15.8203125, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 1.40610884 ], [ 15.8203125, 1.75753681 ], [ 16.171875, 1.75753681 ], [ 16.171875, 1.40610884 ], [ 15.8203125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 1.75753681 ], [ 15.8203125, 2.10889866 ], [ 16.171875, 2.10889866 ], [ 16.171875, 1.75753681 ], [ 15.8203125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 2.10889866 ], [ 15.8203125, 2.46018118 ], [ 16.171875, 2.46018118 ], [ 16.171875, 2.10889866 ], [ 15.8203125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 2.46018118 ], [ 15.8203125, 2.81137119 ], [ 16.171875, 2.81137119 ], [ 16.171875, 2.46018118 ], [ 15.8203125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 2.81137119 ], [ 15.8203125, 3.16245553 ], [ 16.171875, 3.16245553 ], [ 16.171875, 2.81137119 ], [ 15.8203125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 3.16245553 ], [ 15.8203125, 3.51342105 ], [ 16.171875, 3.51342105 ], [ 16.171875, 3.16245553 ], [ 15.8203125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 3.51342105 ], [ 15.8203125, 3.86425462 ], [ 16.171875, 3.86425462 ], [ 16.171875, 3.51342105 ], [ 15.8203125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 3.86425462 ], [ 15.8203125, 4.21494314 ], [ 16.171875, 4.21494314 ], [ 16.171875, 3.86425462 ], [ 15.8203125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 4.21494314 ], [ 15.8203125, 4.56547355 ], [ 16.171875, 4.56547355 ], [ 16.171875, 4.21494314 ], [ 15.8203125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 4.56547355 ], [ 15.8203125, 4.9158328 ], [ 16.171875, 4.9158328 ], [ 16.171875, 4.56547355 ], [ 15.8203125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 4.9158328 ], [ 15.8203125, 5.26600788 ], [ 16.171875, 5.26600788 ], [ 16.171875, 4.9158328 ], [ 15.8203125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 5.26600788 ], [ 15.8203125, 5.61598582 ], [ 16.171875, 5.61598582 ], [ 16.171875, 5.26600788 ], [ 15.8203125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 5.61598582 ], [ 15.8203125, 5.96575367 ], [ 16.171875, 5.96575367 ], [ 16.171875, 5.61598582 ], [ 15.8203125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 5.96575367 ], [ 15.8203125, 6.31529854 ], [ 16.171875, 6.31529854 ], [ 16.171875, 5.96575367 ], [ 15.8203125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 6.31529854 ], [ 15.8203125, 6.66460756 ], [ 16.171875, 6.66460756 ], [ 16.171875, 6.31529854 ], [ 15.8203125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 6.66460756 ], [ 15.8203125, 7.01366793 ], [ 16.171875, 7.01366793 ], [ 16.171875, 6.66460756 ], [ 15.8203125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 7.01366793 ], [ 15.8203125, 7.36246687 ], [ 16.171875, 7.36246687 ], [ 16.171875, 7.01366793 ], [ 15.8203125, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 7.36246687 ], [ 15.8203125, 7.71099166 ], [ 16.171875, 7.71099166 ], [ 16.171875, 7.36246687 ], [ 15.8203125, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.8203125, 7.71099166 ], [ 15.8203125, 8.05922963 ], [ 16.171875, 8.05922963 ], [ 16.171875, 7.71099166 ], [ 15.8203125, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, -0.35156029 ], [ 16.171875, 0 ], [ 16.5234375, 0 ], [ 16.5234375, -0.35156029 ], [ 16.171875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, -0.70310735 ], [ 16.171875, -0.35156029 ], [ 16.5234375, -0.35156029 ], [ 16.5234375, -0.70310735 ], [ 16.171875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, -1.05462794 ], [ 16.171875, -0.70310735 ], [ 16.5234375, -0.70310735 ], [ 16.5234375, -1.05462794 ], [ 16.171875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, -1.40610884 ], [ 16.171875, -1.05462794 ], [ 16.5234375, -1.05462794 ], [ 16.5234375, -1.40610884 ], [ 16.171875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, -1.75753681 ], [ 16.171875, -1.40610884 ], [ 16.5234375, -1.40610884 ], [ 16.5234375, -1.75753681 ], [ 16.171875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, -2.10889866 ], [ 16.171875, -1.75753681 ], [ 16.5234375, -1.75753681 ], [ 16.5234375, -2.10889866 ], [ 16.171875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 0 ], [ 16.171875, 0.35156029 ], [ 16.5234375, 0.35156029 ], [ 16.5234375, 0 ], [ 16.171875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 0.35156029 ], [ 16.171875, 0.70310735 ], [ 16.5234375, 0.70310735 ], [ 16.5234375, 0.35156029 ], [ 16.171875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 0.70310735 ], [ 16.171875, 1.05462794 ], [ 16.5234375, 1.05462794 ], [ 16.5234375, 0.70310735 ], [ 16.171875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 1.05462794 ], [ 16.171875, 1.40610884 ], [ 16.5234375, 1.40610884 ], [ 16.5234375, 1.05462794 ], [ 16.171875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 1.40610884 ], [ 16.171875, 1.75753681 ], [ 16.5234375, 1.75753681 ], [ 16.5234375, 1.40610884 ], [ 16.171875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 1.75753681 ], [ 16.171875, 2.10889866 ], [ 16.5234375, 2.10889866 ], [ 16.5234375, 1.75753681 ], [ 16.171875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 2.10889866 ], [ 16.171875, 2.46018118 ], [ 16.5234375, 2.46018118 ], [ 16.5234375, 2.10889866 ], [ 16.171875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 2.46018118 ], [ 16.171875, 2.81137119 ], [ 16.5234375, 2.81137119 ], [ 16.5234375, 2.46018118 ], [ 16.171875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 2.81137119 ], [ 16.171875, 3.16245553 ], [ 16.5234375, 3.16245553 ], [ 16.5234375, 2.81137119 ], [ 16.171875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 3.16245553 ], [ 16.171875, 3.51342105 ], [ 16.5234375, 3.51342105 ], [ 16.5234375, 3.16245553 ], [ 16.171875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 3.51342105 ], [ 16.171875, 3.86425462 ], [ 16.5234375, 3.86425462 ], [ 16.5234375, 3.51342105 ], [ 16.171875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 3.86425462 ], [ 16.171875, 4.21494314 ], [ 16.5234375, 4.21494314 ], [ 16.5234375, 3.86425462 ], [ 16.171875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 4.21494314 ], [ 16.171875, 4.56547355 ], [ 16.5234375, 4.56547355 ], [ 16.5234375, 4.21494314 ], [ 16.171875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 4.56547355 ], [ 16.171875, 4.9158328 ], [ 16.5234375, 4.9158328 ], [ 16.5234375, 4.56547355 ], [ 16.171875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 4.9158328 ], [ 16.171875, 5.26600788 ], [ 16.5234375, 5.26600788 ], [ 16.5234375, 4.9158328 ], [ 16.171875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 5.26600788 ], [ 16.171875, 5.61598582 ], [ 16.5234375, 5.61598582 ], [ 16.5234375, 5.26600788 ], [ 16.171875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 5.61598582 ], [ 16.171875, 5.96575367 ], [ 16.5234375, 5.96575367 ], [ 16.5234375, 5.61598582 ], [ 16.171875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 5.96575367 ], [ 16.171875, 6.31529854 ], [ 16.5234375, 6.31529854 ], [ 16.5234375, 5.96575367 ], [ 16.171875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 6.31529854 ], [ 16.171875, 6.66460756 ], [ 16.5234375, 6.66460756 ], [ 16.5234375, 6.31529854 ], [ 16.171875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 6.66460756 ], [ 16.171875, 7.01366793 ], [ 16.5234375, 7.01366793 ], [ 16.5234375, 6.66460756 ], [ 16.171875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 7.01366793 ], [ 16.171875, 7.36246687 ], [ 16.5234375, 7.36246687 ], [ 16.5234375, 7.01366793 ], [ 16.171875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 7.36246687 ], [ 16.171875, 7.71099166 ], [ 16.5234375, 7.71099166 ], [ 16.5234375, 7.36246687 ], [ 16.171875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 7.71099166 ], [ 16.171875, 8.05922963 ], [ 16.5234375, 8.05922963 ], [ 16.5234375, 7.71099166 ], [ 16.171875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 8.05922963 ], [ 16.171875, 8.40716816 ], [ 16.5234375, 8.40716816 ], [ 16.5234375, 8.05922963 ], [ 16.171875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 8.40716816 ], [ 16.171875, 8.7547947 ], [ 16.5234375, 8.7547947 ], [ 16.5234375, 8.40716816 ], [ 16.171875, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, -0.35156029 ], [ 16.5234375, 0 ], [ 16.875, 0 ], [ 16.875, -0.35156029 ], [ 16.5234375, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 0 ], [ 16.5234375, 0.35156029 ], [ 16.875, 0.35156029 ], [ 16.875, 0 ], [ 16.5234375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 0.35156029 ], [ 16.5234375, 0.70310735 ], [ 16.875, 0.70310735 ], [ 16.875, 0.35156029 ], [ 16.5234375, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 0.70310735 ], [ 16.5234375, 1.05462794 ], [ 16.875, 1.05462794 ], [ 16.875, 0.70310735 ], [ 16.5234375, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 1.05462794 ], [ 16.5234375, 1.40610884 ], [ 16.875, 1.40610884 ], [ 16.875, 1.05462794 ], [ 16.5234375, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 1.40610884 ], [ 16.5234375, 1.75753681 ], [ 16.875, 1.75753681 ], [ 16.875, 1.40610884 ], [ 16.5234375, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 1.75753681 ], [ 16.5234375, 2.10889866 ], [ 16.875, 2.10889866 ], [ 16.875, 1.75753681 ], [ 16.5234375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 2.10889866 ], [ 16.5234375, 2.46018118 ], [ 16.875, 2.46018118 ], [ 16.875, 2.10889866 ], [ 16.5234375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 2.46018118 ], [ 16.5234375, 2.81137119 ], [ 16.875, 2.81137119 ], [ 16.875, 2.46018118 ], [ 16.5234375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 2.81137119 ], [ 16.5234375, 3.16245553 ], [ 16.875, 3.16245553 ], [ 16.875, 2.81137119 ], [ 16.5234375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 3.16245553 ], [ 16.5234375, 3.51342105 ], [ 16.875, 3.51342105 ], [ 16.875, 3.16245553 ], [ 16.5234375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 3.51342105 ], [ 16.5234375, 3.86425462 ], [ 16.875, 3.86425462 ], [ 16.875, 3.51342105 ], [ 16.5234375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 3.86425462 ], [ 16.5234375, 4.21494314 ], [ 16.875, 4.21494314 ], [ 16.875, 3.86425462 ], [ 16.5234375, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 4.21494314 ], [ 16.5234375, 4.56547355 ], [ 16.875, 4.56547355 ], [ 16.875, 4.21494314 ], [ 16.5234375, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 4.56547355 ], [ 16.5234375, 4.9158328 ], [ 16.875, 4.9158328 ], [ 16.875, 4.56547355 ], [ 16.5234375, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 4.9158328 ], [ 16.5234375, 5.26600788 ], [ 16.875, 5.26600788 ], [ 16.875, 4.9158328 ], [ 16.5234375, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 5.26600788 ], [ 16.5234375, 5.61598582 ], [ 16.875, 5.61598582 ], [ 16.875, 5.26600788 ], [ 16.5234375, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 5.61598582 ], [ 16.5234375, 5.96575367 ], [ 16.875, 5.96575367 ], [ 16.875, 5.61598582 ], [ 16.5234375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 5.96575367 ], [ 16.5234375, 6.31529854 ], [ 16.875, 6.31529854 ], [ 16.875, 5.96575367 ], [ 16.5234375, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 6.31529854 ], [ 16.5234375, 6.66460756 ], [ 16.875, 6.66460756 ], [ 16.875, 6.31529854 ], [ 16.5234375, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 6.66460756 ], [ 16.5234375, 7.01366793 ], [ 16.875, 7.01366793 ], [ 16.875, 6.66460756 ], [ 16.5234375, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 7.01366793 ], [ 16.5234375, 7.36246687 ], [ 16.875, 7.36246687 ], [ 16.875, 7.01366793 ], [ 16.5234375, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 7.36246687 ], [ 16.5234375, 7.71099166 ], [ 16.875, 7.71099166 ], [ 16.875, 7.36246687 ], [ 16.5234375, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 7.71099166 ], [ 16.5234375, 8.05922963 ], [ 16.875, 8.05922963 ], [ 16.875, 7.71099166 ], [ 16.5234375, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 8.05922963 ], [ 16.5234375, 8.40716816 ], [ 16.875, 8.40716816 ], [ 16.875, 8.05922963 ], [ 16.5234375, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 8.40716816 ], [ 16.5234375, 8.7547947 ], [ 16.875, 8.7547947 ], [ 16.875, 8.40716816 ], [ 16.5234375, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 8.7547947 ], [ 16.5234375, 9.10209674 ], [ 16.875, 9.10209674 ], [ 16.875, 8.7547947 ], [ 16.5234375, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 9.10209674 ], [ 16.5234375, 9.44906183 ], [ 16.875, 9.44906183 ], [ 16.875, 9.10209674 ], [ 16.5234375, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 9.44906183 ], [ 16.5234375, 9.79567758 ], [ 16.875, 9.79567758 ], [ 16.875, 9.44906183 ], [ 16.5234375, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -0.35156029 ], [ 16.875, 0 ], [ 17.2265625, 0 ], [ 17.2265625, -0.35156029 ], [ 16.875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -0.70310735 ], [ 16.875, -0.35156029 ], [ 17.2265625, -0.35156029 ], [ 17.2265625, -0.70310735 ], [ 16.875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -1.05462794 ], [ 16.875, -0.70310735 ], [ 17.2265625, -0.70310735 ], [ 17.2265625, -1.05462794 ], [ 16.875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -1.40610884 ], [ 16.875, -1.05462794 ], [ 17.2265625, -1.05462794 ], [ 17.2265625, -1.40610884 ], [ 16.875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -1.75753681 ], [ 16.875, -1.40610884 ], [ 17.2265625, -1.40610884 ], [ 17.2265625, -1.75753681 ], [ 16.875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -2.10889866 ], [ 16.875, -1.75753681 ], [ 17.2265625, -1.75753681 ], [ 17.2265625, -2.10889866 ], [ 16.875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -2.46018118 ], [ 16.875, -2.10889866 ], [ 17.2265625, -2.10889866 ], [ 17.2265625, -2.46018118 ], [ 16.875, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -2.81137119 ], [ 16.875, -2.46018118 ], [ 17.2265625, -2.46018118 ], [ 17.2265625, -2.81137119 ], [ 16.875, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 0 ], [ 16.875, 0.35156029 ], [ 17.2265625, 0.35156029 ], [ 17.2265625, 0 ], [ 16.875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 0.35156029 ], [ 16.875, 0.70310735 ], [ 17.2265625, 0.70310735 ], [ 17.2265625, 0.35156029 ], [ 16.875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 0.70310735 ], [ 16.875, 1.05462794 ], [ 17.2265625, 1.05462794 ], [ 17.2265625, 0.70310735 ], [ 16.875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 1.05462794 ], [ 16.875, 1.40610884 ], [ 17.2265625, 1.40610884 ], [ 17.2265625, 1.05462794 ], [ 16.875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 1.40610884 ], [ 16.875, 1.75753681 ], [ 17.2265625, 1.75753681 ], [ 17.2265625, 1.40610884 ], [ 16.875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 1.75753681 ], [ 16.875, 2.10889866 ], [ 17.2265625, 2.10889866 ], [ 17.2265625, 1.75753681 ], [ 16.875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 10.14193169 ], [ 16.875, 10.48781188 ], [ 17.2265625, 10.48781188 ], [ 17.2265625, 10.14193169 ], [ 16.875, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 10.48781188 ], [ 16.875, 10.83330598 ], [ 17.2265625, 10.83330598 ], [ 17.2265625, 10.48781188 ], [ 16.875, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 10.83330598 ], [ 16.875, 11.17840187 ], [ 17.2265625, 11.17840187 ], [ 17.2265625, 10.83330598 ], [ 16.875, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 2.10889866 ], [ 16.875, 2.46018118 ], [ 17.2265625, 2.46018118 ], [ 17.2265625, 2.10889866 ], [ 16.875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 2.46018118 ], [ 16.875, 2.81137119 ], [ 17.2265625, 2.81137119 ], [ 17.2265625, 2.46018118 ], [ 16.875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 2.81137119 ], [ 16.875, 3.16245553 ], [ 17.2265625, 3.16245553 ], [ 17.2265625, 2.81137119 ], [ 16.875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 3.16245553 ], [ 16.875, 3.51342105 ], [ 17.2265625, 3.51342105 ], [ 17.2265625, 3.16245553 ], [ 16.875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 3.51342105 ], [ 16.875, 3.86425462 ], [ 17.2265625, 3.86425462 ], [ 17.2265625, 3.51342105 ], [ 16.875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 3.86425462 ], [ 16.875, 4.21494314 ], [ 17.2265625, 4.21494314 ], [ 17.2265625, 3.86425462 ], [ 16.875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 4.21494314 ], [ 16.875, 4.56547355 ], [ 17.2265625, 4.56547355 ], [ 17.2265625, 4.21494314 ], [ 16.875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 4.56547355 ], [ 16.875, 4.9158328 ], [ 17.2265625, 4.9158328 ], [ 17.2265625, 4.56547355 ], [ 16.875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 4.9158328 ], [ 16.875, 5.26600788 ], [ 17.2265625, 5.26600788 ], [ 17.2265625, 4.9158328 ], [ 16.875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 5.26600788 ], [ 16.875, 5.61598582 ], [ 17.2265625, 5.61598582 ], [ 17.2265625, 5.26600788 ], [ 16.875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 5.61598582 ], [ 16.875, 5.96575367 ], [ 17.2265625, 5.96575367 ], [ 17.2265625, 5.61598582 ], [ 16.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 5.96575367 ], [ 16.875, 6.31529854 ], [ 17.2265625, 6.31529854 ], [ 17.2265625, 5.96575367 ], [ 16.875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 6.31529854 ], [ 16.875, 6.66460756 ], [ 17.2265625, 6.66460756 ], [ 17.2265625, 6.31529854 ], [ 16.875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 6.66460756 ], [ 16.875, 7.01366793 ], [ 17.2265625, 7.01366793 ], [ 17.2265625, 6.66460756 ], [ 16.875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 7.01366793 ], [ 16.875, 7.36246687 ], [ 17.2265625, 7.36246687 ], [ 17.2265625, 7.01366793 ], [ 16.875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 7.36246687 ], [ 16.875, 7.71099166 ], [ 17.2265625, 7.71099166 ], [ 17.2265625, 7.36246687 ], [ 16.875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 7.71099166 ], [ 16.875, 8.05922963 ], [ 17.2265625, 8.05922963 ], [ 17.2265625, 7.71099166 ], [ 16.875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 8.05922963 ], [ 16.875, 8.40716816 ], [ 17.2265625, 8.40716816 ], [ 17.2265625, 8.05922963 ], [ 16.875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 8.40716816 ], [ 16.875, 8.7547947 ], [ 17.2265625, 8.7547947 ], [ 17.2265625, 8.40716816 ], [ 16.875, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 8.7547947 ], [ 16.875, 9.10209674 ], [ 17.2265625, 9.10209674 ], [ 17.2265625, 8.7547947 ], [ 16.875, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 9.10209674 ], [ 16.875, 9.44906183 ], [ 17.2265625, 9.44906183 ], [ 17.2265625, 9.10209674 ], [ 16.875, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 9.44906183 ], [ 16.875, 9.79567758 ], [ 17.2265625, 9.79567758 ], [ 17.2265625, 9.44906183 ], [ 16.875, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 9.79567758 ], [ 16.875, 10.14193169 ], [ 17.2265625, 10.14193169 ], [ 17.2265625, 9.79567758 ], [ 16.875, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -0.35156029 ], [ 17.2265625, 0 ], [ 17.578125, 0 ], [ 17.578125, -0.35156029 ], [ 17.2265625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -0.70310735 ], [ 17.2265625, -0.35156029 ], [ 17.578125, -0.35156029 ], [ 17.578125, -0.70310735 ], [ 17.2265625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -1.05462794 ], [ 17.2265625, -0.70310735 ], [ 17.578125, -0.70310735 ], [ 17.578125, -1.05462794 ], [ 17.2265625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -1.40610884 ], [ 17.2265625, -1.05462794 ], [ 17.578125, -1.05462794 ], [ 17.578125, -1.40610884 ], [ 17.2265625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -1.75753681 ], [ 17.2265625, -1.40610884 ], [ 17.578125, -1.40610884 ], [ 17.578125, -1.75753681 ], [ 17.2265625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -2.10889866 ], [ 17.2265625, -1.75753681 ], [ 17.578125, -1.75753681 ], [ 17.578125, -2.10889866 ], [ 17.2265625, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -2.46018118 ], [ 17.2265625, -2.10889866 ], [ 17.578125, -2.10889866 ], [ 17.578125, -2.46018118 ], [ 17.2265625, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -2.81137119 ], [ 17.2265625, -2.46018118 ], [ 17.578125, -2.46018118 ], [ 17.578125, -2.81137119 ], [ 17.2265625, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -3.16245553 ], [ 17.2265625, -2.81137119 ], [ 17.578125, -2.81137119 ], [ 17.578125, -3.16245553 ], [ 17.2265625, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -3.51342105 ], [ 17.2265625, -3.16245553 ], [ 17.578125, -3.16245553 ], [ 17.578125, -3.51342105 ], [ 17.2265625, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -3.86425462 ], [ 17.2265625, -3.51342105 ], [ 17.578125, -3.51342105 ], [ 17.578125, -3.86425462 ], [ 17.2265625, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -4.21494314 ], [ 17.2265625, -3.86425462 ], [ 17.578125, -3.86425462 ], [ 17.578125, -4.21494314 ], [ 17.2265625, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -4.56547355 ], [ 17.2265625, -4.21494314 ], [ 17.578125, -4.21494314 ], [ 17.578125, -4.56547355 ], [ 17.2265625, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -4.9158328 ], [ 17.2265625, -4.56547355 ], [ 17.578125, -4.56547355 ], [ 17.578125, -4.9158328 ], [ 17.2265625, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -5.26600788 ], [ 17.2265625, -4.9158328 ], [ 17.578125, -4.9158328 ], [ 17.578125, -5.26600788 ], [ 17.2265625, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, -5.61598582 ], [ 17.2265625, -5.26600788 ], [ 17.578125, -5.26600788 ], [ 17.578125, -5.61598582 ], [ 17.2265625, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 0 ], [ 17.2265625, 0.35156029 ], [ 17.578125, 0.35156029 ], [ 17.578125, 0 ], [ 17.2265625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 0.35156029 ], [ 17.2265625, 0.70310735 ], [ 17.578125, 0.70310735 ], [ 17.578125, 0.35156029 ], [ 17.2265625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 0.70310735 ], [ 17.2265625, 1.05462794 ], [ 17.578125, 1.05462794 ], [ 17.578125, 0.70310735 ], [ 17.2265625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 1.05462794 ], [ 17.2265625, 1.40610884 ], [ 17.578125, 1.40610884 ], [ 17.578125, 1.05462794 ], [ 17.2265625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 1.40610884 ], [ 17.2265625, 1.75753681 ], [ 17.578125, 1.75753681 ], [ 17.578125, 1.40610884 ], [ 17.2265625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 1.75753681 ], [ 17.2265625, 2.10889866 ], [ 17.578125, 2.10889866 ], [ 17.578125, 1.75753681 ], [ 17.2265625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 10.14193169 ], [ 17.2265625, 10.48781188 ], [ 17.578125, 10.48781188 ], [ 17.578125, 10.14193169 ], [ 17.2265625, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 10.48781188 ], [ 17.2265625, 10.83330598 ], [ 17.578125, 10.83330598 ], [ 17.578125, 10.48781188 ], [ 17.2265625, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 10.83330598 ], [ 17.2265625, 11.17840187 ], [ 17.578125, 11.17840187 ], [ 17.578125, 10.83330598 ], [ 17.2265625, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 11.17840187 ], [ 17.2265625, 11.52308751 ], [ 17.578125, 11.52308751 ], [ 17.578125, 11.17840187 ], [ 17.2265625, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 11.52308751 ], [ 17.2265625, 11.86735091 ], [ 17.578125, 11.86735091 ], [ 17.578125, 11.52308751 ], [ 17.2265625, 11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 11.86735091 ], [ 17.2265625, 12.21118019 ], [ 17.578125, 12.21118019 ], [ 17.578125, 11.86735091 ], [ 17.2265625, 11.86735091 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 2.10889866 ], [ 17.2265625, 2.46018118 ], [ 17.578125, 2.46018118 ], [ 17.578125, 2.10889866 ], [ 17.2265625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 2.46018118 ], [ 17.2265625, 2.81137119 ], [ 17.578125, 2.81137119 ], [ 17.578125, 2.46018118 ], [ 17.2265625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 2.81137119 ], [ 17.2265625, 3.16245553 ], [ 17.578125, 3.16245553 ], [ 17.578125, 2.81137119 ], [ 17.2265625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 3.16245553 ], [ 17.2265625, 3.51342105 ], [ 17.578125, 3.51342105 ], [ 17.578125, 3.16245553 ], [ 17.2265625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 3.51342105 ], [ 17.2265625, 3.86425462 ], [ 17.578125, 3.86425462 ], [ 17.578125, 3.51342105 ], [ 17.2265625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 3.86425462 ], [ 17.2265625, 4.21494314 ], [ 17.578125, 4.21494314 ], [ 17.578125, 3.86425462 ], [ 17.2265625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 4.21494314 ], [ 17.2265625, 4.56547355 ], [ 17.578125, 4.56547355 ], [ 17.578125, 4.21494314 ], [ 17.2265625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 4.56547355 ], [ 17.2265625, 4.9158328 ], [ 17.578125, 4.9158328 ], [ 17.578125, 4.56547355 ], [ 17.2265625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 4.9158328 ], [ 17.2265625, 5.26600788 ], [ 17.578125, 5.26600788 ], [ 17.578125, 4.9158328 ], [ 17.2265625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 5.26600788 ], [ 17.2265625, 5.61598582 ], [ 17.578125, 5.61598582 ], [ 17.578125, 5.26600788 ], [ 17.2265625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 5.61598582 ], [ 17.2265625, 5.96575367 ], [ 17.578125, 5.96575367 ], [ 17.578125, 5.61598582 ], [ 17.2265625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 5.96575367 ], [ 17.2265625, 6.31529854 ], [ 17.578125, 6.31529854 ], [ 17.578125, 5.96575367 ], [ 17.2265625, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 6.31529854 ], [ 17.2265625, 6.66460756 ], [ 17.578125, 6.66460756 ], [ 17.578125, 6.31529854 ], [ 17.2265625, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 6.66460756 ], [ 17.2265625, 7.01366793 ], [ 17.578125, 7.01366793 ], [ 17.578125, 6.66460756 ], [ 17.2265625, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 7.01366793 ], [ 17.2265625, 7.36246687 ], [ 17.578125, 7.36246687 ], [ 17.578125, 7.01366793 ], [ 17.2265625, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 7.36246687 ], [ 17.2265625, 7.71099166 ], [ 17.578125, 7.71099166 ], [ 17.578125, 7.36246687 ], [ 17.2265625, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 7.71099166 ], [ 17.2265625, 8.05922963 ], [ 17.578125, 8.05922963 ], [ 17.578125, 7.71099166 ], [ 17.2265625, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 8.05922963 ], [ 17.2265625, 8.40716816 ], [ 17.578125, 8.40716816 ], [ 17.578125, 8.05922963 ], [ 17.2265625, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 8.40716816 ], [ 17.2265625, 8.7547947 ], [ 17.578125, 8.7547947 ], [ 17.578125, 8.40716816 ], [ 17.2265625, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 8.7547947 ], [ 17.2265625, 9.10209674 ], [ 17.578125, 9.10209674 ], [ 17.578125, 8.7547947 ], [ 17.2265625, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 9.10209674 ], [ 17.2265625, 9.44906183 ], [ 17.578125, 9.44906183 ], [ 17.578125, 9.10209674 ], [ 17.2265625, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 9.44906183 ], [ 17.2265625, 9.79567758 ], [ 17.578125, 9.79567758 ], [ 17.578125, 9.44906183 ], [ 17.2265625, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 9.79567758 ], [ 17.2265625, 10.14193169 ], [ 17.578125, 10.14193169 ], [ 17.578125, 9.79567758 ], [ 17.2265625, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -0.35156029 ], [ 17.578125, 0 ], [ 17.9296875, 0 ], [ 17.9296875, -0.35156029 ], [ 17.578125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -0.70310735 ], [ 17.578125, -0.35156029 ], [ 17.9296875, -0.35156029 ], [ 17.9296875, -0.70310735 ], [ 17.578125, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -1.05462794 ], [ 17.578125, -0.70310735 ], [ 17.9296875, -0.70310735 ], [ 17.9296875, -1.05462794 ], [ 17.578125, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -1.40610884 ], [ 17.578125, -1.05462794 ], [ 17.9296875, -1.05462794 ], [ 17.9296875, -1.40610884 ], [ 17.578125, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -1.75753681 ], [ 17.578125, -1.40610884 ], [ 17.9296875, -1.40610884 ], [ 17.9296875, -1.75753681 ], [ 17.578125, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -2.10889866 ], [ 17.578125, -1.75753681 ], [ 17.9296875, -1.75753681 ], [ 17.9296875, -2.10889866 ], [ 17.578125, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -2.46018118 ], [ 17.578125, -2.10889866 ], [ 17.9296875, -2.10889866 ], [ 17.9296875, -2.46018118 ], [ 17.578125, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -2.81137119 ], [ 17.578125, -2.46018118 ], [ 17.9296875, -2.46018118 ], [ 17.9296875, -2.81137119 ], [ 17.578125, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -3.16245553 ], [ 17.578125, -2.81137119 ], [ 17.9296875, -2.81137119 ], [ 17.9296875, -3.16245553 ], [ 17.578125, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -3.51342105 ], [ 17.578125, -3.16245553 ], [ 17.9296875, -3.16245553 ], [ 17.9296875, -3.51342105 ], [ 17.578125, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -3.86425462 ], [ 17.578125, -3.51342105 ], [ 17.9296875, -3.51342105 ], [ 17.9296875, -3.86425462 ], [ 17.578125, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -4.21494314 ], [ 17.578125, -3.86425462 ], [ 17.9296875, -3.86425462 ], [ 17.9296875, -4.21494314 ], [ 17.578125, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -4.56547355 ], [ 17.578125, -4.21494314 ], [ 17.9296875, -4.21494314 ], [ 17.9296875, -4.56547355 ], [ 17.578125, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -4.9158328 ], [ 17.578125, -4.56547355 ], [ 17.9296875, -4.56547355 ], [ 17.9296875, -4.9158328 ], [ 17.578125, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -5.26600788 ], [ 17.578125, -4.9158328 ], [ 17.9296875, -4.9158328 ], [ 17.9296875, -5.26600788 ], [ 17.578125, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -5.61598582 ], [ 17.578125, -5.26600788 ], [ 17.9296875, -5.26600788 ], [ 17.9296875, -5.61598582 ], [ 17.578125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -5.96575367 ], [ 17.578125, -5.61598582 ], [ 17.9296875, -5.61598582 ], [ 17.9296875, -5.96575367 ], [ 17.578125, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -6.31529854 ], [ 17.578125, -5.96575367 ], [ 17.9296875, -5.96575367 ], [ 17.9296875, -6.31529854 ], [ 17.578125, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -6.66460756 ], [ 17.578125, -6.31529854 ], [ 17.9296875, -6.31529854 ], [ 17.9296875, -6.66460756 ], [ 17.578125, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -7.01366793 ], [ 17.578125, -6.66460756 ], [ 17.9296875, -6.66460756 ], [ 17.9296875, -7.01366793 ], [ 17.578125, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -7.36246687 ], [ 17.578125, -7.01366793 ], [ 17.9296875, -7.01366793 ], [ 17.9296875, -7.36246687 ], [ 17.578125, -7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -7.71099166 ], [ 17.578125, -7.36246687 ], [ 17.9296875, -7.36246687 ], [ 17.9296875, -7.71099166 ], [ 17.578125, -7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -8.05922963 ], [ 17.578125, -7.71099166 ], [ 17.9296875, -7.71099166 ], [ 17.9296875, -8.05922963 ], [ 17.578125, -8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, -8.40716816 ], [ 17.578125, -8.05922963 ], [ 17.9296875, -8.05922963 ], [ 17.9296875, -8.40716816 ], [ 17.578125, -8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 0 ], [ 17.578125, 0.35156029 ], [ 17.9296875, 0.35156029 ], [ 17.9296875, 0 ], [ 17.578125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 0.35156029 ], [ 17.578125, 0.70310735 ], [ 17.9296875, 0.70310735 ], [ 17.9296875, 0.35156029 ], [ 17.578125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 0.70310735 ], [ 17.578125, 1.05462794 ], [ 17.9296875, 1.05462794 ], [ 17.9296875, 0.70310735 ], [ 17.578125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 1.05462794 ], [ 17.578125, 1.40610884 ], [ 17.9296875, 1.40610884 ], [ 17.9296875, 1.05462794 ], [ 17.578125, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 1.40610884 ], [ 17.578125, 1.75753681 ], [ 17.9296875, 1.75753681 ], [ 17.9296875, 1.40610884 ], [ 17.578125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 1.75753681 ], [ 17.578125, 2.10889866 ], [ 17.9296875, 2.10889866 ], [ 17.9296875, 1.75753681 ], [ 17.578125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 10.14193169 ], [ 17.578125, 10.48781188 ], [ 17.9296875, 10.48781188 ], [ 17.9296875, 10.14193169 ], [ 17.578125, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 10.48781188 ], [ 17.578125, 10.83330598 ], [ 17.9296875, 10.83330598 ], [ 17.9296875, 10.48781188 ], [ 17.578125, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 10.83330598 ], [ 17.578125, 11.17840187 ], [ 17.9296875, 11.17840187 ], [ 17.9296875, 10.83330598 ], [ 17.578125, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 11.17840187 ], [ 17.578125, 11.52308751 ], [ 17.9296875, 11.52308751 ], [ 17.9296875, 11.17840187 ], [ 17.578125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 11.52308751 ], [ 17.578125, 11.86735091 ], [ 17.9296875, 11.86735091 ], [ 17.9296875, 11.52308751 ], [ 17.578125, 11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 11.86735091 ], [ 17.578125, 12.21118019 ], [ 17.9296875, 12.21118019 ], [ 17.9296875, 11.86735091 ], [ 17.578125, 11.86735091 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 12.21118019 ], [ 17.578125, 12.55456353 ], [ 17.9296875, 12.55456353 ], [ 17.9296875, 12.21118019 ], [ 17.578125, 12.21118019 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 12.55456353 ], [ 17.578125, 12.89748918 ], [ 17.9296875, 12.89748918 ], [ 17.9296875, 12.55456353 ], [ 17.578125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 12.89748918 ], [ 17.578125, 13.2399455 ], [ 17.9296875, 13.2399455 ], [ 17.9296875, 12.89748918 ], [ 17.578125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 13.2399455 ], [ 17.578125, 13.5819209 ], [ 17.9296875, 13.5819209 ], [ 17.9296875, 13.2399455 ], [ 17.578125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 2.10889866 ], [ 17.578125, 2.46018118 ], [ 17.9296875, 2.46018118 ], [ 17.9296875, 2.10889866 ], [ 17.578125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 2.46018118 ], [ 17.578125, 2.81137119 ], [ 17.9296875, 2.81137119 ], [ 17.9296875, 2.46018118 ], [ 17.578125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 2.81137119 ], [ 17.578125, 3.16245553 ], [ 17.9296875, 3.16245553 ], [ 17.9296875, 2.81137119 ], [ 17.578125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 3.16245553 ], [ 17.578125, 3.51342105 ], [ 17.9296875, 3.51342105 ], [ 17.9296875, 3.16245553 ], [ 17.578125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 3.51342105 ], [ 17.578125, 3.86425462 ], [ 17.9296875, 3.86425462 ], [ 17.9296875, 3.51342105 ], [ 17.578125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 3.86425462 ], [ 17.578125, 4.21494314 ], [ 17.9296875, 4.21494314 ], [ 17.9296875, 3.86425462 ], [ 17.578125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 4.21494314 ], [ 17.578125, 4.56547355 ], [ 17.9296875, 4.56547355 ], [ 17.9296875, 4.21494314 ], [ 17.578125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 4.56547355 ], [ 17.578125, 4.9158328 ], [ 17.9296875, 4.9158328 ], [ 17.9296875, 4.56547355 ], [ 17.578125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 4.9158328 ], [ 17.578125, 5.26600788 ], [ 17.9296875, 5.26600788 ], [ 17.9296875, 4.9158328 ], [ 17.578125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 5.26600788 ], [ 17.578125, 5.61598582 ], [ 17.9296875, 5.61598582 ], [ 17.9296875, 5.26600788 ], [ 17.578125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 5.61598582 ], [ 17.578125, 5.96575367 ], [ 17.9296875, 5.96575367 ], [ 17.9296875, 5.61598582 ], [ 17.578125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 5.96575367 ], [ 17.578125, 6.31529854 ], [ 17.9296875, 6.31529854 ], [ 17.9296875, 5.96575367 ], [ 17.578125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 6.31529854 ], [ 17.578125, 6.66460756 ], [ 17.9296875, 6.66460756 ], [ 17.9296875, 6.31529854 ], [ 17.578125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 6.66460756 ], [ 17.578125, 7.01366793 ], [ 17.9296875, 7.01366793 ], [ 17.9296875, 6.66460756 ], [ 17.578125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 7.01366793 ], [ 17.578125, 7.36246687 ], [ 17.9296875, 7.36246687 ], [ 17.9296875, 7.01366793 ], [ 17.578125, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 7.36246687 ], [ 17.578125, 7.71099166 ], [ 17.9296875, 7.71099166 ], [ 17.9296875, 7.36246687 ], [ 17.578125, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 7.71099166 ], [ 17.578125, 8.05922963 ], [ 17.9296875, 8.05922963 ], [ 17.9296875, 7.71099166 ], [ 17.578125, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 8.05922963 ], [ 17.578125, 8.40716816 ], [ 17.9296875, 8.40716816 ], [ 17.9296875, 8.05922963 ], [ 17.578125, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 8.40716816 ], [ 17.578125, 8.7547947 ], [ 17.9296875, 8.7547947 ], [ 17.9296875, 8.40716816 ], [ 17.578125, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 8.7547947 ], [ 17.578125, 9.10209674 ], [ 17.9296875, 9.10209674 ], [ 17.9296875, 8.7547947 ], [ 17.578125, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 9.10209674 ], [ 17.578125, 9.44906183 ], [ 17.9296875, 9.44906183 ], [ 17.9296875, 9.10209674 ], [ 17.578125, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 9.44906183 ], [ 17.578125, 9.79567758 ], [ 17.9296875, 9.79567758 ], [ 17.9296875, 9.44906183 ], [ 17.578125, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 9.79567758 ], [ 17.578125, 10.14193169 ], [ 17.9296875, 10.14193169 ], [ 17.9296875, 9.79567758 ], [ 17.578125, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -0.35156029 ], [ 17.9296875, 0 ], [ 18.28125, 0 ], [ 18.28125, -0.35156029 ], [ 17.9296875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -0.70310735 ], [ 17.9296875, -0.35156029 ], [ 18.28125, -0.35156029 ], [ 18.28125, -0.70310735 ], [ 17.9296875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -1.05462794 ], [ 17.9296875, -0.70310735 ], [ 18.28125, -0.70310735 ], [ 18.28125, -1.05462794 ], [ 17.9296875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -1.40610884 ], [ 17.9296875, -1.05462794 ], [ 18.28125, -1.05462794 ], [ 18.28125, -1.40610884 ], [ 17.9296875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -1.75753681 ], [ 17.9296875, -1.40610884 ], [ 18.28125, -1.40610884 ], [ 18.28125, -1.75753681 ], [ 17.9296875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -10.14193169 ], [ 17.9296875, -9.79567758 ], [ 18.28125, -9.79567758 ], [ 18.28125, -10.14193169 ], [ 17.9296875, -10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -10.48781188 ], [ 17.9296875, -10.14193169 ], [ 18.28125, -10.14193169 ], [ 18.28125, -10.48781188 ], [ 17.9296875, -10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -2.10889866 ], [ 17.9296875, -1.75753681 ], [ 18.28125, -1.75753681 ], [ 18.28125, -2.10889866 ], [ 17.9296875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -2.46018118 ], [ 17.9296875, -2.10889866 ], [ 18.28125, -2.10889866 ], [ 18.28125, -2.46018118 ], [ 17.9296875, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -2.81137119 ], [ 17.9296875, -2.46018118 ], [ 18.28125, -2.46018118 ], [ 18.28125, -2.81137119 ], [ 17.9296875, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -3.16245553 ], [ 17.9296875, -2.81137119 ], [ 18.28125, -2.81137119 ], [ 18.28125, -3.16245553 ], [ 17.9296875, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -3.51342105 ], [ 17.9296875, -3.16245553 ], [ 18.28125, -3.16245553 ], [ 18.28125, -3.51342105 ], [ 17.9296875, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -3.86425462 ], [ 17.9296875, -3.51342105 ], [ 18.28125, -3.51342105 ], [ 18.28125, -3.86425462 ], [ 17.9296875, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -4.21494314 ], [ 17.9296875, -3.86425462 ], [ 18.28125, -3.86425462 ], [ 18.28125, -4.21494314 ], [ 17.9296875, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -4.56547355 ], [ 17.9296875, -4.21494314 ], [ 18.28125, -4.21494314 ], [ 18.28125, -4.56547355 ], [ 17.9296875, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -4.9158328 ], [ 17.9296875, -4.56547355 ], [ 18.28125, -4.56547355 ], [ 18.28125, -4.9158328 ], [ 17.9296875, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -5.26600788 ], [ 17.9296875, -4.9158328 ], [ 18.28125, -4.9158328 ], [ 18.28125, -5.26600788 ], [ 17.9296875, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -5.61598582 ], [ 17.9296875, -5.26600788 ], [ 18.28125, -5.26600788 ], [ 18.28125, -5.61598582 ], [ 17.9296875, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -5.96575367 ], [ 17.9296875, -5.61598582 ], [ 18.28125, -5.61598582 ], [ 18.28125, -5.96575367 ], [ 17.9296875, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -6.31529854 ], [ 17.9296875, -5.96575367 ], [ 18.28125, -5.96575367 ], [ 18.28125, -6.31529854 ], [ 17.9296875, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -6.66460756 ], [ 17.9296875, -6.31529854 ], [ 18.28125, -6.31529854 ], [ 18.28125, -6.66460756 ], [ 17.9296875, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -7.01366793 ], [ 17.9296875, -6.66460756 ], [ 18.28125, -6.66460756 ], [ 18.28125, -7.01366793 ], [ 17.9296875, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -7.36246687 ], [ 17.9296875, -7.01366793 ], [ 18.28125, -7.01366793 ], [ 18.28125, -7.36246687 ], [ 17.9296875, -7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -7.71099166 ], [ 17.9296875, -7.36246687 ], [ 18.28125, -7.36246687 ], [ 18.28125, -7.71099166 ], [ 17.9296875, -7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -8.05922963 ], [ 17.9296875, -7.71099166 ], [ 18.28125, -7.71099166 ], [ 18.28125, -8.05922963 ], [ 17.9296875, -8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -8.40716816 ], [ 17.9296875, -8.05922963 ], [ 18.28125, -8.05922963 ], [ 18.28125, -8.40716816 ], [ 17.9296875, -8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -8.7547947 ], [ 17.9296875, -8.40716816 ], [ 18.28125, -8.40716816 ], [ 18.28125, -8.7547947 ], [ 17.9296875, -8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -9.10209674 ], [ 17.9296875, -8.7547947 ], [ 18.28125, -8.7547947 ], [ 18.28125, -9.10209674 ], [ 17.9296875, -9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -9.44906183 ], [ 17.9296875, -9.10209674 ], [ 18.28125, -9.10209674 ], [ 18.28125, -9.44906183 ], [ 17.9296875, -9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, -9.79567758 ], [ 17.9296875, -9.44906183 ], [ 18.28125, -9.44906183 ], [ 18.28125, -9.79567758 ], [ 17.9296875, -9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 0 ], [ 17.9296875, 0.35156029 ], [ 18.28125, 0.35156029 ], [ 18.28125, 0 ], [ 17.9296875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 0.35156029 ], [ 17.9296875, 0.70310735 ], [ 18.28125, 0.70310735 ], [ 18.28125, 0.35156029 ], [ 17.9296875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 0.70310735 ], [ 17.9296875, 1.05462794 ], [ 18.28125, 1.05462794 ], [ 18.28125, 0.70310735 ], [ 17.9296875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 1.05462794 ], [ 17.9296875, 1.40610884 ], [ 18.28125, 1.40610884 ], [ 18.28125, 1.05462794 ], [ 17.9296875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 1.40610884 ], [ 17.9296875, 1.75753681 ], [ 18.28125, 1.75753681 ], [ 18.28125, 1.40610884 ], [ 17.9296875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 1.75753681 ], [ 17.9296875, 2.10889866 ], [ 18.28125, 2.10889866 ], [ 18.28125, 1.75753681 ], [ 17.9296875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 10.14193169 ], [ 17.9296875, 10.48781188 ], [ 18.28125, 10.48781188 ], [ 18.28125, 10.14193169 ], [ 17.9296875, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 10.48781188 ], [ 17.9296875, 10.83330598 ], [ 18.28125, 10.83330598 ], [ 18.28125, 10.48781188 ], [ 17.9296875, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 10.83330598 ], [ 17.9296875, 11.17840187 ], [ 18.28125, 11.17840187 ], [ 18.28125, 10.83330598 ], [ 17.9296875, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 11.17840187 ], [ 17.9296875, 11.52308751 ], [ 18.28125, 11.52308751 ], [ 18.28125, 11.17840187 ], [ 17.9296875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 11.52308751 ], [ 17.9296875, 11.86735091 ], [ 18.28125, 11.86735091 ], [ 18.28125, 11.52308751 ], [ 17.9296875, 11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 11.86735091 ], [ 17.9296875, 12.21118019 ], [ 18.28125, 12.21118019 ], [ 18.28125, 11.86735091 ], [ 17.9296875, 11.86735091 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 12.21118019 ], [ 17.9296875, 12.55456353 ], [ 18.28125, 12.55456353 ], [ 18.28125, 12.21118019 ], [ 17.9296875, 12.21118019 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 12.55456353 ], [ 17.9296875, 12.89748918 ], [ 18.28125, 12.89748918 ], [ 18.28125, 12.55456353 ], [ 17.9296875, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 12.89748918 ], [ 17.9296875, 13.2399455 ], [ 18.28125, 13.2399455 ], [ 18.28125, 12.89748918 ], [ 17.9296875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 13.2399455 ], [ 17.9296875, 13.5819209 ], [ 18.28125, 13.5819209 ], [ 18.28125, 13.2399455 ], [ 17.9296875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 13.5819209 ], [ 17.9296875, 13.9234039 ], [ 18.28125, 13.9234039 ], [ 18.28125, 13.5819209 ], [ 17.9296875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 13.9234039 ], [ 17.9296875, 14.26438309 ], [ 18.28125, 14.26438309 ], [ 18.28125, 13.9234039 ], [ 17.9296875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 14.26438309 ], [ 17.9296875, 14.60484716 ], [ 18.28125, 14.60484716 ], [ 18.28125, 14.26438309 ], [ 17.9296875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 2.10889866 ], [ 17.9296875, 2.46018118 ], [ 18.28125, 2.46018118 ], [ 18.28125, 2.10889866 ], [ 17.9296875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 2.46018118 ], [ 17.9296875, 2.81137119 ], [ 18.28125, 2.81137119 ], [ 18.28125, 2.46018118 ], [ 17.9296875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 2.81137119 ], [ 17.9296875, 3.16245553 ], [ 18.28125, 3.16245553 ], [ 18.28125, 2.81137119 ], [ 17.9296875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 3.16245553 ], [ 17.9296875, 3.51342105 ], [ 18.28125, 3.51342105 ], [ 18.28125, 3.16245553 ], [ 17.9296875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 3.51342105 ], [ 17.9296875, 3.86425462 ], [ 18.28125, 3.86425462 ], [ 18.28125, 3.51342105 ], [ 17.9296875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 3.86425462 ], [ 17.9296875, 4.21494314 ], [ 18.28125, 4.21494314 ], [ 18.28125, 3.86425462 ], [ 17.9296875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 4.21494314 ], [ 17.9296875, 4.56547355 ], [ 18.28125, 4.56547355 ], [ 18.28125, 4.21494314 ], [ 17.9296875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 4.56547355 ], [ 17.9296875, 4.9158328 ], [ 18.28125, 4.9158328 ], [ 18.28125, 4.56547355 ], [ 17.9296875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 4.9158328 ], [ 17.9296875, 5.26600788 ], [ 18.28125, 5.26600788 ], [ 18.28125, 4.9158328 ], [ 17.9296875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 5.26600788 ], [ 17.9296875, 5.61598582 ], [ 18.28125, 5.61598582 ], [ 18.28125, 5.26600788 ], [ 17.9296875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 5.61598582 ], [ 17.9296875, 5.96575367 ], [ 18.28125, 5.96575367 ], [ 18.28125, 5.61598582 ], [ 17.9296875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 5.96575367 ], [ 17.9296875, 6.31529854 ], [ 18.28125, 6.31529854 ], [ 18.28125, 5.96575367 ], [ 17.9296875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 6.31529854 ], [ 17.9296875, 6.66460756 ], [ 18.28125, 6.66460756 ], [ 18.28125, 6.31529854 ], [ 17.9296875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 6.66460756 ], [ 17.9296875, 7.01366793 ], [ 18.28125, 7.01366793 ], [ 18.28125, 6.66460756 ], [ 17.9296875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 7.01366793 ], [ 17.9296875, 7.36246687 ], [ 18.28125, 7.36246687 ], [ 18.28125, 7.01366793 ], [ 17.9296875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 7.36246687 ], [ 17.9296875, 7.71099166 ], [ 18.28125, 7.71099166 ], [ 18.28125, 7.36246687 ], [ 17.9296875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 7.71099166 ], [ 17.9296875, 8.05922963 ], [ 18.28125, 8.05922963 ], [ 18.28125, 7.71099166 ], [ 17.9296875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 8.05922963 ], [ 17.9296875, 8.40716816 ], [ 18.28125, 8.40716816 ], [ 18.28125, 8.05922963 ], [ 17.9296875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 8.40716816 ], [ 17.9296875, 8.7547947 ], [ 18.28125, 8.7547947 ], [ 18.28125, 8.40716816 ], [ 17.9296875, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 8.7547947 ], [ 17.9296875, 9.10209674 ], [ 18.28125, 9.10209674 ], [ 18.28125, 8.7547947 ], [ 17.9296875, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 9.10209674 ], [ 17.9296875, 9.44906183 ], [ 18.28125, 9.44906183 ], [ 18.28125, 9.10209674 ], [ 17.9296875, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 9.44906183 ], [ 17.9296875, 9.79567758 ], [ 18.28125, 9.79567758 ], [ 18.28125, 9.44906183 ], [ 17.9296875, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 9.79567758 ], [ 17.9296875, 10.14193169 ], [ 18.28125, 10.14193169 ], [ 18.28125, 9.79567758 ], [ 17.9296875, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -0.35156029 ], [ 18.28125, 0 ], [ 18.6328125, 0 ], [ 18.6328125, -0.35156029 ], [ 18.28125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -0.70310735 ], [ 18.28125, -0.35156029 ], [ 18.6328125, -0.35156029 ], [ 18.6328125, -0.70310735 ], [ 18.28125, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -1.05462794 ], [ 18.28125, -0.70310735 ], [ 18.6328125, -0.70310735 ], [ 18.6328125, -1.05462794 ], [ 18.28125, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -1.40610884 ], [ 18.28125, -1.05462794 ], [ 18.6328125, -1.05462794 ], [ 18.6328125, -1.40610884 ], [ 18.28125, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -1.75753681 ], [ 18.28125, -1.40610884 ], [ 18.6328125, -1.40610884 ], [ 18.6328125, -1.75753681 ], [ 18.28125, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -2.10889866 ], [ 18.28125, -1.75753681 ], [ 18.6328125, -1.75753681 ], [ 18.6328125, -2.10889866 ], [ 18.28125, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -2.46018118 ], [ 18.28125, -2.10889866 ], [ 18.6328125, -2.10889866 ], [ 18.6328125, -2.46018118 ], [ 18.28125, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -2.81137119 ], [ 18.28125, -2.46018118 ], [ 18.6328125, -2.46018118 ], [ 18.6328125, -2.81137119 ], [ 18.28125, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -3.16245553 ], [ 18.28125, -2.81137119 ], [ 18.6328125, -2.81137119 ], [ 18.6328125, -3.16245553 ], [ 18.28125, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -3.51342105 ], [ 18.28125, -3.16245553 ], [ 18.6328125, -3.16245553 ], [ 18.6328125, -3.51342105 ], [ 18.28125, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -3.86425462 ], [ 18.28125, -3.51342105 ], [ 18.6328125, -3.51342105 ], [ 18.6328125, -3.86425462 ], [ 18.28125, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -4.21494314 ], [ 18.28125, -3.86425462 ], [ 18.6328125, -3.86425462 ], [ 18.6328125, -4.21494314 ], [ 18.28125, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -4.56547355 ], [ 18.28125, -4.21494314 ], [ 18.6328125, -4.21494314 ], [ 18.6328125, -4.56547355 ], [ 18.28125, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -4.9158328 ], [ 18.28125, -4.56547355 ], [ 18.6328125, -4.56547355 ], [ 18.6328125, -4.9158328 ], [ 18.28125, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -5.26600788 ], [ 18.28125, -4.9158328 ], [ 18.6328125, -4.9158328 ], [ 18.6328125, -5.26600788 ], [ 18.28125, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -5.61598582 ], [ 18.28125, -5.26600788 ], [ 18.6328125, -5.26600788 ], [ 18.6328125, -5.61598582 ], [ 18.28125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -5.96575367 ], [ 18.28125, -5.61598582 ], [ 18.6328125, -5.61598582 ], [ 18.6328125, -5.96575367 ], [ 18.28125, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -6.31529854 ], [ 18.28125, -5.96575367 ], [ 18.6328125, -5.96575367 ], [ 18.6328125, -6.31529854 ], [ 18.28125, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -6.66460756 ], [ 18.28125, -6.31529854 ], [ 18.6328125, -6.31529854 ], [ 18.6328125, -6.66460756 ], [ 18.28125, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -7.01366793 ], [ 18.28125, -6.66460756 ], [ 18.6328125, -6.66460756 ], [ 18.6328125, -7.01366793 ], [ 18.28125, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -7.36246687 ], [ 18.28125, -7.01366793 ], [ 18.6328125, -7.01366793 ], [ 18.6328125, -7.36246687 ], [ 18.28125, -7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -7.71099166 ], [ 18.28125, -7.36246687 ], [ 18.6328125, -7.36246687 ], [ 18.6328125, -7.71099166 ], [ 18.28125, -7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -8.05922963 ], [ 18.28125, -7.71099166 ], [ 18.6328125, -7.71099166 ], [ 18.6328125, -8.05922963 ], [ 18.28125, -8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -8.40716816 ], [ 18.28125, -8.05922963 ], [ 18.6328125, -8.05922963 ], [ 18.6328125, -8.40716816 ], [ 18.28125, -8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -8.7547947 ], [ 18.28125, -8.40716816 ], [ 18.6328125, -8.40716816 ], [ 18.6328125, -8.7547947 ], [ 18.28125, -8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -9.10209674 ], [ 18.28125, -8.7547947 ], [ 18.6328125, -8.7547947 ], [ 18.6328125, -9.10209674 ], [ 18.28125, -9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -9.44906183 ], [ 18.28125, -9.10209674 ], [ 18.6328125, -9.10209674 ], [ 18.6328125, -9.44906183 ], [ 18.28125, -9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, -9.79567758 ], [ 18.28125, -9.44906183 ], [ 18.6328125, -9.44906183 ], [ 18.6328125, -9.79567758 ], [ 18.28125, -9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 0 ], [ 18.28125, 0.35156029 ], [ 18.6328125, 0.35156029 ], [ 18.6328125, 0 ], [ 18.28125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 0.35156029 ], [ 18.28125, 0.70310735 ], [ 18.6328125, 0.70310735 ], [ 18.6328125, 0.35156029 ], [ 18.28125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 0.70310735 ], [ 18.28125, 1.05462794 ], [ 18.6328125, 1.05462794 ], [ 18.6328125, 0.70310735 ], [ 18.28125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 1.05462794 ], [ 18.28125, 1.40610884 ], [ 18.6328125, 1.40610884 ], [ 18.6328125, 1.05462794 ], [ 18.28125, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 1.40610884 ], [ 18.28125, 1.75753681 ], [ 18.6328125, 1.75753681 ], [ 18.6328125, 1.40610884 ], [ 18.28125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 1.75753681 ], [ 18.28125, 2.10889866 ], [ 18.6328125, 2.10889866 ], [ 18.6328125, 1.75753681 ], [ 18.28125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 10.14193169 ], [ 18.28125, 10.48781188 ], [ 18.6328125, 10.48781188 ], [ 18.6328125, 10.14193169 ], [ 18.28125, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 10.48781188 ], [ 18.28125, 10.83330598 ], [ 18.6328125, 10.83330598 ], [ 18.6328125, 10.48781188 ], [ 18.28125, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 10.83330598 ], [ 18.28125, 11.17840187 ], [ 18.6328125, 11.17840187 ], [ 18.6328125, 10.83330598 ], [ 18.28125, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 11.17840187 ], [ 18.28125, 11.52308751 ], [ 18.6328125, 11.52308751 ], [ 18.6328125, 11.17840187 ], [ 18.28125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 11.52308751 ], [ 18.28125, 11.86735091 ], [ 18.6328125, 11.86735091 ], [ 18.6328125, 11.52308751 ], [ 18.28125, 11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 11.86735091 ], [ 18.28125, 12.21118019 ], [ 18.6328125, 12.21118019 ], [ 18.6328125, 11.86735091 ], [ 18.28125, 11.86735091 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 12.21118019 ], [ 18.28125, 12.55456353 ], [ 18.6328125, 12.55456353 ], [ 18.6328125, 12.21118019 ], [ 18.28125, 12.21118019 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 12.55456353 ], [ 18.28125, 12.89748918 ], [ 18.6328125, 12.89748918 ], [ 18.6328125, 12.55456353 ], [ 18.28125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 12.89748918 ], [ 18.28125, 13.2399455 ], [ 18.6328125, 13.2399455 ], [ 18.6328125, 12.89748918 ], [ 18.28125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 13.2399455 ], [ 18.28125, 13.5819209 ], [ 18.6328125, 13.5819209 ], [ 18.6328125, 13.2399455 ], [ 18.28125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 13.5819209 ], [ 18.28125, 13.9234039 ], [ 18.6328125, 13.9234039 ], [ 18.6328125, 13.5819209 ], [ 18.28125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 13.9234039 ], [ 18.28125, 14.26438309 ], [ 18.6328125, 14.26438309 ], [ 18.6328125, 13.9234039 ], [ 18.28125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 2.10889866 ], [ 18.28125, 2.46018118 ], [ 18.6328125, 2.46018118 ], [ 18.6328125, 2.10889866 ], [ 18.28125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 2.46018118 ], [ 18.28125, 2.81137119 ], [ 18.6328125, 2.81137119 ], [ 18.6328125, 2.46018118 ], [ 18.28125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 2.81137119 ], [ 18.28125, 3.16245553 ], [ 18.6328125, 3.16245553 ], [ 18.6328125, 2.81137119 ], [ 18.28125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 3.16245553 ], [ 18.28125, 3.51342105 ], [ 18.6328125, 3.51342105 ], [ 18.6328125, 3.16245553 ], [ 18.28125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 3.51342105 ], [ 18.28125, 3.86425462 ], [ 18.6328125, 3.86425462 ], [ 18.6328125, 3.51342105 ], [ 18.28125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 3.86425462 ], [ 18.28125, 4.21494314 ], [ 18.6328125, 4.21494314 ], [ 18.6328125, 3.86425462 ], [ 18.28125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 4.21494314 ], [ 18.28125, 4.56547355 ], [ 18.6328125, 4.56547355 ], [ 18.6328125, 4.21494314 ], [ 18.28125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 4.56547355 ], [ 18.28125, 4.9158328 ], [ 18.6328125, 4.9158328 ], [ 18.6328125, 4.56547355 ], [ 18.28125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 4.9158328 ], [ 18.28125, 5.26600788 ], [ 18.6328125, 5.26600788 ], [ 18.6328125, 4.9158328 ], [ 18.28125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 5.26600788 ], [ 18.28125, 5.61598582 ], [ 18.6328125, 5.61598582 ], [ 18.6328125, 5.26600788 ], [ 18.28125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 5.61598582 ], [ 18.28125, 5.96575367 ], [ 18.6328125, 5.96575367 ], [ 18.6328125, 5.61598582 ], [ 18.28125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 5.96575367 ], [ 18.28125, 6.31529854 ], [ 18.6328125, 6.31529854 ], [ 18.6328125, 5.96575367 ], [ 18.28125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 6.31529854 ], [ 18.28125, 6.66460756 ], [ 18.6328125, 6.66460756 ], [ 18.6328125, 6.31529854 ], [ 18.28125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 6.66460756 ], [ 18.28125, 7.01366793 ], [ 18.6328125, 7.01366793 ], [ 18.6328125, 6.66460756 ], [ 18.28125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 7.01366793 ], [ 18.28125, 7.36246687 ], [ 18.6328125, 7.36246687 ], [ 18.6328125, 7.01366793 ], [ 18.28125, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 7.36246687 ], [ 18.28125, 7.71099166 ], [ 18.6328125, 7.71099166 ], [ 18.6328125, 7.36246687 ], [ 18.28125, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 7.71099166 ], [ 18.28125, 8.05922963 ], [ 18.6328125, 8.05922963 ], [ 18.6328125, 7.71099166 ], [ 18.28125, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 8.05922963 ], [ 18.28125, 8.40716816 ], [ 18.6328125, 8.40716816 ], [ 18.6328125, 8.05922963 ], [ 18.28125, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 8.40716816 ], [ 18.28125, 8.7547947 ], [ 18.6328125, 8.7547947 ], [ 18.6328125, 8.40716816 ], [ 18.28125, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 8.7547947 ], [ 18.28125, 9.10209674 ], [ 18.6328125, 9.10209674 ], [ 18.6328125, 8.7547947 ], [ 18.28125, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 9.10209674 ], [ 18.28125, 9.44906183 ], [ 18.6328125, 9.44906183 ], [ 18.6328125, 9.10209674 ], [ 18.28125, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 9.44906183 ], [ 18.28125, 9.79567758 ], [ 18.6328125, 9.79567758 ], [ 18.6328125, 9.44906183 ], [ 18.28125, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 9.79567758 ], [ 18.28125, 10.14193169 ], [ 18.6328125, 10.14193169 ], [ 18.6328125, 9.79567758 ], [ 18.28125, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -0.35156029 ], [ 18.6328125, 0 ], [ 18.984375, 0 ], [ 18.984375, -0.35156029 ], [ 18.6328125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -0.70310735 ], [ 18.6328125, -0.35156029 ], [ 18.984375, -0.35156029 ], [ 18.984375, -0.70310735 ], [ 18.6328125, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -1.05462794 ], [ 18.6328125, -0.70310735 ], [ 18.984375, -0.70310735 ], [ 18.984375, -1.05462794 ], [ 18.6328125, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -1.40610884 ], [ 18.6328125, -1.05462794 ], [ 18.984375, -1.05462794 ], [ 18.984375, -1.40610884 ], [ 18.6328125, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -1.75753681 ], [ 18.6328125, -1.40610884 ], [ 18.984375, -1.40610884 ], [ 18.984375, -1.75753681 ], [ 18.6328125, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -2.10889866 ], [ 18.6328125, -1.75753681 ], [ 18.984375, -1.75753681 ], [ 18.984375, -2.10889866 ], [ 18.6328125, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -2.46018118 ], [ 18.6328125, -2.10889866 ], [ 18.984375, -2.10889866 ], [ 18.984375, -2.46018118 ], [ 18.6328125, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -2.81137119 ], [ 18.6328125, -2.46018118 ], [ 18.984375, -2.46018118 ], [ 18.984375, -2.81137119 ], [ 18.6328125, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -3.16245553 ], [ 18.6328125, -2.81137119 ], [ 18.984375, -2.81137119 ], [ 18.984375, -3.16245553 ], [ 18.6328125, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -3.51342105 ], [ 18.6328125, -3.16245553 ], [ 18.984375, -3.16245553 ], [ 18.984375, -3.51342105 ], [ 18.6328125, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -3.86425462 ], [ 18.6328125, -3.51342105 ], [ 18.984375, -3.51342105 ], [ 18.984375, -3.86425462 ], [ 18.6328125, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -4.21494314 ], [ 18.6328125, -3.86425462 ], [ 18.984375, -3.86425462 ], [ 18.984375, -4.21494314 ], [ 18.6328125, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -4.56547355 ], [ 18.6328125, -4.21494314 ], [ 18.984375, -4.21494314 ], [ 18.984375, -4.56547355 ], [ 18.6328125, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -4.9158328 ], [ 18.6328125, -4.56547355 ], [ 18.984375, -4.56547355 ], [ 18.984375, -4.9158328 ], [ 18.6328125, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -5.26600788 ], [ 18.6328125, -4.9158328 ], [ 18.984375, -4.9158328 ], [ 18.984375, -5.26600788 ], [ 18.6328125, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -5.61598582 ], [ 18.6328125, -5.26600788 ], [ 18.984375, -5.26600788 ], [ 18.984375, -5.61598582 ], [ 18.6328125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -5.96575367 ], [ 18.6328125, -5.61598582 ], [ 18.984375, -5.61598582 ], [ 18.984375, -5.96575367 ], [ 18.6328125, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -6.31529854 ], [ 18.6328125, -5.96575367 ], [ 18.984375, -5.96575367 ], [ 18.984375, -6.31529854 ], [ 18.6328125, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, -6.66460756 ], [ 18.6328125, -6.31529854 ], [ 18.984375, -6.31529854 ], [ 18.984375, -6.66460756 ], [ 18.6328125, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 0 ], [ 18.6328125, 0.35156029 ], [ 18.984375, 0.35156029 ], [ 18.984375, 0 ], [ 18.6328125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 0.35156029 ], [ 18.6328125, 0.70310735 ], [ 18.984375, 0.70310735 ], [ 18.984375, 0.35156029 ], [ 18.6328125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 0.70310735 ], [ 18.6328125, 1.05462794 ], [ 18.984375, 1.05462794 ], [ 18.984375, 0.70310735 ], [ 18.6328125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 1.05462794 ], [ 18.6328125, 1.40610884 ], [ 18.984375, 1.40610884 ], [ 18.984375, 1.05462794 ], [ 18.6328125, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 1.40610884 ], [ 18.6328125, 1.75753681 ], [ 18.984375, 1.75753681 ], [ 18.984375, 1.40610884 ], [ 18.6328125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 1.75753681 ], [ 18.6328125, 2.10889866 ], [ 18.984375, 2.10889866 ], [ 18.984375, 1.75753681 ], [ 18.6328125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 10.14193169 ], [ 18.6328125, 10.48781188 ], [ 18.984375, 10.48781188 ], [ 18.984375, 10.14193169 ], [ 18.6328125, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 10.48781188 ], [ 18.6328125, 10.83330598 ], [ 18.984375, 10.83330598 ], [ 18.984375, 10.48781188 ], [ 18.6328125, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 10.83330598 ], [ 18.6328125, 11.17840187 ], [ 18.984375, 11.17840187 ], [ 18.984375, 10.83330598 ], [ 18.6328125, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 11.17840187 ], [ 18.6328125, 11.52308751 ], [ 18.984375, 11.52308751 ], [ 18.984375, 11.17840187 ], [ 18.6328125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 11.52308751 ], [ 18.6328125, 11.86735091 ], [ 18.984375, 11.86735091 ], [ 18.984375, 11.52308751 ], [ 18.6328125, 11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 11.86735091 ], [ 18.6328125, 12.21118019 ], [ 18.984375, 12.21118019 ], [ 18.984375, 11.86735091 ], [ 18.6328125, 11.86735091 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 12.21118019 ], [ 18.6328125, 12.55456353 ], [ 18.984375, 12.55456353 ], [ 18.984375, 12.21118019 ], [ 18.6328125, 12.21118019 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 12.55456353 ], [ 18.6328125, 12.89748918 ], [ 18.984375, 12.89748918 ], [ 18.984375, 12.55456353 ], [ 18.6328125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 12.89748918 ], [ 18.6328125, 13.2399455 ], [ 18.984375, 13.2399455 ], [ 18.984375, 12.89748918 ], [ 18.6328125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 13.2399455 ], [ 18.6328125, 13.5819209 ], [ 18.984375, 13.5819209 ], [ 18.984375, 13.2399455 ], [ 18.6328125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 2.10889866 ], [ 18.6328125, 2.46018118 ], [ 18.984375, 2.46018118 ], [ 18.984375, 2.10889866 ], [ 18.6328125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 2.46018118 ], [ 18.6328125, 2.81137119 ], [ 18.984375, 2.81137119 ], [ 18.984375, 2.46018118 ], [ 18.6328125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 2.81137119 ], [ 18.6328125, 3.16245553 ], [ 18.984375, 3.16245553 ], [ 18.984375, 2.81137119 ], [ 18.6328125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 3.16245553 ], [ 18.6328125, 3.51342105 ], [ 18.984375, 3.51342105 ], [ 18.984375, 3.16245553 ], [ 18.6328125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 3.51342105 ], [ 18.6328125, 3.86425462 ], [ 18.984375, 3.86425462 ], [ 18.984375, 3.51342105 ], [ 18.6328125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 3.86425462 ], [ 18.6328125, 4.21494314 ], [ 18.984375, 4.21494314 ], [ 18.984375, 3.86425462 ], [ 18.6328125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 4.21494314 ], [ 18.6328125, 4.56547355 ], [ 18.984375, 4.56547355 ], [ 18.984375, 4.21494314 ], [ 18.6328125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 4.56547355 ], [ 18.6328125, 4.9158328 ], [ 18.984375, 4.9158328 ], [ 18.984375, 4.56547355 ], [ 18.6328125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 4.9158328 ], [ 18.6328125, 5.26600788 ], [ 18.984375, 5.26600788 ], [ 18.984375, 4.9158328 ], [ 18.6328125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 5.26600788 ], [ 18.6328125, 5.61598582 ], [ 18.984375, 5.61598582 ], [ 18.984375, 5.26600788 ], [ 18.6328125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 5.61598582 ], [ 18.6328125, 5.96575367 ], [ 18.984375, 5.96575367 ], [ 18.984375, 5.61598582 ], [ 18.6328125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 5.96575367 ], [ 18.6328125, 6.31529854 ], [ 18.984375, 6.31529854 ], [ 18.984375, 5.96575367 ], [ 18.6328125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 6.31529854 ], [ 18.6328125, 6.66460756 ], [ 18.984375, 6.66460756 ], [ 18.984375, 6.31529854 ], [ 18.6328125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 6.66460756 ], [ 18.6328125, 7.01366793 ], [ 18.984375, 7.01366793 ], [ 18.984375, 6.66460756 ], [ 18.6328125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 7.01366793 ], [ 18.6328125, 7.36246687 ], [ 18.984375, 7.36246687 ], [ 18.984375, 7.01366793 ], [ 18.6328125, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 7.36246687 ], [ 18.6328125, 7.71099166 ], [ 18.984375, 7.71099166 ], [ 18.984375, 7.36246687 ], [ 18.6328125, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 7.71099166 ], [ 18.6328125, 8.05922963 ], [ 18.984375, 8.05922963 ], [ 18.984375, 7.71099166 ], [ 18.6328125, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 8.05922963 ], [ 18.6328125, 8.40716816 ], [ 18.984375, 8.40716816 ], [ 18.984375, 8.05922963 ], [ 18.6328125, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 8.40716816 ], [ 18.6328125, 8.7547947 ], [ 18.984375, 8.7547947 ], [ 18.984375, 8.40716816 ], [ 18.6328125, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 8.7547947 ], [ 18.6328125, 9.10209674 ], [ 18.984375, 9.10209674 ], [ 18.984375, 8.7547947 ], [ 18.6328125, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 9.10209674 ], [ 18.6328125, 9.44906183 ], [ 18.984375, 9.44906183 ], [ 18.984375, 9.10209674 ], [ 18.6328125, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 9.44906183 ], [ 18.6328125, 9.79567758 ], [ 18.984375, 9.79567758 ], [ 18.984375, 9.44906183 ], [ 18.6328125, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 9.79567758 ], [ 18.6328125, 10.14193169 ], [ 18.984375, 10.14193169 ], [ 18.984375, 9.79567758 ], [ 18.6328125, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -0.35156029 ], [ 18.984375, 0 ], [ 19.3359375, 0 ], [ 19.3359375, -0.35156029 ], [ 18.984375, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -0.70310735 ], [ 18.984375, -0.35156029 ], [ 19.3359375, -0.35156029 ], [ 19.3359375, -0.70310735 ], [ 18.984375, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -1.05462794 ], [ 18.984375, -0.70310735 ], [ 19.3359375, -0.70310735 ], [ 19.3359375, -1.05462794 ], [ 18.984375, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -1.40610884 ], [ 18.984375, -1.05462794 ], [ 19.3359375, -1.05462794 ], [ 19.3359375, -1.40610884 ], [ 18.984375, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -1.75753681 ], [ 18.984375, -1.40610884 ], [ 19.3359375, -1.40610884 ], [ 19.3359375, -1.75753681 ], [ 18.984375, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -2.10889866 ], [ 18.984375, -1.75753681 ], [ 19.3359375, -1.75753681 ], [ 19.3359375, -2.10889866 ], [ 18.984375, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -2.46018118 ], [ 18.984375, -2.10889866 ], [ 19.3359375, -2.10889866 ], [ 19.3359375, -2.46018118 ], [ 18.984375, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -2.81137119 ], [ 18.984375, -2.46018118 ], [ 19.3359375, -2.46018118 ], [ 19.3359375, -2.81137119 ], [ 18.984375, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -3.16245553 ], [ 18.984375, -2.81137119 ], [ 19.3359375, -2.81137119 ], [ 19.3359375, -3.16245553 ], [ 18.984375, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -3.51342105 ], [ 18.984375, -3.16245553 ], [ 19.3359375, -3.16245553 ], [ 19.3359375, -3.51342105 ], [ 18.984375, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, -3.86425462 ], [ 18.984375, -3.51342105 ], [ 19.3359375, -3.51342105 ], [ 19.3359375, -3.86425462 ], [ 18.984375, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 0 ], [ 18.984375, 0.35156029 ], [ 19.3359375, 0.35156029 ], [ 19.3359375, 0 ], [ 18.984375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 0.35156029 ], [ 18.984375, 0.70310735 ], [ 19.3359375, 0.70310735 ], [ 19.3359375, 0.35156029 ], [ 18.984375, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 0.70310735 ], [ 18.984375, 1.05462794 ], [ 19.3359375, 1.05462794 ], [ 19.3359375, 0.70310735 ], [ 18.984375, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 1.05462794 ], [ 18.984375, 1.40610884 ], [ 19.3359375, 1.40610884 ], [ 19.3359375, 1.05462794 ], [ 18.984375, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 1.40610884 ], [ 18.984375, 1.75753681 ], [ 19.3359375, 1.75753681 ], [ 19.3359375, 1.40610884 ], [ 18.984375, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 1.75753681 ], [ 18.984375, 2.10889866 ], [ 19.3359375, 2.10889866 ], [ 19.3359375, 1.75753681 ], [ 18.984375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 10.14193169 ], [ 18.984375, 10.48781188 ], [ 19.3359375, 10.48781188 ], [ 19.3359375, 10.14193169 ], [ 18.984375, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 10.48781188 ], [ 18.984375, 10.83330598 ], [ 19.3359375, 10.83330598 ], [ 19.3359375, 10.48781188 ], [ 18.984375, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 10.83330598 ], [ 18.984375, 11.17840187 ], [ 19.3359375, 11.17840187 ], [ 19.3359375, 10.83330598 ], [ 18.984375, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 11.17840187 ], [ 18.984375, 11.52308751 ], [ 19.3359375, 11.52308751 ], [ 19.3359375, 11.17840187 ], [ 18.984375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 11.52308751 ], [ 18.984375, 11.86735091 ], [ 19.3359375, 11.86735091 ], [ 19.3359375, 11.52308751 ], [ 18.984375, 11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 11.86735091 ], [ 18.984375, 12.21118019 ], [ 19.3359375, 12.21118019 ], [ 19.3359375, 11.86735091 ], [ 18.984375, 11.86735091 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 12.21118019 ], [ 18.984375, 12.55456353 ], [ 19.3359375, 12.55456353 ], [ 19.3359375, 12.21118019 ], [ 18.984375, 12.21118019 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 12.55456353 ], [ 18.984375, 12.89748918 ], [ 19.3359375, 12.89748918 ], [ 19.3359375, 12.55456353 ], [ 18.984375, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 2.10889866 ], [ 18.984375, 2.46018118 ], [ 19.3359375, 2.46018118 ], [ 19.3359375, 2.10889866 ], [ 18.984375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 2.46018118 ], [ 18.984375, 2.81137119 ], [ 19.3359375, 2.81137119 ], [ 19.3359375, 2.46018118 ], [ 18.984375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 2.81137119 ], [ 18.984375, 3.16245553 ], [ 19.3359375, 3.16245553 ], [ 19.3359375, 2.81137119 ], [ 18.984375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 3.16245553 ], [ 18.984375, 3.51342105 ], [ 19.3359375, 3.51342105 ], [ 19.3359375, 3.16245553 ], [ 18.984375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 3.51342105 ], [ 18.984375, 3.86425462 ], [ 19.3359375, 3.86425462 ], [ 19.3359375, 3.51342105 ], [ 18.984375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 3.86425462 ], [ 18.984375, 4.21494314 ], [ 19.3359375, 4.21494314 ], [ 19.3359375, 3.86425462 ], [ 18.984375, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 4.21494314 ], [ 18.984375, 4.56547355 ], [ 19.3359375, 4.56547355 ], [ 19.3359375, 4.21494314 ], [ 18.984375, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 4.56547355 ], [ 18.984375, 4.9158328 ], [ 19.3359375, 4.9158328 ], [ 19.3359375, 4.56547355 ], [ 18.984375, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 4.9158328 ], [ 18.984375, 5.26600788 ], [ 19.3359375, 5.26600788 ], [ 19.3359375, 4.9158328 ], [ 18.984375, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 5.26600788 ], [ 18.984375, 5.61598582 ], [ 19.3359375, 5.61598582 ], [ 19.3359375, 5.26600788 ], [ 18.984375, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 5.61598582 ], [ 18.984375, 5.96575367 ], [ 19.3359375, 5.96575367 ], [ 19.3359375, 5.61598582 ], [ 18.984375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 5.96575367 ], [ 18.984375, 6.31529854 ], [ 19.3359375, 6.31529854 ], [ 19.3359375, 5.96575367 ], [ 18.984375, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 6.31529854 ], [ 18.984375, 6.66460756 ], [ 19.3359375, 6.66460756 ], [ 19.3359375, 6.31529854 ], [ 18.984375, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 6.66460756 ], [ 18.984375, 7.01366793 ], [ 19.3359375, 7.01366793 ], [ 19.3359375, 6.66460756 ], [ 18.984375, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 7.01366793 ], [ 18.984375, 7.36246687 ], [ 19.3359375, 7.36246687 ], [ 19.3359375, 7.01366793 ], [ 18.984375, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 7.36246687 ], [ 18.984375, 7.71099166 ], [ 19.3359375, 7.71099166 ], [ 19.3359375, 7.36246687 ], [ 18.984375, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 7.71099166 ], [ 18.984375, 8.05922963 ], [ 19.3359375, 8.05922963 ], [ 19.3359375, 7.71099166 ], [ 18.984375, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 8.05922963 ], [ 18.984375, 8.40716816 ], [ 19.3359375, 8.40716816 ], [ 19.3359375, 8.05922963 ], [ 18.984375, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 8.40716816 ], [ 18.984375, 8.7547947 ], [ 19.3359375, 8.7547947 ], [ 19.3359375, 8.40716816 ], [ 18.984375, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 8.7547947 ], [ 18.984375, 9.10209674 ], [ 19.3359375, 9.10209674 ], [ 19.3359375, 8.7547947 ], [ 18.984375, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 9.10209674 ], [ 18.984375, 9.44906183 ], [ 19.3359375, 9.44906183 ], [ 19.3359375, 9.10209674 ], [ 18.984375, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 9.44906183 ], [ 18.984375, 9.79567758 ], [ 19.3359375, 9.79567758 ], [ 19.3359375, 9.44906183 ], [ 18.984375, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 9.79567758 ], [ 18.984375, 10.14193169 ], [ 19.3359375, 10.14193169 ], [ 19.3359375, 9.79567758 ], [ 18.984375, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, -0.35156029 ], [ 19.3359375, 0 ], [ 19.6875, 0 ], [ 19.6875, -0.35156029 ], [ 19.3359375, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, -0.70310735 ], [ 19.3359375, -0.35156029 ], [ 19.6875, -0.35156029 ], [ 19.6875, -0.70310735 ], [ 19.3359375, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, -1.05462794 ], [ 19.3359375, -0.70310735 ], [ 19.6875, -0.70310735 ], [ 19.6875, -1.05462794 ], [ 19.3359375, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, -1.40610884 ], [ 19.3359375, -1.05462794 ], [ 19.6875, -1.05462794 ], [ 19.6875, -1.40610884 ], [ 19.3359375, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, -1.75753681 ], [ 19.3359375, -1.40610884 ], [ 19.6875, -1.40610884 ], [ 19.6875, -1.75753681 ], [ 19.3359375, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, -2.10889866 ], [ 19.3359375, -1.75753681 ], [ 19.6875, -1.75753681 ], [ 19.6875, -2.10889866 ], [ 19.3359375, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, -2.46018118 ], [ 19.3359375, -2.10889866 ], [ 19.6875, -2.10889866 ], [ 19.6875, -2.46018118 ], [ 19.3359375, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 0 ], [ 19.3359375, 0.35156029 ], [ 19.6875, 0.35156029 ], [ 19.6875, 0 ], [ 19.3359375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 0.35156029 ], [ 19.3359375, 0.70310735 ], [ 19.6875, 0.70310735 ], [ 19.6875, 0.35156029 ], [ 19.3359375, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 0.70310735 ], [ 19.3359375, 1.05462794 ], [ 19.6875, 1.05462794 ], [ 19.6875, 0.70310735 ], [ 19.3359375, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 1.05462794 ], [ 19.3359375, 1.40610884 ], [ 19.6875, 1.40610884 ], [ 19.6875, 1.05462794 ], [ 19.3359375, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 1.40610884 ], [ 19.3359375, 1.75753681 ], [ 19.6875, 1.75753681 ], [ 19.6875, 1.40610884 ], [ 19.3359375, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 1.75753681 ], [ 19.3359375, 2.10889866 ], [ 19.6875, 2.10889866 ], [ 19.6875, 1.75753681 ], [ 19.3359375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 10.14193169 ], [ 19.3359375, 10.48781188 ], [ 19.6875, 10.48781188 ], [ 19.6875, 10.14193169 ], [ 19.3359375, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 10.48781188 ], [ 19.3359375, 10.83330598 ], [ 19.6875, 10.83330598 ], [ 19.6875, 10.48781188 ], [ 19.3359375, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 10.83330598 ], [ 19.3359375, 11.17840187 ], [ 19.6875, 11.17840187 ], [ 19.6875, 10.83330598 ], [ 19.3359375, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 11.17840187 ], [ 19.3359375, 11.52308751 ], [ 19.6875, 11.52308751 ], [ 19.6875, 11.17840187 ], [ 19.3359375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 11.52308751 ], [ 19.3359375, 11.86735091 ], [ 19.6875, 11.86735091 ], [ 19.6875, 11.52308751 ], [ 19.3359375, 11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 2.10889866 ], [ 19.3359375, 2.46018118 ], [ 19.6875, 2.46018118 ], [ 19.6875, 2.10889866 ], [ 19.3359375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 2.46018118 ], [ 19.3359375, 2.81137119 ], [ 19.6875, 2.81137119 ], [ 19.6875, 2.46018118 ], [ 19.3359375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 2.81137119 ], [ 19.3359375, 3.16245553 ], [ 19.6875, 3.16245553 ], [ 19.6875, 2.81137119 ], [ 19.3359375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 3.16245553 ], [ 19.3359375, 3.51342105 ], [ 19.6875, 3.51342105 ], [ 19.6875, 3.16245553 ], [ 19.3359375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 3.51342105 ], [ 19.3359375, 3.86425462 ], [ 19.6875, 3.86425462 ], [ 19.6875, 3.51342105 ], [ 19.3359375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 3.86425462 ], [ 19.3359375, 4.21494314 ], [ 19.6875, 4.21494314 ], [ 19.6875, 3.86425462 ], [ 19.3359375, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 4.21494314 ], [ 19.3359375, 4.56547355 ], [ 19.6875, 4.56547355 ], [ 19.6875, 4.21494314 ], [ 19.3359375, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 4.56547355 ], [ 19.3359375, 4.9158328 ], [ 19.6875, 4.9158328 ], [ 19.6875, 4.56547355 ], [ 19.3359375, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 4.9158328 ], [ 19.3359375, 5.26600788 ], [ 19.6875, 5.26600788 ], [ 19.6875, 4.9158328 ], [ 19.3359375, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 5.26600788 ], [ 19.3359375, 5.61598582 ], [ 19.6875, 5.61598582 ], [ 19.6875, 5.26600788 ], [ 19.3359375, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 5.61598582 ], [ 19.3359375, 5.96575367 ], [ 19.6875, 5.96575367 ], [ 19.6875, 5.61598582 ], [ 19.3359375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 5.96575367 ], [ 19.3359375, 6.31529854 ], [ 19.6875, 6.31529854 ], [ 19.6875, 5.96575367 ], [ 19.3359375, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 6.31529854 ], [ 19.3359375, 6.66460756 ], [ 19.6875, 6.66460756 ], [ 19.6875, 6.31529854 ], [ 19.3359375, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 6.66460756 ], [ 19.3359375, 7.01366793 ], [ 19.6875, 7.01366793 ], [ 19.6875, 6.66460756 ], [ 19.3359375, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 7.01366793 ], [ 19.3359375, 7.36246687 ], [ 19.6875, 7.36246687 ], [ 19.6875, 7.01366793 ], [ 19.3359375, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 7.36246687 ], [ 19.3359375, 7.71099166 ], [ 19.6875, 7.71099166 ], [ 19.6875, 7.36246687 ], [ 19.3359375, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 7.71099166 ], [ 19.3359375, 8.05922963 ], [ 19.6875, 8.05922963 ], [ 19.6875, 7.71099166 ], [ 19.3359375, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 8.05922963 ], [ 19.3359375, 8.40716816 ], [ 19.6875, 8.40716816 ], [ 19.6875, 8.05922963 ], [ 19.3359375, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 8.40716816 ], [ 19.3359375, 8.7547947 ], [ 19.6875, 8.7547947 ], [ 19.6875, 8.40716816 ], [ 19.3359375, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 8.7547947 ], [ 19.3359375, 9.10209674 ], [ 19.6875, 9.10209674 ], [ 19.6875, 8.7547947 ], [ 19.3359375, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 9.10209674 ], [ 19.3359375, 9.44906183 ], [ 19.6875, 9.44906183 ], [ 19.6875, 9.10209674 ], [ 19.3359375, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 9.44906183 ], [ 19.3359375, 9.79567758 ], [ 19.6875, 9.79567758 ], [ 19.6875, 9.44906183 ], [ 19.3359375, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 9.79567758 ], [ 19.3359375, 10.14193169 ], [ 19.6875, 10.14193169 ], [ 19.6875, 9.79567758 ], [ 19.3359375, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, -0.35156029 ], [ 19.6875, 0 ], [ 20.0390625, 0 ], [ 20.0390625, -0.35156029 ], [ 19.6875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, -0.70310735 ], [ 19.6875, -0.35156029 ], [ 20.0390625, -0.35156029 ], [ 20.0390625, -0.70310735 ], [ 19.6875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, -1.05462794 ], [ 19.6875, -0.70310735 ], [ 20.0390625, -0.70310735 ], [ 20.0390625, -1.05462794 ], [ 19.6875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, -1.40610884 ], [ 19.6875, -1.05462794 ], [ 20.0390625, -1.05462794 ], [ 20.0390625, -1.40610884 ], [ 19.6875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, -1.75753681 ], [ 19.6875, -1.40610884 ], [ 20.0390625, -1.40610884 ], [ 20.0390625, -1.75753681 ], [ 19.6875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, -2.10889866 ], [ 19.6875, -1.75753681 ], [ 20.0390625, -1.75753681 ], [ 20.0390625, -2.10889866 ], [ 19.6875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, -2.46018118 ], [ 19.6875, -2.10889866 ], [ 20.0390625, -2.10889866 ], [ 20.0390625, -2.46018118 ], [ 19.6875, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, -2.81137119 ], [ 19.6875, -2.46018118 ], [ 20.0390625, -2.46018118 ], [ 20.0390625, -2.81137119 ], [ 19.6875, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, -3.16245553 ], [ 19.6875, -2.81137119 ], [ 20.0390625, -2.81137119 ], [ 20.0390625, -3.16245553 ], [ 19.6875, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 0 ], [ 19.6875, 0.35156029 ], [ 20.0390625, 0.35156029 ], [ 20.0390625, 0 ], [ 19.6875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 0.35156029 ], [ 19.6875, 0.70310735 ], [ 20.0390625, 0.70310735 ], [ 20.0390625, 0.35156029 ], [ 19.6875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 0.70310735 ], [ 19.6875, 1.05462794 ], [ 20.0390625, 1.05462794 ], [ 20.0390625, 0.70310735 ], [ 19.6875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 1.05462794 ], [ 19.6875, 1.40610884 ], [ 20.0390625, 1.40610884 ], [ 20.0390625, 1.05462794 ], [ 19.6875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 1.40610884 ], [ 19.6875, 1.75753681 ], [ 20.0390625, 1.75753681 ], [ 20.0390625, 1.40610884 ], [ 19.6875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 1.75753681 ], [ 19.6875, 2.10889866 ], [ 20.0390625, 2.10889866 ], [ 20.0390625, 1.75753681 ], [ 19.6875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 10.14193169 ], [ 19.6875, 10.48781188 ], [ 20.0390625, 10.48781188 ], [ 20.0390625, 10.14193169 ], [ 19.6875, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 10.48781188 ], [ 19.6875, 10.83330598 ], [ 20.0390625, 10.83330598 ], [ 20.0390625, 10.48781188 ], [ 19.6875, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 10.83330598 ], [ 19.6875, 11.17840187 ], [ 20.0390625, 11.17840187 ], [ 20.0390625, 10.83330598 ], [ 19.6875, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 2.10889866 ], [ 19.6875, 2.46018118 ], [ 20.0390625, 2.46018118 ], [ 20.0390625, 2.10889866 ], [ 19.6875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 2.46018118 ], [ 19.6875, 2.81137119 ], [ 20.0390625, 2.81137119 ], [ 20.0390625, 2.46018118 ], [ 19.6875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 2.81137119 ], [ 19.6875, 3.16245553 ], [ 20.0390625, 3.16245553 ], [ 20.0390625, 2.81137119 ], [ 19.6875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 3.16245553 ], [ 19.6875, 3.51342105 ], [ 20.0390625, 3.51342105 ], [ 20.0390625, 3.16245553 ], [ 19.6875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 3.51342105 ], [ 19.6875, 3.86425462 ], [ 20.0390625, 3.86425462 ], [ 20.0390625, 3.51342105 ], [ 19.6875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 3.86425462 ], [ 19.6875, 4.21494314 ], [ 20.0390625, 4.21494314 ], [ 20.0390625, 3.86425462 ], [ 19.6875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 4.21494314 ], [ 19.6875, 4.56547355 ], [ 20.0390625, 4.56547355 ], [ 20.0390625, 4.21494314 ], [ 19.6875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 4.56547355 ], [ 19.6875, 4.9158328 ], [ 20.0390625, 4.9158328 ], [ 20.0390625, 4.56547355 ], [ 19.6875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 4.9158328 ], [ 19.6875, 5.26600788 ], [ 20.0390625, 5.26600788 ], [ 20.0390625, 4.9158328 ], [ 19.6875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 5.26600788 ], [ 19.6875, 5.61598582 ], [ 20.0390625, 5.61598582 ], [ 20.0390625, 5.26600788 ], [ 19.6875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 5.61598582 ], [ 19.6875, 5.96575367 ], [ 20.0390625, 5.96575367 ], [ 20.0390625, 5.61598582 ], [ 19.6875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 5.96575367 ], [ 19.6875, 6.31529854 ], [ 20.0390625, 6.31529854 ], [ 20.0390625, 5.96575367 ], [ 19.6875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 6.31529854 ], [ 19.6875, 6.66460756 ], [ 20.0390625, 6.66460756 ], [ 20.0390625, 6.31529854 ], [ 19.6875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 6.66460756 ], [ 19.6875, 7.01366793 ], [ 20.0390625, 7.01366793 ], [ 20.0390625, 6.66460756 ], [ 19.6875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 7.01366793 ], [ 19.6875, 7.36246687 ], [ 20.0390625, 7.36246687 ], [ 20.0390625, 7.01366793 ], [ 19.6875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 7.36246687 ], [ 19.6875, 7.71099166 ], [ 20.0390625, 7.71099166 ], [ 20.0390625, 7.36246687 ], [ 19.6875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 7.71099166 ], [ 19.6875, 8.05922963 ], [ 20.0390625, 8.05922963 ], [ 20.0390625, 7.71099166 ], [ 19.6875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 8.05922963 ], [ 19.6875, 8.40716816 ], [ 20.0390625, 8.40716816 ], [ 20.0390625, 8.05922963 ], [ 19.6875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 8.40716816 ], [ 19.6875, 8.7547947 ], [ 20.0390625, 8.7547947 ], [ 20.0390625, 8.40716816 ], [ 19.6875, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 8.7547947 ], [ 19.6875, 9.10209674 ], [ 20.0390625, 9.10209674 ], [ 20.0390625, 8.7547947 ], [ 19.6875, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 9.10209674 ], [ 19.6875, 9.44906183 ], [ 20.0390625, 9.44906183 ], [ 20.0390625, 9.10209674 ], [ 19.6875, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 9.44906183 ], [ 19.6875, 9.79567758 ], [ 20.0390625, 9.79567758 ], [ 20.0390625, 9.44906183 ], [ 19.6875, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 9.79567758 ], [ 19.6875, 10.14193169 ], [ 20.0390625, 10.14193169 ], [ 20.0390625, 9.79567758 ], [ 19.6875, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -0.35156029 ], [ 20.0390625, 0 ], [ 20.390625, 0 ], [ 20.390625, -0.35156029 ], [ 20.0390625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -0.70310735 ], [ 20.0390625, -0.35156029 ], [ 20.390625, -0.35156029 ], [ 20.390625, -0.70310735 ], [ 20.0390625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -1.05462794 ], [ 20.0390625, -0.70310735 ], [ 20.390625, -0.70310735 ], [ 20.390625, -1.05462794 ], [ 20.0390625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -1.40610884 ], [ 20.0390625, -1.05462794 ], [ 20.390625, -1.05462794 ], [ 20.390625, -1.40610884 ], [ 20.0390625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -1.75753681 ], [ 20.0390625, -1.40610884 ], [ 20.390625, -1.40610884 ], [ 20.390625, -1.75753681 ], [ 20.0390625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -2.10889866 ], [ 20.0390625, -1.75753681 ], [ 20.390625, -1.75753681 ], [ 20.390625, -2.10889866 ], [ 20.0390625, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -2.46018118 ], [ 20.0390625, -2.10889866 ], [ 20.390625, -2.10889866 ], [ 20.390625, -2.46018118 ], [ 20.0390625, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -2.81137119 ], [ 20.0390625, -2.46018118 ], [ 20.390625, -2.46018118 ], [ 20.390625, -2.81137119 ], [ 20.0390625, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -3.16245553 ], [ 20.0390625, -2.81137119 ], [ 20.390625, -2.81137119 ], [ 20.390625, -3.16245553 ], [ 20.0390625, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -3.51342105 ], [ 20.0390625, -3.16245553 ], [ 20.390625, -3.16245553 ], [ 20.390625, -3.51342105 ], [ 20.0390625, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -3.86425462 ], [ 20.0390625, -3.51342105 ], [ 20.390625, -3.51342105 ], [ 20.390625, -3.86425462 ], [ 20.0390625, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, -4.21494314 ], [ 20.0390625, -3.86425462 ], [ 20.390625, -3.86425462 ], [ 20.390625, -4.21494314 ], [ 20.0390625, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 0 ], [ 20.0390625, 0.35156029 ], [ 20.390625, 0.35156029 ], [ 20.390625, 0 ], [ 20.0390625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 0.35156029 ], [ 20.0390625, 0.70310735 ], [ 20.390625, 0.70310735 ], [ 20.390625, 0.35156029 ], [ 20.0390625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 0.70310735 ], [ 20.0390625, 1.05462794 ], [ 20.390625, 1.05462794 ], [ 20.390625, 0.70310735 ], [ 20.0390625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 1.05462794 ], [ 20.0390625, 1.40610884 ], [ 20.390625, 1.40610884 ], [ 20.390625, 1.05462794 ], [ 20.0390625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 1.40610884 ], [ 20.0390625, 1.75753681 ], [ 20.390625, 1.75753681 ], [ 20.390625, 1.40610884 ], [ 20.0390625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 1.75753681 ], [ 20.0390625, 2.10889866 ], [ 20.390625, 2.10889866 ], [ 20.390625, 1.75753681 ], [ 20.0390625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 10.14193169 ], [ 20.0390625, 10.48781188 ], [ 20.390625, 10.48781188 ], [ 20.390625, 10.14193169 ], [ 20.0390625, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 2.10889866 ], [ 20.0390625, 2.46018118 ], [ 20.390625, 2.46018118 ], [ 20.390625, 2.10889866 ], [ 20.0390625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 2.46018118 ], [ 20.0390625, 2.81137119 ], [ 20.390625, 2.81137119 ], [ 20.390625, 2.46018118 ], [ 20.0390625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 2.81137119 ], [ 20.0390625, 3.16245553 ], [ 20.390625, 3.16245553 ], [ 20.390625, 2.81137119 ], [ 20.0390625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 3.16245553 ], [ 20.0390625, 3.51342105 ], [ 20.390625, 3.51342105 ], [ 20.390625, 3.16245553 ], [ 20.0390625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 3.51342105 ], [ 20.0390625, 3.86425462 ], [ 20.390625, 3.86425462 ], [ 20.390625, 3.51342105 ], [ 20.0390625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 3.86425462 ], [ 20.0390625, 4.21494314 ], [ 20.390625, 4.21494314 ], [ 20.390625, 3.86425462 ], [ 20.0390625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 4.21494314 ], [ 20.0390625, 4.56547355 ], [ 20.390625, 4.56547355 ], [ 20.390625, 4.21494314 ], [ 20.0390625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 4.56547355 ], [ 20.0390625, 4.9158328 ], [ 20.390625, 4.9158328 ], [ 20.390625, 4.56547355 ], [ 20.0390625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 4.9158328 ], [ 20.0390625, 5.26600788 ], [ 20.390625, 5.26600788 ], [ 20.390625, 4.9158328 ], [ 20.0390625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 5.26600788 ], [ 20.0390625, 5.61598582 ], [ 20.390625, 5.61598582 ], [ 20.390625, 5.26600788 ], [ 20.0390625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 5.61598582 ], [ 20.0390625, 5.96575367 ], [ 20.390625, 5.96575367 ], [ 20.390625, 5.61598582 ], [ 20.0390625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 5.96575367 ], [ 20.0390625, 6.31529854 ], [ 20.390625, 6.31529854 ], [ 20.390625, 5.96575367 ], [ 20.0390625, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 6.31529854 ], [ 20.0390625, 6.66460756 ], [ 20.390625, 6.66460756 ], [ 20.390625, 6.31529854 ], [ 20.0390625, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 6.66460756 ], [ 20.0390625, 7.01366793 ], [ 20.390625, 7.01366793 ], [ 20.390625, 6.66460756 ], [ 20.0390625, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 7.01366793 ], [ 20.0390625, 7.36246687 ], [ 20.390625, 7.36246687 ], [ 20.390625, 7.01366793 ], [ 20.0390625, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 7.36246687 ], [ 20.0390625, 7.71099166 ], [ 20.390625, 7.71099166 ], [ 20.390625, 7.36246687 ], [ 20.0390625, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 7.71099166 ], [ 20.0390625, 8.05922963 ], [ 20.390625, 8.05922963 ], [ 20.390625, 7.71099166 ], [ 20.0390625, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 8.05922963 ], [ 20.0390625, 8.40716816 ], [ 20.390625, 8.40716816 ], [ 20.390625, 8.05922963 ], [ 20.0390625, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 8.40716816 ], [ 20.0390625, 8.7547947 ], [ 20.390625, 8.7547947 ], [ 20.390625, 8.40716816 ], [ 20.0390625, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 8.7547947 ], [ 20.0390625, 9.10209674 ], [ 20.390625, 9.10209674 ], [ 20.390625, 8.7547947 ], [ 20.0390625, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 9.10209674 ], [ 20.0390625, 9.44906183 ], [ 20.390625, 9.44906183 ], [ 20.390625, 9.10209674 ], [ 20.0390625, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 9.44906183 ], [ 20.0390625, 9.79567758 ], [ 20.390625, 9.79567758 ], [ 20.390625, 9.44906183 ], [ 20.0390625, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 9.79567758 ], [ 20.0390625, 10.14193169 ], [ 20.390625, 10.14193169 ], [ 20.390625, 9.79567758 ], [ 20.0390625, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -0.35156029 ], [ 20.390625, 0 ], [ 20.7421875, 0 ], [ 20.7421875, -0.35156029 ], [ 20.390625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -0.70310735 ], [ 20.390625, -0.35156029 ], [ 20.7421875, -0.35156029 ], [ 20.7421875, -0.70310735 ], [ 20.390625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -1.05462794 ], [ 20.390625, -0.70310735 ], [ 20.7421875, -0.70310735 ], [ 20.7421875, -1.05462794 ], [ 20.390625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -1.40610884 ], [ 20.390625, -1.05462794 ], [ 20.7421875, -1.05462794 ], [ 20.7421875, -1.40610884 ], [ 20.390625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -1.75753681 ], [ 20.390625, -1.40610884 ], [ 20.7421875, -1.40610884 ], [ 20.7421875, -1.75753681 ], [ 20.390625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -2.10889866 ], [ 20.390625, -1.75753681 ], [ 20.7421875, -1.75753681 ], [ 20.7421875, -2.10889866 ], [ 20.390625, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -2.46018118 ], [ 20.390625, -2.10889866 ], [ 20.7421875, -2.10889866 ], [ 20.7421875, -2.46018118 ], [ 20.390625, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -2.81137119 ], [ 20.390625, -2.46018118 ], [ 20.7421875, -2.46018118 ], [ 20.7421875, -2.81137119 ], [ 20.390625, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -3.16245553 ], [ 20.390625, -2.81137119 ], [ 20.7421875, -2.81137119 ], [ 20.7421875, -3.16245553 ], [ 20.390625, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -3.51342105 ], [ 20.390625, -3.16245553 ], [ 20.7421875, -3.16245553 ], [ 20.7421875, -3.51342105 ], [ 20.390625, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -3.86425462 ], [ 20.390625, -3.51342105 ], [ 20.7421875, -3.51342105 ], [ 20.7421875, -3.86425462 ], [ 20.390625, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -4.21494314 ], [ 20.390625, -3.86425462 ], [ 20.7421875, -3.86425462 ], [ 20.7421875, -4.21494314 ], [ 20.390625, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -4.56547355 ], [ 20.390625, -4.21494314 ], [ 20.7421875, -4.21494314 ], [ 20.7421875, -4.56547355 ], [ 20.390625, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, -4.9158328 ], [ 20.390625, -4.56547355 ], [ 20.7421875, -4.56547355 ], [ 20.7421875, -4.9158328 ], [ 20.390625, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 0 ], [ 20.390625, 0.35156029 ], [ 20.7421875, 0.35156029 ], [ 20.7421875, 0 ], [ 20.390625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 0.35156029 ], [ 20.390625, 0.70310735 ], [ 20.7421875, 0.70310735 ], [ 20.7421875, 0.35156029 ], [ 20.390625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 0.70310735 ], [ 20.390625, 1.05462794 ], [ 20.7421875, 1.05462794 ], [ 20.7421875, 0.70310735 ], [ 20.390625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 1.05462794 ], [ 20.390625, 1.40610884 ], [ 20.7421875, 1.40610884 ], [ 20.7421875, 1.05462794 ], [ 20.390625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 1.40610884 ], [ 20.390625, 1.75753681 ], [ 20.7421875, 1.75753681 ], [ 20.7421875, 1.40610884 ], [ 20.390625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 1.75753681 ], [ 20.390625, 2.10889866 ], [ 20.7421875, 2.10889866 ], [ 20.7421875, 1.75753681 ], [ 20.390625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 2.10889866 ], [ 20.390625, 2.46018118 ], [ 20.7421875, 2.46018118 ], [ 20.7421875, 2.10889866 ], [ 20.390625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 2.46018118 ], [ 20.390625, 2.81137119 ], [ 20.7421875, 2.81137119 ], [ 20.7421875, 2.46018118 ], [ 20.390625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 2.81137119 ], [ 20.390625, 3.16245553 ], [ 20.7421875, 3.16245553 ], [ 20.7421875, 2.81137119 ], [ 20.390625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 3.16245553 ], [ 20.390625, 3.51342105 ], [ 20.7421875, 3.51342105 ], [ 20.7421875, 3.16245553 ], [ 20.390625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 3.51342105 ], [ 20.390625, 3.86425462 ], [ 20.7421875, 3.86425462 ], [ 20.7421875, 3.51342105 ], [ 20.390625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 3.86425462 ], [ 20.390625, 4.21494314 ], [ 20.7421875, 4.21494314 ], [ 20.7421875, 3.86425462 ], [ 20.390625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 4.21494314 ], [ 20.390625, 4.56547355 ], [ 20.7421875, 4.56547355 ], [ 20.7421875, 4.21494314 ], [ 20.390625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 4.56547355 ], [ 20.390625, 4.9158328 ], [ 20.7421875, 4.9158328 ], [ 20.7421875, 4.56547355 ], [ 20.390625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 4.9158328 ], [ 20.390625, 5.26600788 ], [ 20.7421875, 5.26600788 ], [ 20.7421875, 4.9158328 ], [ 20.390625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 5.26600788 ], [ 20.390625, 5.61598582 ], [ 20.7421875, 5.61598582 ], [ 20.7421875, 5.26600788 ], [ 20.390625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 5.61598582 ], [ 20.390625, 5.96575367 ], [ 20.7421875, 5.96575367 ], [ 20.7421875, 5.61598582 ], [ 20.390625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 5.96575367 ], [ 20.390625, 6.31529854 ], [ 20.7421875, 6.31529854 ], [ 20.7421875, 5.96575367 ], [ 20.390625, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 6.31529854 ], [ 20.390625, 6.66460756 ], [ 20.7421875, 6.66460756 ], [ 20.7421875, 6.31529854 ], [ 20.390625, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 6.66460756 ], [ 20.390625, 7.01366793 ], [ 20.7421875, 7.01366793 ], [ 20.7421875, 6.66460756 ], [ 20.390625, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 7.01366793 ], [ 20.390625, 7.36246687 ], [ 20.7421875, 7.36246687 ], [ 20.7421875, 7.01366793 ], [ 20.390625, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 7.36246687 ], [ 20.390625, 7.71099166 ], [ 20.7421875, 7.71099166 ], [ 20.7421875, 7.36246687 ], [ 20.390625, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 7.71099166 ], [ 20.390625, 8.05922963 ], [ 20.7421875, 8.05922963 ], [ 20.7421875, 7.71099166 ], [ 20.390625, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 8.05922963 ], [ 20.390625, 8.40716816 ], [ 20.7421875, 8.40716816 ], [ 20.7421875, 8.05922963 ], [ 20.390625, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 8.40716816 ], [ 20.390625, 8.7547947 ], [ 20.7421875, 8.7547947 ], [ 20.7421875, 8.40716816 ], [ 20.390625, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 8.7547947 ], [ 20.390625, 9.10209674 ], [ 20.7421875, 9.10209674 ], [ 20.7421875, 8.7547947 ], [ 20.390625, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 9.10209674 ], [ 20.390625, 9.44906183 ], [ 20.7421875, 9.44906183 ], [ 20.7421875, 9.10209674 ], [ 20.390625, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 9.44906183 ], [ 20.390625, 9.79567758 ], [ 20.7421875, 9.79567758 ], [ 20.7421875, 9.44906183 ], [ 20.390625, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -0.35156029 ], [ 20.7421875, 0 ], [ 21.09375, 0 ], [ 21.09375, -0.35156029 ], [ 20.7421875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -0.70310735 ], [ 20.7421875, -0.35156029 ], [ 21.09375, -0.35156029 ], [ 21.09375, -0.70310735 ], [ 20.7421875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -1.05462794 ], [ 20.7421875, -0.70310735 ], [ 21.09375, -0.70310735 ], [ 21.09375, -1.05462794 ], [ 20.7421875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -1.40610884 ], [ 20.7421875, -1.05462794 ], [ 21.09375, -1.05462794 ], [ 21.09375, -1.40610884 ], [ 20.7421875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -1.75753681 ], [ 20.7421875, -1.40610884 ], [ 21.09375, -1.40610884 ], [ 21.09375, -1.75753681 ], [ 20.7421875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -2.10889866 ], [ 20.7421875, -1.75753681 ], [ 21.09375, -1.75753681 ], [ 21.09375, -2.10889866 ], [ 20.7421875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -2.46018118 ], [ 20.7421875, -2.10889866 ], [ 21.09375, -2.10889866 ], [ 21.09375, -2.46018118 ], [ 20.7421875, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -2.81137119 ], [ 20.7421875, -2.46018118 ], [ 21.09375, -2.46018118 ], [ 21.09375, -2.81137119 ], [ 20.7421875, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -3.16245553 ], [ 20.7421875, -2.81137119 ], [ 21.09375, -2.81137119 ], [ 21.09375, -3.16245553 ], [ 20.7421875, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -3.51342105 ], [ 20.7421875, -3.16245553 ], [ 21.09375, -3.16245553 ], [ 21.09375, -3.51342105 ], [ 20.7421875, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -3.86425462 ], [ 20.7421875, -3.51342105 ], [ 21.09375, -3.51342105 ], [ 21.09375, -3.86425462 ], [ 20.7421875, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -4.21494314 ], [ 20.7421875, -3.86425462 ], [ 21.09375, -3.86425462 ], [ 21.09375, -4.21494314 ], [ 20.7421875, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, -4.56547355 ], [ 20.7421875, -4.21494314 ], [ 21.09375, -4.21494314 ], [ 21.09375, -4.56547355 ], [ 20.7421875, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 0 ], [ 20.7421875, 0.35156029 ], [ 21.09375, 0.35156029 ], [ 21.09375, 0 ], [ 20.7421875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 0.35156029 ], [ 20.7421875, 0.70310735 ], [ 21.09375, 0.70310735 ], [ 21.09375, 0.35156029 ], [ 20.7421875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 0.70310735 ], [ 20.7421875, 1.05462794 ], [ 21.09375, 1.05462794 ], [ 21.09375, 0.70310735 ], [ 20.7421875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 1.05462794 ], [ 20.7421875, 1.40610884 ], [ 21.09375, 1.40610884 ], [ 21.09375, 1.05462794 ], [ 20.7421875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 1.40610884 ], [ 20.7421875, 1.75753681 ], [ 21.09375, 1.75753681 ], [ 21.09375, 1.40610884 ], [ 20.7421875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 1.75753681 ], [ 20.7421875, 2.10889866 ], [ 21.09375, 2.10889866 ], [ 21.09375, 1.75753681 ], [ 20.7421875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 2.10889866 ], [ 20.7421875, 2.46018118 ], [ 21.09375, 2.46018118 ], [ 21.09375, 2.10889866 ], [ 20.7421875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 2.46018118 ], [ 20.7421875, 2.81137119 ], [ 21.09375, 2.81137119 ], [ 21.09375, 2.46018118 ], [ 20.7421875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 2.81137119 ], [ 20.7421875, 3.16245553 ], [ 21.09375, 3.16245553 ], [ 21.09375, 2.81137119 ], [ 20.7421875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 3.16245553 ], [ 20.7421875, 3.51342105 ], [ 21.09375, 3.51342105 ], [ 21.09375, 3.16245553 ], [ 20.7421875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 3.51342105 ], [ 20.7421875, 3.86425462 ], [ 21.09375, 3.86425462 ], [ 21.09375, 3.51342105 ], [ 20.7421875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 3.86425462 ], [ 20.7421875, 4.21494314 ], [ 21.09375, 4.21494314 ], [ 21.09375, 3.86425462 ], [ 20.7421875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 4.21494314 ], [ 20.7421875, 4.56547355 ], [ 21.09375, 4.56547355 ], [ 21.09375, 4.21494314 ], [ 20.7421875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 4.56547355 ], [ 20.7421875, 4.9158328 ], [ 21.09375, 4.9158328 ], [ 21.09375, 4.56547355 ], [ 20.7421875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 4.9158328 ], [ 20.7421875, 5.26600788 ], [ 21.09375, 5.26600788 ], [ 21.09375, 4.9158328 ], [ 20.7421875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 5.26600788 ], [ 20.7421875, 5.61598582 ], [ 21.09375, 5.61598582 ], [ 21.09375, 5.26600788 ], [ 20.7421875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 5.61598582 ], [ 20.7421875, 5.96575367 ], [ 21.09375, 5.96575367 ], [ 21.09375, 5.61598582 ], [ 20.7421875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 5.96575367 ], [ 20.7421875, 6.31529854 ], [ 21.09375, 6.31529854 ], [ 21.09375, 5.96575367 ], [ 20.7421875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 6.31529854 ], [ 20.7421875, 6.66460756 ], [ 21.09375, 6.66460756 ], [ 21.09375, 6.31529854 ], [ 20.7421875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 6.66460756 ], [ 20.7421875, 7.01366793 ], [ 21.09375, 7.01366793 ], [ 21.09375, 6.66460756 ], [ 20.7421875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 7.01366793 ], [ 20.7421875, 7.36246687 ], [ 21.09375, 7.36246687 ], [ 21.09375, 7.01366793 ], [ 20.7421875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 7.36246687 ], [ 20.7421875, 7.71099166 ], [ 21.09375, 7.71099166 ], [ 21.09375, 7.36246687 ], [ 20.7421875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 7.71099166 ], [ 20.7421875, 8.05922963 ], [ 21.09375, 8.05922963 ], [ 21.09375, 7.71099166 ], [ 20.7421875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 8.05922963 ], [ 20.7421875, 8.40716816 ], [ 21.09375, 8.40716816 ], [ 21.09375, 8.05922963 ], [ 20.7421875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 8.40716816 ], [ 20.7421875, 8.7547947 ], [ 21.09375, 8.7547947 ], [ 21.09375, 8.40716816 ], [ 20.7421875, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 8.7547947 ], [ 20.7421875, 9.10209674 ], [ 21.09375, 9.10209674 ], [ 21.09375, 8.7547947 ], [ 20.7421875, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -0.35156029 ], [ 21.09375, 0 ], [ 21.4453125, 0 ], [ 21.4453125, -0.35156029 ], [ 21.09375, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -0.70310735 ], [ 21.09375, -0.35156029 ], [ 21.4453125, -0.35156029 ], [ 21.4453125, -0.70310735 ], [ 21.09375, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -1.05462794 ], [ 21.09375, -0.70310735 ], [ 21.4453125, -0.70310735 ], [ 21.4453125, -1.05462794 ], [ 21.09375, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -1.40610884 ], [ 21.09375, -1.05462794 ], [ 21.4453125, -1.05462794 ], [ 21.4453125, -1.40610884 ], [ 21.09375, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -1.75753681 ], [ 21.09375, -1.40610884 ], [ 21.4453125, -1.40610884 ], [ 21.4453125, -1.75753681 ], [ 21.09375, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -2.10889866 ], [ 21.09375, -1.75753681 ], [ 21.4453125, -1.75753681 ], [ 21.4453125, -2.10889866 ], [ 21.09375, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -2.46018118 ], [ 21.09375, -2.10889866 ], [ 21.4453125, -2.10889866 ], [ 21.4453125, -2.46018118 ], [ 21.09375, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -2.81137119 ], [ 21.09375, -2.46018118 ], [ 21.4453125, -2.46018118 ], [ 21.4453125, -2.81137119 ], [ 21.09375, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -3.16245553 ], [ 21.09375, -2.81137119 ], [ 21.4453125, -2.81137119 ], [ 21.4453125, -3.16245553 ], [ 21.09375, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -3.51342105 ], [ 21.09375, -3.16245553 ], [ 21.4453125, -3.16245553 ], [ 21.4453125, -3.51342105 ], [ 21.09375, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, -3.86425462 ], [ 21.09375, -3.51342105 ], [ 21.4453125, -3.51342105 ], [ 21.4453125, -3.86425462 ], [ 21.09375, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 0 ], [ 21.09375, 0.35156029 ], [ 21.4453125, 0.35156029 ], [ 21.4453125, 0 ], [ 21.09375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 0.35156029 ], [ 21.09375, 0.70310735 ], [ 21.4453125, 0.70310735 ], [ 21.4453125, 0.35156029 ], [ 21.09375, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 0.70310735 ], [ 21.09375, 1.05462794 ], [ 21.4453125, 1.05462794 ], [ 21.4453125, 0.70310735 ], [ 21.09375, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 1.05462794 ], [ 21.09375, 1.40610884 ], [ 21.4453125, 1.40610884 ], [ 21.4453125, 1.05462794 ], [ 21.09375, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 1.40610884 ], [ 21.09375, 1.75753681 ], [ 21.4453125, 1.75753681 ], [ 21.4453125, 1.40610884 ], [ 21.09375, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 1.75753681 ], [ 21.09375, 2.10889866 ], [ 21.4453125, 2.10889866 ], [ 21.4453125, 1.75753681 ], [ 21.09375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 10.14193169 ], [ 21.09375, 10.48781188 ], [ 21.4453125, 10.48781188 ], [ 21.4453125, 10.14193169 ], [ 21.09375, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 10.48781188 ], [ 21.09375, 10.83330598 ], [ 21.4453125, 10.83330598 ], [ 21.4453125, 10.48781188 ], [ 21.09375, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 10.83330598 ], [ 21.09375, 11.17840187 ], [ 21.4453125, 11.17840187 ], [ 21.4453125, 10.83330598 ], [ 21.09375, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 11.17840187 ], [ 21.09375, 11.52308751 ], [ 21.4453125, 11.52308751 ], [ 21.4453125, 11.17840187 ], [ 21.09375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 2.10889866 ], [ 21.09375, 2.46018118 ], [ 21.4453125, 2.46018118 ], [ 21.4453125, 2.10889866 ], [ 21.09375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 2.46018118 ], [ 21.09375, 2.81137119 ], [ 21.4453125, 2.81137119 ], [ 21.4453125, 2.46018118 ], [ 21.09375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 2.81137119 ], [ 21.09375, 3.16245553 ], [ 21.4453125, 3.16245553 ], [ 21.4453125, 2.81137119 ], [ 21.09375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 3.16245553 ], [ 21.09375, 3.51342105 ], [ 21.4453125, 3.51342105 ], [ 21.4453125, 3.16245553 ], [ 21.09375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 3.51342105 ], [ 21.09375, 3.86425462 ], [ 21.4453125, 3.86425462 ], [ 21.4453125, 3.51342105 ], [ 21.09375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 3.86425462 ], [ 21.09375, 4.21494314 ], [ 21.4453125, 4.21494314 ], [ 21.4453125, 3.86425462 ], [ 21.09375, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 4.21494314 ], [ 21.09375, 4.56547355 ], [ 21.4453125, 4.56547355 ], [ 21.4453125, 4.21494314 ], [ 21.09375, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 4.56547355 ], [ 21.09375, 4.9158328 ], [ 21.4453125, 4.9158328 ], [ 21.4453125, 4.56547355 ], [ 21.09375, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 4.9158328 ], [ 21.09375, 5.26600788 ], [ 21.4453125, 5.26600788 ], [ 21.4453125, 4.9158328 ], [ 21.09375, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 5.26600788 ], [ 21.09375, 5.61598582 ], [ 21.4453125, 5.61598582 ], [ 21.4453125, 5.26600788 ], [ 21.09375, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 5.61598582 ], [ 21.09375, 5.96575367 ], [ 21.4453125, 5.96575367 ], [ 21.4453125, 5.61598582 ], [ 21.09375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 5.96575367 ], [ 21.09375, 6.31529854 ], [ 21.4453125, 6.31529854 ], [ 21.4453125, 5.96575367 ], [ 21.09375, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 6.31529854 ], [ 21.09375, 6.66460756 ], [ 21.4453125, 6.66460756 ], [ 21.4453125, 6.31529854 ], [ 21.09375, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 6.66460756 ], [ 21.09375, 7.01366793 ], [ 21.4453125, 7.01366793 ], [ 21.4453125, 6.66460756 ], [ 21.09375, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 7.01366793 ], [ 21.09375, 7.36246687 ], [ 21.4453125, 7.36246687 ], [ 21.4453125, 7.01366793 ], [ 21.09375, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 7.36246687 ], [ 21.09375, 7.71099166 ], [ 21.4453125, 7.71099166 ], [ 21.4453125, 7.36246687 ], [ 21.09375, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 7.71099166 ], [ 21.09375, 8.05922963 ], [ 21.4453125, 8.05922963 ], [ 21.4453125, 7.71099166 ], [ 21.09375, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 8.05922963 ], [ 21.09375, 8.40716816 ], [ 21.4453125, 8.40716816 ], [ 21.4453125, 8.05922963 ], [ 21.09375, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 8.40716816 ], [ 21.09375, 8.7547947 ], [ 21.4453125, 8.7547947 ], [ 21.4453125, 8.40716816 ], [ 21.09375, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 8.7547947 ], [ 21.09375, 9.10209674 ], [ 21.4453125, 9.10209674 ], [ 21.4453125, 8.7547947 ], [ 21.09375, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 9.10209674 ], [ 21.09375, 9.44906183 ], [ 21.4453125, 9.44906183 ], [ 21.4453125, 9.10209674 ], [ 21.09375, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 9.44906183 ], [ 21.09375, 9.79567758 ], [ 21.4453125, 9.79567758 ], [ 21.4453125, 9.44906183 ], [ 21.09375, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 9.79567758 ], [ 21.09375, 10.14193169 ], [ 21.4453125, 10.14193169 ], [ 21.4453125, 9.79567758 ], [ 21.09375, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, -0.35156029 ], [ 21.4453125, 0 ], [ 21.796875, 0 ], [ 21.796875, -0.35156029 ], [ 21.4453125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, -0.70310735 ], [ 21.4453125, -0.35156029 ], [ 21.796875, -0.35156029 ], [ 21.796875, -0.70310735 ], [ 21.4453125, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, -1.05462794 ], [ 21.4453125, -0.70310735 ], [ 21.796875, -0.70310735 ], [ 21.796875, -1.05462794 ], [ 21.4453125, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, -1.40610884 ], [ 21.4453125, -1.05462794 ], [ 21.796875, -1.05462794 ], [ 21.796875, -1.40610884 ], [ 21.4453125, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, -1.75753681 ], [ 21.4453125, -1.40610884 ], [ 21.796875, -1.40610884 ], [ 21.796875, -1.75753681 ], [ 21.4453125, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, -2.10889866 ], [ 21.4453125, -1.75753681 ], [ 21.796875, -1.75753681 ], [ 21.796875, -2.10889866 ], [ 21.4453125, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, -2.46018118 ], [ 21.4453125, -2.10889866 ], [ 21.796875, -2.10889866 ], [ 21.796875, -2.46018118 ], [ 21.4453125, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, -2.81137119 ], [ 21.4453125, -2.46018118 ], [ 21.796875, -2.46018118 ], [ 21.796875, -2.81137119 ], [ 21.4453125, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 0 ], [ 21.4453125, 0.35156029 ], [ 21.796875, 0.35156029 ], [ 21.796875, 0 ], [ 21.4453125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 0.35156029 ], [ 21.4453125, 0.70310735 ], [ 21.796875, 0.70310735 ], [ 21.796875, 0.35156029 ], [ 21.4453125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 0.70310735 ], [ 21.4453125, 1.05462794 ], [ 21.796875, 1.05462794 ], [ 21.796875, 0.70310735 ], [ 21.4453125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 1.05462794 ], [ 21.4453125, 1.40610884 ], [ 21.796875, 1.40610884 ], [ 21.796875, 1.05462794 ], [ 21.4453125, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 1.40610884 ], [ 21.4453125, 1.75753681 ], [ 21.796875, 1.75753681 ], [ 21.796875, 1.40610884 ], [ 21.4453125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 1.75753681 ], [ 21.4453125, 2.10889866 ], [ 21.796875, 2.10889866 ], [ 21.796875, 1.75753681 ], [ 21.4453125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 10.14193169 ], [ 21.4453125, 10.48781188 ], [ 21.796875, 10.48781188 ], [ 21.796875, 10.14193169 ], [ 21.4453125, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 10.48781188 ], [ 21.4453125, 10.83330598 ], [ 21.796875, 10.83330598 ], [ 21.796875, 10.48781188 ], [ 21.4453125, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 10.83330598 ], [ 21.4453125, 11.17840187 ], [ 21.796875, 11.17840187 ], [ 21.796875, 10.83330598 ], [ 21.4453125, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 11.17840187 ], [ 21.4453125, 11.52308751 ], [ 21.796875, 11.52308751 ], [ 21.796875, 11.17840187 ], [ 21.4453125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 11.52308751 ], [ 21.4453125, 11.86735091 ], [ 21.796875, 11.86735091 ], [ 21.796875, 11.52308751 ], [ 21.4453125, 11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 11.86735091 ], [ 21.4453125, 12.21118019 ], [ 21.796875, 12.21118019 ], [ 21.796875, 11.86735091 ], [ 21.4453125, 11.86735091 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 12.21118019 ], [ 21.4453125, 12.55456353 ], [ 21.796875, 12.55456353 ], [ 21.796875, 12.21118019 ], [ 21.4453125, 12.21118019 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 12.55456353 ], [ 21.4453125, 12.89748918 ], [ 21.796875, 12.89748918 ], [ 21.796875, 12.55456353 ], [ 21.4453125, 12.55456353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 2.10889866 ], [ 21.4453125, 2.46018118 ], [ 21.796875, 2.46018118 ], [ 21.796875, 2.10889866 ], [ 21.4453125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 2.46018118 ], [ 21.4453125, 2.81137119 ], [ 21.796875, 2.81137119 ], [ 21.796875, 2.46018118 ], [ 21.4453125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 2.81137119 ], [ 21.4453125, 3.16245553 ], [ 21.796875, 3.16245553 ], [ 21.796875, 2.81137119 ], [ 21.4453125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 3.16245553 ], [ 21.4453125, 3.51342105 ], [ 21.796875, 3.51342105 ], [ 21.796875, 3.16245553 ], [ 21.4453125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 3.51342105 ], [ 21.4453125, 3.86425462 ], [ 21.796875, 3.86425462 ], [ 21.796875, 3.51342105 ], [ 21.4453125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 3.86425462 ], [ 21.4453125, 4.21494314 ], [ 21.796875, 4.21494314 ], [ 21.796875, 3.86425462 ], [ 21.4453125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 4.21494314 ], [ 21.4453125, 4.56547355 ], [ 21.796875, 4.56547355 ], [ 21.796875, 4.21494314 ], [ 21.4453125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 4.56547355 ], [ 21.4453125, 4.9158328 ], [ 21.796875, 4.9158328 ], [ 21.796875, 4.56547355 ], [ 21.4453125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 4.9158328 ], [ 21.4453125, 5.26600788 ], [ 21.796875, 5.26600788 ], [ 21.796875, 4.9158328 ], [ 21.4453125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 5.26600788 ], [ 21.4453125, 5.61598582 ], [ 21.796875, 5.61598582 ], [ 21.796875, 5.26600788 ], [ 21.4453125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 5.61598582 ], [ 21.4453125, 5.96575367 ], [ 21.796875, 5.96575367 ], [ 21.796875, 5.61598582 ], [ 21.4453125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 5.96575367 ], [ 21.4453125, 6.31529854 ], [ 21.796875, 6.31529854 ], [ 21.796875, 5.96575367 ], [ 21.4453125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 6.31529854 ], [ 21.4453125, 6.66460756 ], [ 21.796875, 6.66460756 ], [ 21.796875, 6.31529854 ], [ 21.4453125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 6.66460756 ], [ 21.4453125, 7.01366793 ], [ 21.796875, 7.01366793 ], [ 21.796875, 6.66460756 ], [ 21.4453125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 7.01366793 ], [ 21.4453125, 7.36246687 ], [ 21.796875, 7.36246687 ], [ 21.796875, 7.01366793 ], [ 21.4453125, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 7.36246687 ], [ 21.4453125, 7.71099166 ], [ 21.796875, 7.71099166 ], [ 21.796875, 7.36246687 ], [ 21.4453125, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 7.71099166 ], [ 21.4453125, 8.05922963 ], [ 21.796875, 8.05922963 ], [ 21.796875, 7.71099166 ], [ 21.4453125, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 8.05922963 ], [ 21.4453125, 8.40716816 ], [ 21.796875, 8.40716816 ], [ 21.796875, 8.05922963 ], [ 21.4453125, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 8.40716816 ], [ 21.4453125, 8.7547947 ], [ 21.796875, 8.7547947 ], [ 21.796875, 8.40716816 ], [ 21.4453125, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 8.7547947 ], [ 21.4453125, 9.10209674 ], [ 21.796875, 9.10209674 ], [ 21.796875, 8.7547947 ], [ 21.4453125, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 9.10209674 ], [ 21.4453125, 9.44906183 ], [ 21.796875, 9.44906183 ], [ 21.796875, 9.10209674 ], [ 21.4453125, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 9.44906183 ], [ 21.4453125, 9.79567758 ], [ 21.796875, 9.79567758 ], [ 21.796875, 9.44906183 ], [ 21.4453125, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 9.79567758 ], [ 21.4453125, 10.14193169 ], [ 21.796875, 10.14193169 ], [ 21.796875, 9.79567758 ], [ 21.4453125, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, -0.35156029 ], [ 21.796875, 0 ], [ 22.1484375, 0 ], [ 22.1484375, -0.35156029 ], [ 21.796875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, -0.70310735 ], [ 21.796875, -0.35156029 ], [ 22.1484375, -0.35156029 ], [ 22.1484375, -0.70310735 ], [ 21.796875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, -1.05462794 ], [ 21.796875, -0.70310735 ], [ 22.1484375, -0.70310735 ], [ 22.1484375, -1.05462794 ], [ 21.796875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, -1.40610884 ], [ 21.796875, -1.05462794 ], [ 22.1484375, -1.05462794 ], [ 22.1484375, -1.40610884 ], [ 21.796875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, -1.75753681 ], [ 21.796875, -1.40610884 ], [ 22.1484375, -1.40610884 ], [ 22.1484375, -1.75753681 ], [ 21.796875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 0 ], [ 21.796875, 0.35156029 ], [ 22.1484375, 0.35156029 ], [ 22.1484375, 0 ], [ 21.796875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 0.35156029 ], [ 21.796875, 0.70310735 ], [ 22.1484375, 0.70310735 ], [ 22.1484375, 0.35156029 ], [ 21.796875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 0.70310735 ], [ 21.796875, 1.05462794 ], [ 22.1484375, 1.05462794 ], [ 22.1484375, 0.70310735 ], [ 21.796875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 1.05462794 ], [ 21.796875, 1.40610884 ], [ 22.1484375, 1.40610884 ], [ 22.1484375, 1.05462794 ], [ 21.796875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 1.40610884 ], [ 21.796875, 1.75753681 ], [ 22.1484375, 1.75753681 ], [ 22.1484375, 1.40610884 ], [ 21.796875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 1.75753681 ], [ 21.796875, 2.10889866 ], [ 22.1484375, 2.10889866 ], [ 22.1484375, 1.75753681 ], [ 21.796875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 10.14193169 ], [ 21.796875, 10.48781188 ], [ 22.1484375, 10.48781188 ], [ 22.1484375, 10.14193169 ], [ 21.796875, 10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 10.48781188 ], [ 21.796875, 10.83330598 ], [ 22.1484375, 10.83330598 ], [ 22.1484375, 10.48781188 ], [ 21.796875, 10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 10.83330598 ], [ 21.796875, 11.17840187 ], [ 22.1484375, 11.17840187 ], [ 22.1484375, 10.83330598 ], [ 21.796875, 10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 11.17840187 ], [ 21.796875, 11.52308751 ], [ 22.1484375, 11.52308751 ], [ 22.1484375, 11.17840187 ], [ 21.796875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 11.52308751 ], [ 21.796875, 11.86735091 ], [ 22.1484375, 11.86735091 ], [ 22.1484375, 11.52308751 ], [ 21.796875, 11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 2.10889866 ], [ 21.796875, 2.46018118 ], [ 22.1484375, 2.46018118 ], [ 22.1484375, 2.10889866 ], [ 21.796875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 2.46018118 ], [ 21.796875, 2.81137119 ], [ 22.1484375, 2.81137119 ], [ 22.1484375, 2.46018118 ], [ 21.796875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 2.81137119 ], [ 21.796875, 3.16245553 ], [ 22.1484375, 3.16245553 ], [ 22.1484375, 2.81137119 ], [ 21.796875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 3.16245553 ], [ 21.796875, 3.51342105 ], [ 22.1484375, 3.51342105 ], [ 22.1484375, 3.16245553 ], [ 21.796875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 3.51342105 ], [ 21.796875, 3.86425462 ], [ 22.1484375, 3.86425462 ], [ 22.1484375, 3.51342105 ], [ 21.796875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 3.86425462 ], [ 21.796875, 4.21494314 ], [ 22.1484375, 4.21494314 ], [ 22.1484375, 3.86425462 ], [ 21.796875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 4.21494314 ], [ 21.796875, 4.56547355 ], [ 22.1484375, 4.56547355 ], [ 22.1484375, 4.21494314 ], [ 21.796875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 4.56547355 ], [ 21.796875, 4.9158328 ], [ 22.1484375, 4.9158328 ], [ 22.1484375, 4.56547355 ], [ 21.796875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 4.9158328 ], [ 21.796875, 5.26600788 ], [ 22.1484375, 5.26600788 ], [ 22.1484375, 4.9158328 ], [ 21.796875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 5.26600788 ], [ 21.796875, 5.61598582 ], [ 22.1484375, 5.61598582 ], [ 22.1484375, 5.26600788 ], [ 21.796875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 5.61598582 ], [ 21.796875, 5.96575367 ], [ 22.1484375, 5.96575367 ], [ 22.1484375, 5.61598582 ], [ 21.796875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 5.96575367 ], [ 21.796875, 6.31529854 ], [ 22.1484375, 6.31529854 ], [ 22.1484375, 5.96575367 ], [ 21.796875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 6.31529854 ], [ 21.796875, 6.66460756 ], [ 22.1484375, 6.66460756 ], [ 22.1484375, 6.31529854 ], [ 21.796875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 6.66460756 ], [ 21.796875, 7.01366793 ], [ 22.1484375, 7.01366793 ], [ 22.1484375, 6.66460756 ], [ 21.796875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 7.01366793 ], [ 21.796875, 7.36246687 ], [ 22.1484375, 7.36246687 ], [ 22.1484375, 7.01366793 ], [ 21.796875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 7.36246687 ], [ 21.796875, 7.71099166 ], [ 22.1484375, 7.71099166 ], [ 22.1484375, 7.36246687 ], [ 21.796875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 7.71099166 ], [ 21.796875, 8.05922963 ], [ 22.1484375, 8.05922963 ], [ 22.1484375, 7.71099166 ], [ 21.796875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 8.05922963 ], [ 21.796875, 8.40716816 ], [ 22.1484375, 8.40716816 ], [ 22.1484375, 8.05922963 ], [ 21.796875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 8.40716816 ], [ 21.796875, 8.7547947 ], [ 22.1484375, 8.7547947 ], [ 22.1484375, 8.40716816 ], [ 21.796875, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 8.7547947 ], [ 21.796875, 9.10209674 ], [ 22.1484375, 9.10209674 ], [ 22.1484375, 8.7547947 ], [ 21.796875, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 9.10209674 ], [ 21.796875, 9.44906183 ], [ 22.1484375, 9.44906183 ], [ 22.1484375, 9.10209674 ], [ 21.796875, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 9.44906183 ], [ 21.796875, 9.79567758 ], [ 22.1484375, 9.79567758 ], [ 22.1484375, 9.44906183 ], [ 21.796875, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 9.79567758 ], [ 21.796875, 10.14193169 ], [ 22.1484375, 10.14193169 ], [ 22.1484375, 9.79567758 ], [ 21.796875, 9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, -0.35156029 ], [ 22.1484375, 0 ], [ 22.5, 0 ], [ 22.5, -0.35156029 ], [ 22.1484375, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, -0.70310735 ], [ 22.1484375, -0.35156029 ], [ 22.5, -0.35156029 ], [ 22.5, -0.70310735 ], [ 22.1484375, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, -1.05462794 ], [ 22.1484375, -0.70310735 ], [ 22.5, -0.70310735 ], [ 22.5, -1.05462794 ], [ 22.1484375, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 0 ], [ 22.1484375, 0.35156029 ], [ 22.5, 0.35156029 ], [ 22.5, 0 ], [ 22.1484375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 0.35156029 ], [ 22.1484375, 0.70310735 ], [ 22.5, 0.70310735 ], [ 22.5, 0.35156029 ], [ 22.1484375, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 0.70310735 ], [ 22.1484375, 1.05462794 ], [ 22.5, 1.05462794 ], [ 22.5, 0.70310735 ], [ 22.1484375, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 1.05462794 ], [ 22.1484375, 1.40610884 ], [ 22.5, 1.40610884 ], [ 22.5, 1.05462794 ], [ 22.1484375, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 1.40610884 ], [ 22.1484375, 1.75753681 ], [ 22.5, 1.75753681 ], [ 22.5, 1.40610884 ], [ 22.1484375, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 1.75753681 ], [ 22.1484375, 2.10889866 ], [ 22.5, 2.10889866 ], [ 22.5, 1.75753681 ], [ 22.1484375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 2.10889866 ], [ 22.1484375, 2.46018118 ], [ 22.5, 2.46018118 ], [ 22.5, 2.10889866 ], [ 22.1484375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 2.46018118 ], [ 22.1484375, 2.81137119 ], [ 22.5, 2.81137119 ], [ 22.5, 2.46018118 ], [ 22.1484375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 2.81137119 ], [ 22.1484375, 3.16245553 ], [ 22.5, 3.16245553 ], [ 22.5, 2.81137119 ], [ 22.1484375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 3.16245553 ], [ 22.1484375, 3.51342105 ], [ 22.5, 3.51342105 ], [ 22.5, 3.16245553 ], [ 22.1484375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 3.51342105 ], [ 22.1484375, 3.86425462 ], [ 22.5, 3.86425462 ], [ 22.5, 3.51342105 ], [ 22.1484375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 3.86425462 ], [ 22.1484375, 4.21494314 ], [ 22.5, 4.21494314 ], [ 22.5, 3.86425462 ], [ 22.1484375, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 4.21494314 ], [ 22.1484375, 4.56547355 ], [ 22.5, 4.56547355 ], [ 22.5, 4.21494314 ], [ 22.1484375, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 4.56547355 ], [ 22.1484375, 4.9158328 ], [ 22.5, 4.9158328 ], [ 22.5, 4.56547355 ], [ 22.1484375, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 4.9158328 ], [ 22.1484375, 5.26600788 ], [ 22.5, 5.26600788 ], [ 22.5, 4.9158328 ], [ 22.1484375, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 5.26600788 ], [ 22.1484375, 5.61598582 ], [ 22.5, 5.61598582 ], [ 22.5, 5.26600788 ], [ 22.1484375, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 5.61598582 ], [ 22.1484375, 5.96575367 ], [ 22.5, 5.96575367 ], [ 22.5, 5.61598582 ], [ 22.1484375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 5.96575367 ], [ 22.1484375, 6.31529854 ], [ 22.5, 6.31529854 ], [ 22.5, 5.96575367 ], [ 22.1484375, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 6.31529854 ], [ 22.1484375, 6.66460756 ], [ 22.5, 6.66460756 ], [ 22.5, 6.31529854 ], [ 22.1484375, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 6.66460756 ], [ 22.1484375, 7.01366793 ], [ 22.5, 7.01366793 ], [ 22.5, 6.66460756 ], [ 22.1484375, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 7.01366793 ], [ 22.1484375, 7.36246687 ], [ 22.5, 7.36246687 ], [ 22.5, 7.01366793 ], [ 22.1484375, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 7.36246687 ], [ 22.1484375, 7.71099166 ], [ 22.5, 7.71099166 ], [ 22.5, 7.36246687 ], [ 22.1484375, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 7.71099166 ], [ 22.1484375, 8.05922963 ], [ 22.5, 8.05922963 ], [ 22.5, 7.71099166 ], [ 22.1484375, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 8.05922963 ], [ 22.1484375, 8.40716816 ], [ 22.5, 8.40716816 ], [ 22.5, 8.05922963 ], [ 22.1484375, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 8.40716816 ], [ 22.1484375, 8.7547947 ], [ 22.5, 8.7547947 ], [ 22.5, 8.40716816 ], [ 22.1484375, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 8.7547947 ], [ 22.1484375, 9.10209674 ], [ 22.5, 9.10209674 ], [ 22.5, 8.7547947 ], [ 22.1484375, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 9.10209674 ], [ 22.1484375, 9.44906183 ], [ 22.5, 9.44906183 ], [ 22.5, 9.10209674 ], [ 22.1484375, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 9.44906183 ], [ 22.1484375, 9.79567758 ], [ 22.5, 9.79567758 ], [ 22.5, 9.44906183 ], [ 22.1484375, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -0.35156029 ], [ 22.5, 0 ], [ 22.8515625, 0 ], [ 22.8515625, -0.35156029 ], [ 22.5, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -0.70310735 ], [ 22.5, -0.35156029 ], [ 22.8515625, -0.35156029 ], [ 22.8515625, -0.70310735 ], [ 22.5, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -1.05462794 ], [ 22.5, -0.70310735 ], [ 22.8515625, -0.70310735 ], [ 22.8515625, -1.05462794 ], [ 22.5, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -1.40610884 ], [ 22.5, -1.05462794 ], [ 22.8515625, -1.05462794 ], [ 22.8515625, -1.40610884 ], [ 22.5, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -1.75753681 ], [ 22.5, -1.40610884 ], [ 22.8515625, -1.40610884 ], [ 22.8515625, -1.75753681 ], [ 22.5, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 0 ], [ 22.5, 0.35156029 ], [ 22.8515625, 0.35156029 ], [ 22.8515625, 0 ], [ 22.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 0.35156029 ], [ 22.5, 0.70310735 ], [ 22.8515625, 0.70310735 ], [ 22.8515625, 0.35156029 ], [ 22.5, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 0.70310735 ], [ 22.5, 1.05462794 ], [ 22.8515625, 1.05462794 ], [ 22.8515625, 0.70310735 ], [ 22.5, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 1.05462794 ], [ 22.5, 1.40610884 ], [ 22.8515625, 1.40610884 ], [ 22.8515625, 1.05462794 ], [ 22.5, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 1.40610884 ], [ 22.5, 1.75753681 ], [ 22.8515625, 1.75753681 ], [ 22.8515625, 1.40610884 ], [ 22.5, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 1.75753681 ], [ 22.5, 2.10889866 ], [ 22.8515625, 2.10889866 ], [ 22.8515625, 1.75753681 ], [ 22.5, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 2.10889866 ], [ 22.5, 2.46018118 ], [ 22.8515625, 2.46018118 ], [ 22.8515625, 2.10889866 ], [ 22.5, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 2.46018118 ], [ 22.5, 2.81137119 ], [ 22.8515625, 2.81137119 ], [ 22.8515625, 2.46018118 ], [ 22.5, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 2.81137119 ], [ 22.5, 3.16245553 ], [ 22.8515625, 3.16245553 ], [ 22.8515625, 2.81137119 ], [ 22.5, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 3.16245553 ], [ 22.5, 3.51342105 ], [ 22.8515625, 3.51342105 ], [ 22.8515625, 3.16245553 ], [ 22.5, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 3.51342105 ], [ 22.5, 3.86425462 ], [ 22.8515625, 3.86425462 ], [ 22.8515625, 3.51342105 ], [ 22.5, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 3.86425462 ], [ 22.5, 4.21494314 ], [ 22.8515625, 4.21494314 ], [ 22.8515625, 3.86425462 ], [ 22.5, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 4.21494314 ], [ 22.5, 4.56547355 ], [ 22.8515625, 4.56547355 ], [ 22.8515625, 4.21494314 ], [ 22.5, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 4.56547355 ], [ 22.5, 4.9158328 ], [ 22.8515625, 4.9158328 ], [ 22.8515625, 4.56547355 ], [ 22.5, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 4.9158328 ], [ 22.5, 5.26600788 ], [ 22.8515625, 5.26600788 ], [ 22.8515625, 4.9158328 ], [ 22.5, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 5.26600788 ], [ 22.5, 5.61598582 ], [ 22.8515625, 5.61598582 ], [ 22.8515625, 5.26600788 ], [ 22.5, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 5.61598582 ], [ 22.5, 5.96575367 ], [ 22.8515625, 5.96575367 ], [ 22.8515625, 5.61598582 ], [ 22.5, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 5.96575367 ], [ 22.5, 6.31529854 ], [ 22.8515625, 6.31529854 ], [ 22.8515625, 5.96575367 ], [ 22.5, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 6.31529854 ], [ 22.5, 6.66460756 ], [ 22.8515625, 6.66460756 ], [ 22.8515625, 6.31529854 ], [ 22.5, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 6.66460756 ], [ 22.5, 7.01366793 ], [ 22.8515625, 7.01366793 ], [ 22.8515625, 6.66460756 ], [ 22.5, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 7.01366793 ], [ 22.5, 7.36246687 ], [ 22.8515625, 7.36246687 ], [ 22.8515625, 7.01366793 ], [ 22.5, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -0.35156029 ], [ 22.8515625, 0 ], [ 23.203125, 0 ], [ 23.203125, -0.35156029 ], [ 22.8515625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -0.70310735 ], [ 22.8515625, -0.35156029 ], [ 23.203125, -0.35156029 ], [ 23.203125, -0.70310735 ], [ 22.8515625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -1.05462794 ], [ 22.8515625, -0.70310735 ], [ 23.203125, -0.70310735 ], [ 23.203125, -1.05462794 ], [ 22.8515625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -1.40610884 ], [ 22.8515625, -1.05462794 ], [ 23.203125, -1.05462794 ], [ 23.203125, -1.40610884 ], [ 22.8515625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -1.75753681 ], [ 22.8515625, -1.40610884 ], [ 23.203125, -1.40610884 ], [ 23.203125, -1.75753681 ], [ 22.8515625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -2.10889866 ], [ 22.8515625, -1.75753681 ], [ 23.203125, -1.75753681 ], [ 23.203125, -2.10889866 ], [ 22.8515625, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -2.46018118 ], [ 22.8515625, -2.10889866 ], [ 23.203125, -2.10889866 ], [ 23.203125, -2.46018118 ], [ 22.8515625, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -2.81137119 ], [ 22.8515625, -2.46018118 ], [ 23.203125, -2.46018118 ], [ 23.203125, -2.81137119 ], [ 22.8515625, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -3.16245553 ], [ 22.8515625, -2.81137119 ], [ 23.203125, -2.81137119 ], [ 23.203125, -3.16245553 ], [ 22.8515625, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -3.51342105 ], [ 22.8515625, -3.16245553 ], [ 23.203125, -3.16245553 ], [ 23.203125, -3.51342105 ], [ 22.8515625, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -3.86425462 ], [ 22.8515625, -3.51342105 ], [ 23.203125, -3.51342105 ], [ 23.203125, -3.86425462 ], [ 22.8515625, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -4.21494314 ], [ 22.8515625, -3.86425462 ], [ 23.203125, -3.86425462 ], [ 23.203125, -4.21494314 ], [ 22.8515625, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, -4.56547355 ], [ 22.8515625, -4.21494314 ], [ 23.203125, -4.21494314 ], [ 23.203125, -4.56547355 ], [ 22.8515625, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 0 ], [ 22.8515625, 0.35156029 ], [ 23.203125, 0.35156029 ], [ 23.203125, 0 ], [ 22.8515625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 0.35156029 ], [ 22.8515625, 0.70310735 ], [ 23.203125, 0.70310735 ], [ 23.203125, 0.35156029 ], [ 22.8515625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 0.70310735 ], [ 22.8515625, 1.05462794 ], [ 23.203125, 1.05462794 ], [ 23.203125, 0.70310735 ], [ 22.8515625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 1.05462794 ], [ 22.8515625, 1.40610884 ], [ 23.203125, 1.40610884 ], [ 23.203125, 1.05462794 ], [ 22.8515625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 1.40610884 ], [ 22.8515625, 1.75753681 ], [ 23.203125, 1.75753681 ], [ 23.203125, 1.40610884 ], [ 22.8515625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 1.75753681 ], [ 22.8515625, 2.10889866 ], [ 23.203125, 2.10889866 ], [ 23.203125, 1.75753681 ], [ 22.8515625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 2.10889866 ], [ 22.8515625, 2.46018118 ], [ 23.203125, 2.46018118 ], [ 23.203125, 2.10889866 ], [ 22.8515625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 2.46018118 ], [ 22.8515625, 2.81137119 ], [ 23.203125, 2.81137119 ], [ 23.203125, 2.46018118 ], [ 22.8515625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 2.81137119 ], [ 22.8515625, 3.16245553 ], [ 23.203125, 3.16245553 ], [ 23.203125, 2.81137119 ], [ 22.8515625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 3.16245553 ], [ 22.8515625, 3.51342105 ], [ 23.203125, 3.51342105 ], [ 23.203125, 3.16245553 ], [ 22.8515625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 3.51342105 ], [ 22.8515625, 3.86425462 ], [ 23.203125, 3.86425462 ], [ 23.203125, 3.51342105 ], [ 22.8515625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 3.86425462 ], [ 22.8515625, 4.21494314 ], [ 23.203125, 4.21494314 ], [ 23.203125, 3.86425462 ], [ 22.8515625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 4.21494314 ], [ 22.8515625, 4.56547355 ], [ 23.203125, 4.56547355 ], [ 23.203125, 4.21494314 ], [ 22.8515625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 4.56547355 ], [ 22.8515625, 4.9158328 ], [ 23.203125, 4.9158328 ], [ 23.203125, 4.56547355 ], [ 22.8515625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 4.9158328 ], [ 22.8515625, 5.26600788 ], [ 23.203125, 5.26600788 ], [ 23.203125, 4.9158328 ], [ 22.8515625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 5.26600788 ], [ 22.8515625, 5.61598582 ], [ 23.203125, 5.61598582 ], [ 23.203125, 5.26600788 ], [ 22.8515625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 5.61598582 ], [ 22.8515625, 5.96575367 ], [ 23.203125, 5.96575367 ], [ 23.203125, 5.61598582 ], [ 22.8515625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 5.96575367 ], [ 22.8515625, 6.31529854 ], [ 23.203125, 6.31529854 ], [ 23.203125, 5.96575367 ], [ 22.8515625, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 6.31529854 ], [ 22.8515625, 6.66460756 ], [ 23.203125, 6.66460756 ], [ 23.203125, 6.31529854 ], [ 22.8515625, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 6.66460756 ], [ 22.8515625, 7.01366793 ], [ 23.203125, 7.01366793 ], [ 23.203125, 6.66460756 ], [ 22.8515625, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 7.01366793 ], [ 22.8515625, 7.36246687 ], [ 23.203125, 7.36246687 ], [ 23.203125, 7.01366793 ], [ 22.8515625, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 7.36246687 ], [ 22.8515625, 7.71099166 ], [ 23.203125, 7.71099166 ], [ 23.203125, 7.36246687 ], [ 22.8515625, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -0.35156029 ], [ 23.203125, 0 ], [ 23.5546875, 0 ], [ 23.5546875, -0.35156029 ], [ 23.203125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -0.70310735 ], [ 23.203125, -0.35156029 ], [ 23.5546875, -0.35156029 ], [ 23.5546875, -0.70310735 ], [ 23.203125, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -1.05462794 ], [ 23.203125, -0.70310735 ], [ 23.5546875, -0.70310735 ], [ 23.5546875, -1.05462794 ], [ 23.203125, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -1.40610884 ], [ 23.203125, -1.05462794 ], [ 23.5546875, -1.05462794 ], [ 23.5546875, -1.40610884 ], [ 23.203125, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -1.75753681 ], [ 23.203125, -1.40610884 ], [ 23.5546875, -1.40610884 ], [ 23.5546875, -1.75753681 ], [ 23.203125, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -2.10889866 ], [ 23.203125, -1.75753681 ], [ 23.5546875, -1.75753681 ], [ 23.5546875, -2.10889866 ], [ 23.203125, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -2.46018118 ], [ 23.203125, -2.10889866 ], [ 23.5546875, -2.10889866 ], [ 23.5546875, -2.46018118 ], [ 23.203125, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -2.81137119 ], [ 23.203125, -2.46018118 ], [ 23.5546875, -2.46018118 ], [ 23.5546875, -2.81137119 ], [ 23.203125, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -3.16245553 ], [ 23.203125, -2.81137119 ], [ 23.5546875, -2.81137119 ], [ 23.5546875, -3.16245553 ], [ 23.203125, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -3.51342105 ], [ 23.203125, -3.16245553 ], [ 23.5546875, -3.16245553 ], [ 23.5546875, -3.51342105 ], [ 23.203125, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -3.86425462 ], [ 23.203125, -3.51342105 ], [ 23.5546875, -3.51342105 ], [ 23.5546875, -3.86425462 ], [ 23.203125, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -4.21494314 ], [ 23.203125, -3.86425462 ], [ 23.5546875, -3.86425462 ], [ 23.5546875, -4.21494314 ], [ 23.203125, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -4.56547355 ], [ 23.203125, -4.21494314 ], [ 23.5546875, -4.21494314 ], [ 23.5546875, -4.56547355 ], [ 23.203125, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -4.9158328 ], [ 23.203125, -4.56547355 ], [ 23.5546875, -4.56547355 ], [ 23.5546875, -4.9158328 ], [ 23.203125, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -5.26600788 ], [ 23.203125, -4.9158328 ], [ 23.5546875, -4.9158328 ], [ 23.5546875, -5.26600788 ], [ 23.203125, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -5.61598582 ], [ 23.203125, -5.26600788 ], [ 23.5546875, -5.26600788 ], [ 23.5546875, -5.61598582 ], [ 23.203125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -5.96575367 ], [ 23.203125, -5.61598582 ], [ 23.5546875, -5.61598582 ], [ 23.5546875, -5.96575367 ], [ 23.203125, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -6.31529854 ], [ 23.203125, -5.96575367 ], [ 23.5546875, -5.96575367 ], [ 23.5546875, -6.31529854 ], [ 23.203125, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -6.66460756 ], [ 23.203125, -6.31529854 ], [ 23.5546875, -6.31529854 ], [ 23.5546875, -6.66460756 ], [ 23.203125, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, -7.01366793 ], [ 23.203125, -6.66460756 ], [ 23.5546875, -6.66460756 ], [ 23.5546875, -7.01366793 ], [ 23.203125, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 0 ], [ 23.203125, 0.35156029 ], [ 23.5546875, 0.35156029 ], [ 23.5546875, 0 ], [ 23.203125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 0.35156029 ], [ 23.203125, 0.70310735 ], [ 23.5546875, 0.70310735 ], [ 23.5546875, 0.35156029 ], [ 23.203125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 0.70310735 ], [ 23.203125, 1.05462794 ], [ 23.5546875, 1.05462794 ], [ 23.5546875, 0.70310735 ], [ 23.203125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 1.05462794 ], [ 23.203125, 1.40610884 ], [ 23.5546875, 1.40610884 ], [ 23.5546875, 1.05462794 ], [ 23.203125, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 1.40610884 ], [ 23.203125, 1.75753681 ], [ 23.5546875, 1.75753681 ], [ 23.5546875, 1.40610884 ], [ 23.203125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 1.75753681 ], [ 23.203125, 2.10889866 ], [ 23.5546875, 2.10889866 ], [ 23.5546875, 1.75753681 ], [ 23.203125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 2.10889866 ], [ 23.203125, 2.46018118 ], [ 23.5546875, 2.46018118 ], [ 23.5546875, 2.10889866 ], [ 23.203125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 2.46018118 ], [ 23.203125, 2.81137119 ], [ 23.5546875, 2.81137119 ], [ 23.5546875, 2.46018118 ], [ 23.203125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 2.81137119 ], [ 23.203125, 3.16245553 ], [ 23.5546875, 3.16245553 ], [ 23.5546875, 2.81137119 ], [ 23.203125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 3.16245553 ], [ 23.203125, 3.51342105 ], [ 23.5546875, 3.51342105 ], [ 23.5546875, 3.16245553 ], [ 23.203125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 3.51342105 ], [ 23.203125, 3.86425462 ], [ 23.5546875, 3.86425462 ], [ 23.5546875, 3.51342105 ], [ 23.203125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 3.86425462 ], [ 23.203125, 4.21494314 ], [ 23.5546875, 4.21494314 ], [ 23.5546875, 3.86425462 ], [ 23.203125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 4.21494314 ], [ 23.203125, 4.56547355 ], [ 23.5546875, 4.56547355 ], [ 23.5546875, 4.21494314 ], [ 23.203125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 4.56547355 ], [ 23.203125, 4.9158328 ], [ 23.5546875, 4.9158328 ], [ 23.5546875, 4.56547355 ], [ 23.203125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 4.9158328 ], [ 23.203125, 5.26600788 ], [ 23.5546875, 5.26600788 ], [ 23.5546875, 4.9158328 ], [ 23.203125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 5.26600788 ], [ 23.203125, 5.61598582 ], [ 23.5546875, 5.61598582 ], [ 23.5546875, 5.26600788 ], [ 23.203125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 5.61598582 ], [ 23.203125, 5.96575367 ], [ 23.5546875, 5.96575367 ], [ 23.5546875, 5.61598582 ], [ 23.203125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 5.96575367 ], [ 23.203125, 6.31529854 ], [ 23.5546875, 6.31529854 ], [ 23.5546875, 5.96575367 ], [ 23.203125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 6.31529854 ], [ 23.203125, 6.66460756 ], [ 23.5546875, 6.66460756 ], [ 23.5546875, 6.31529854 ], [ 23.203125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 6.66460756 ], [ 23.203125, 7.01366793 ], [ 23.5546875, 7.01366793 ], [ 23.5546875, 6.66460756 ], [ 23.203125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 7.01366793 ], [ 23.203125, 7.36246687 ], [ 23.5546875, 7.36246687 ], [ 23.5546875, 7.01366793 ], [ 23.203125, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 7.36246687 ], [ 23.203125, 7.71099166 ], [ 23.5546875, 7.71099166 ], [ 23.5546875, 7.36246687 ], [ 23.203125, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 7.71099166 ], [ 23.203125, 8.05922963 ], [ 23.5546875, 8.05922963 ], [ 23.5546875, 7.71099166 ], [ 23.203125, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -0.35156029 ], [ 23.5546875, 0 ], [ 23.90625, 0 ], [ 23.90625, -0.35156029 ], [ 23.5546875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -0.70310735 ], [ 23.5546875, -0.35156029 ], [ 23.90625, -0.35156029 ], [ 23.90625, -0.70310735 ], [ 23.5546875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -1.05462794 ], [ 23.5546875, -0.70310735 ], [ 23.90625, -0.70310735 ], [ 23.90625, -1.05462794 ], [ 23.5546875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -1.40610884 ], [ 23.5546875, -1.05462794 ], [ 23.90625, -1.05462794 ], [ 23.90625, -1.40610884 ], [ 23.5546875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -1.75753681 ], [ 23.5546875, -1.40610884 ], [ 23.90625, -1.40610884 ], [ 23.90625, -1.75753681 ], [ 23.5546875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -2.10889866 ], [ 23.5546875, -1.75753681 ], [ 23.90625, -1.75753681 ], [ 23.90625, -2.10889866 ], [ 23.5546875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -2.46018118 ], [ 23.5546875, -2.10889866 ], [ 23.90625, -2.10889866 ], [ 23.90625, -2.46018118 ], [ 23.5546875, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -2.81137119 ], [ 23.5546875, -2.46018118 ], [ 23.90625, -2.46018118 ], [ 23.90625, -2.81137119 ], [ 23.5546875, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -3.16245553 ], [ 23.5546875, -2.81137119 ], [ 23.90625, -2.81137119 ], [ 23.90625, -3.16245553 ], [ 23.5546875, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -3.51342105 ], [ 23.5546875, -3.16245553 ], [ 23.90625, -3.16245553 ], [ 23.90625, -3.51342105 ], [ 23.5546875, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -3.86425462 ], [ 23.5546875, -3.51342105 ], [ 23.90625, -3.51342105 ], [ 23.90625, -3.86425462 ], [ 23.5546875, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -4.21494314 ], [ 23.5546875, -3.86425462 ], [ 23.90625, -3.86425462 ], [ 23.90625, -4.21494314 ], [ 23.5546875, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -4.56547355 ], [ 23.5546875, -4.21494314 ], [ 23.90625, -4.21494314 ], [ 23.90625, -4.56547355 ], [ 23.5546875, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -4.9158328 ], [ 23.5546875, -4.56547355 ], [ 23.90625, -4.56547355 ], [ 23.90625, -4.9158328 ], [ 23.5546875, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -5.26600788 ], [ 23.5546875, -4.9158328 ], [ 23.90625, -4.9158328 ], [ 23.90625, -5.26600788 ], [ 23.5546875, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -5.61598582 ], [ 23.5546875, -5.26600788 ], [ 23.90625, -5.26600788 ], [ 23.90625, -5.61598582 ], [ 23.5546875, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -5.96575367 ], [ 23.5546875, -5.61598582 ], [ 23.90625, -5.61598582 ], [ 23.90625, -5.96575367 ], [ 23.5546875, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -6.31529854 ], [ 23.5546875, -5.96575367 ], [ 23.90625, -5.96575367 ], [ 23.90625, -6.31529854 ], [ 23.5546875, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -6.66460756 ], [ 23.5546875, -6.31529854 ], [ 23.90625, -6.31529854 ], [ 23.90625, -6.66460756 ], [ 23.5546875, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -7.01366793 ], [ 23.5546875, -6.66460756 ], [ 23.90625, -6.66460756 ], [ 23.90625, -7.01366793 ], [ 23.5546875, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -7.36246687 ], [ 23.5546875, -7.01366793 ], [ 23.90625, -7.01366793 ], [ 23.90625, -7.36246687 ], [ 23.5546875, -7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -7.71099166 ], [ 23.5546875, -7.36246687 ], [ 23.90625, -7.36246687 ], [ 23.90625, -7.71099166 ], [ 23.5546875, -7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -8.05922963 ], [ 23.5546875, -7.71099166 ], [ 23.90625, -7.71099166 ], [ 23.90625, -8.05922963 ], [ 23.5546875, -8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -8.40716816 ], [ 23.5546875, -8.05922963 ], [ 23.90625, -8.05922963 ], [ 23.90625, -8.40716816 ], [ 23.5546875, -8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -8.7547947 ], [ 23.5546875, -8.40716816 ], [ 23.90625, -8.40716816 ], [ 23.90625, -8.7547947 ], [ 23.5546875, -8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -9.10209674 ], [ 23.5546875, -8.7547947 ], [ 23.90625, -8.7547947 ], [ 23.90625, -9.10209674 ], [ 23.5546875, -9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -9.44906183 ], [ 23.5546875, -9.10209674 ], [ 23.90625, -9.10209674 ], [ 23.90625, -9.44906183 ], [ 23.5546875, -9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, -9.79567758 ], [ 23.5546875, -9.44906183 ], [ 23.90625, -9.44906183 ], [ 23.90625, -9.79567758 ], [ 23.5546875, -9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 0 ], [ 23.5546875, 0.35156029 ], [ 23.90625, 0.35156029 ], [ 23.90625, 0 ], [ 23.5546875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 0.35156029 ], [ 23.5546875, 0.70310735 ], [ 23.90625, 0.70310735 ], [ 23.90625, 0.35156029 ], [ 23.5546875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 0.70310735 ], [ 23.5546875, 1.05462794 ], [ 23.90625, 1.05462794 ], [ 23.90625, 0.70310735 ], [ 23.5546875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 1.05462794 ], [ 23.5546875, 1.40610884 ], [ 23.90625, 1.40610884 ], [ 23.90625, 1.05462794 ], [ 23.5546875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 1.40610884 ], [ 23.5546875, 1.75753681 ], [ 23.90625, 1.75753681 ], [ 23.90625, 1.40610884 ], [ 23.5546875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 1.75753681 ], [ 23.5546875, 2.10889866 ], [ 23.90625, 2.10889866 ], [ 23.90625, 1.75753681 ], [ 23.5546875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 2.10889866 ], [ 23.5546875, 2.46018118 ], [ 23.90625, 2.46018118 ], [ 23.90625, 2.10889866 ], [ 23.5546875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 2.46018118 ], [ 23.5546875, 2.81137119 ], [ 23.90625, 2.81137119 ], [ 23.90625, 2.46018118 ], [ 23.5546875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 2.81137119 ], [ 23.5546875, 3.16245553 ], [ 23.90625, 3.16245553 ], [ 23.90625, 2.81137119 ], [ 23.5546875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 3.16245553 ], [ 23.5546875, 3.51342105 ], [ 23.90625, 3.51342105 ], [ 23.90625, 3.16245553 ], [ 23.5546875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 3.51342105 ], [ 23.5546875, 3.86425462 ], [ 23.90625, 3.86425462 ], [ 23.90625, 3.51342105 ], [ 23.5546875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 3.86425462 ], [ 23.5546875, 4.21494314 ], [ 23.90625, 4.21494314 ], [ 23.90625, 3.86425462 ], [ 23.5546875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 4.21494314 ], [ 23.5546875, 4.56547355 ], [ 23.90625, 4.56547355 ], [ 23.90625, 4.21494314 ], [ 23.5546875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 4.56547355 ], [ 23.5546875, 4.9158328 ], [ 23.90625, 4.9158328 ], [ 23.90625, 4.56547355 ], [ 23.5546875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 4.9158328 ], [ 23.5546875, 5.26600788 ], [ 23.90625, 5.26600788 ], [ 23.90625, 4.9158328 ], [ 23.5546875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 5.26600788 ], [ 23.5546875, 5.61598582 ], [ 23.90625, 5.61598582 ], [ 23.90625, 5.26600788 ], [ 23.5546875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 5.61598582 ], [ 23.5546875, 5.96575367 ], [ 23.90625, 5.96575367 ], [ 23.90625, 5.61598582 ], [ 23.5546875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 5.96575367 ], [ 23.5546875, 6.31529854 ], [ 23.90625, 6.31529854 ], [ 23.90625, 5.96575367 ], [ 23.5546875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 6.31529854 ], [ 23.5546875, 6.66460756 ], [ 23.90625, 6.66460756 ], [ 23.90625, 6.31529854 ], [ 23.5546875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 6.66460756 ], [ 23.5546875, 7.01366793 ], [ 23.90625, 7.01366793 ], [ 23.90625, 6.66460756 ], [ 23.5546875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 7.01366793 ], [ 23.5546875, 7.36246687 ], [ 23.90625, 7.36246687 ], [ 23.90625, 7.01366793 ], [ 23.5546875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 7.36246687 ], [ 23.5546875, 7.71099166 ], [ 23.90625, 7.71099166 ], [ 23.90625, 7.36246687 ], [ 23.5546875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 7.71099166 ], [ 23.5546875, 8.05922963 ], [ 23.90625, 8.05922963 ], [ 23.90625, 7.71099166 ], [ 23.5546875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 8.05922963 ], [ 23.5546875, 8.40716816 ], [ 23.90625, 8.40716816 ], [ 23.90625, 8.05922963 ], [ 23.5546875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -0.35156029 ], [ 23.90625, 0 ], [ 24.2578125, 0 ], [ 24.2578125, -0.35156029 ], [ 23.90625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -0.70310735 ], [ 23.90625, -0.35156029 ], [ 24.2578125, -0.35156029 ], [ 24.2578125, -0.70310735 ], [ 23.90625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -1.05462794 ], [ 23.90625, -0.70310735 ], [ 24.2578125, -0.70310735 ], [ 24.2578125, -1.05462794 ], [ 23.90625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -1.40610884 ], [ 23.90625, -1.05462794 ], [ 24.2578125, -1.05462794 ], [ 24.2578125, -1.40610884 ], [ 23.90625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -1.75753681 ], [ 23.90625, -1.40610884 ], [ 24.2578125, -1.40610884 ], [ 24.2578125, -1.75753681 ], [ 23.90625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -10.14193169 ], [ 23.90625, -9.79567758 ], [ 24.2578125, -9.79567758 ], [ 24.2578125, -10.14193169 ], [ 23.90625, -10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -10.48781188 ], [ 23.90625, -10.14193169 ], [ 24.2578125, -10.14193169 ], [ 24.2578125, -10.48781188 ], [ 23.90625, -10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -10.83330598 ], [ 23.90625, -10.48781188 ], [ 24.2578125, -10.48781188 ], [ 24.2578125, -10.83330598 ], [ 23.90625, -10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -11.17840187 ], [ 23.90625, -10.83330598 ], [ 24.2578125, -10.83330598 ], [ 24.2578125, -11.17840187 ], [ 23.90625, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -11.52308751 ], [ 23.90625, -11.17840187 ], [ 24.2578125, -11.17840187 ], [ 24.2578125, -11.52308751 ], [ 23.90625, -11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -11.86735091 ], [ 23.90625, -11.52308751 ], [ 24.2578125, -11.52308751 ], [ 24.2578125, -11.86735091 ], [ 23.90625, -11.86735091 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -2.10889866 ], [ 23.90625, -1.75753681 ], [ 24.2578125, -1.75753681 ], [ 24.2578125, -2.10889866 ], [ 23.90625, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -2.46018118 ], [ 23.90625, -2.10889866 ], [ 24.2578125, -2.10889866 ], [ 24.2578125, -2.46018118 ], [ 23.90625, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -2.81137119 ], [ 23.90625, -2.46018118 ], [ 24.2578125, -2.46018118 ], [ 24.2578125, -2.81137119 ], [ 23.90625, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -3.16245553 ], [ 23.90625, -2.81137119 ], [ 24.2578125, -2.81137119 ], [ 24.2578125, -3.16245553 ], [ 23.90625, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -3.51342105 ], [ 23.90625, -3.16245553 ], [ 24.2578125, -3.16245553 ], [ 24.2578125, -3.51342105 ], [ 23.90625, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -3.86425462 ], [ 23.90625, -3.51342105 ], [ 24.2578125, -3.51342105 ], [ 24.2578125, -3.86425462 ], [ 23.90625, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -4.21494314 ], [ 23.90625, -3.86425462 ], [ 24.2578125, -3.86425462 ], [ 24.2578125, -4.21494314 ], [ 23.90625, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -4.56547355 ], [ 23.90625, -4.21494314 ], [ 24.2578125, -4.21494314 ], [ 24.2578125, -4.56547355 ], [ 23.90625, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -4.9158328 ], [ 23.90625, -4.56547355 ], [ 24.2578125, -4.56547355 ], [ 24.2578125, -4.9158328 ], [ 23.90625, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -5.26600788 ], [ 23.90625, -4.9158328 ], [ 24.2578125, -4.9158328 ], [ 24.2578125, -5.26600788 ], [ 23.90625, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -5.61598582 ], [ 23.90625, -5.26600788 ], [ 24.2578125, -5.26600788 ], [ 24.2578125, -5.61598582 ], [ 23.90625, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -5.96575367 ], [ 23.90625, -5.61598582 ], [ 24.2578125, -5.61598582 ], [ 24.2578125, -5.96575367 ], [ 23.90625, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -6.31529854 ], [ 23.90625, -5.96575367 ], [ 24.2578125, -5.96575367 ], [ 24.2578125, -6.31529854 ], [ 23.90625, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -6.66460756 ], [ 23.90625, -6.31529854 ], [ 24.2578125, -6.31529854 ], [ 24.2578125, -6.66460756 ], [ 23.90625, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -7.01366793 ], [ 23.90625, -6.66460756 ], [ 24.2578125, -6.66460756 ], [ 24.2578125, -7.01366793 ], [ 23.90625, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -7.36246687 ], [ 23.90625, -7.01366793 ], [ 24.2578125, -7.01366793 ], [ 24.2578125, -7.36246687 ], [ 23.90625, -7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -7.71099166 ], [ 23.90625, -7.36246687 ], [ 24.2578125, -7.36246687 ], [ 24.2578125, -7.71099166 ], [ 23.90625, -7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -8.05922963 ], [ 23.90625, -7.71099166 ], [ 24.2578125, -7.71099166 ], [ 24.2578125, -8.05922963 ], [ 23.90625, -8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -8.40716816 ], [ 23.90625, -8.05922963 ], [ 24.2578125, -8.05922963 ], [ 24.2578125, -8.40716816 ], [ 23.90625, -8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -8.7547947 ], [ 23.90625, -8.40716816 ], [ 24.2578125, -8.40716816 ], [ 24.2578125, -8.7547947 ], [ 23.90625, -8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -9.10209674 ], [ 23.90625, -8.7547947 ], [ 24.2578125, -8.7547947 ], [ 24.2578125, -9.10209674 ], [ 23.90625, -9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -9.44906183 ], [ 23.90625, -9.10209674 ], [ 24.2578125, -9.10209674 ], [ 24.2578125, -9.44906183 ], [ 23.90625, -9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, -9.79567758 ], [ 23.90625, -9.44906183 ], [ 24.2578125, -9.44906183 ], [ 24.2578125, -9.79567758 ], [ 23.90625, -9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 0 ], [ 23.90625, 0.35156029 ], [ 24.2578125, 0.35156029 ], [ 24.2578125, 0 ], [ 23.90625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 0.35156029 ], [ 23.90625, 0.70310735 ], [ 24.2578125, 0.70310735 ], [ 24.2578125, 0.35156029 ], [ 23.90625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 0.70310735 ], [ 23.90625, 1.05462794 ], [ 24.2578125, 1.05462794 ], [ 24.2578125, 0.70310735 ], [ 23.90625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 1.05462794 ], [ 23.90625, 1.40610884 ], [ 24.2578125, 1.40610884 ], [ 24.2578125, 1.05462794 ], [ 23.90625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 1.40610884 ], [ 23.90625, 1.75753681 ], [ 24.2578125, 1.75753681 ], [ 24.2578125, 1.40610884 ], [ 23.90625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 1.75753681 ], [ 23.90625, 2.10889866 ], [ 24.2578125, 2.10889866 ], [ 24.2578125, 1.75753681 ], [ 23.90625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 2.10889866 ], [ 23.90625, 2.46018118 ], [ 24.2578125, 2.46018118 ], [ 24.2578125, 2.10889866 ], [ 23.90625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 2.46018118 ], [ 23.90625, 2.81137119 ], [ 24.2578125, 2.81137119 ], [ 24.2578125, 2.46018118 ], [ 23.90625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 2.81137119 ], [ 23.90625, 3.16245553 ], [ 24.2578125, 3.16245553 ], [ 24.2578125, 2.81137119 ], [ 23.90625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 3.16245553 ], [ 23.90625, 3.51342105 ], [ 24.2578125, 3.51342105 ], [ 24.2578125, 3.16245553 ], [ 23.90625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 3.51342105 ], [ 23.90625, 3.86425462 ], [ 24.2578125, 3.86425462 ], [ 24.2578125, 3.51342105 ], [ 23.90625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 3.86425462 ], [ 23.90625, 4.21494314 ], [ 24.2578125, 4.21494314 ], [ 24.2578125, 3.86425462 ], [ 23.90625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 4.21494314 ], [ 23.90625, 4.56547355 ], [ 24.2578125, 4.56547355 ], [ 24.2578125, 4.21494314 ], [ 23.90625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 4.56547355 ], [ 23.90625, 4.9158328 ], [ 24.2578125, 4.9158328 ], [ 24.2578125, 4.56547355 ], [ 23.90625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 4.9158328 ], [ 23.90625, 5.26600788 ], [ 24.2578125, 5.26600788 ], [ 24.2578125, 4.9158328 ], [ 23.90625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 5.26600788 ], [ 23.90625, 5.61598582 ], [ 24.2578125, 5.61598582 ], [ 24.2578125, 5.26600788 ], [ 23.90625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 5.61598582 ], [ 23.90625, 5.96575367 ], [ 24.2578125, 5.96575367 ], [ 24.2578125, 5.61598582 ], [ 23.90625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 5.96575367 ], [ 23.90625, 6.31529854 ], [ 24.2578125, 6.31529854 ], [ 24.2578125, 5.96575367 ], [ 23.90625, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 6.31529854 ], [ 23.90625, 6.66460756 ], [ 24.2578125, 6.66460756 ], [ 24.2578125, 6.31529854 ], [ 23.90625, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 6.66460756 ], [ 23.90625, 7.01366793 ], [ 24.2578125, 7.01366793 ], [ 24.2578125, 6.66460756 ], [ 23.90625, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 7.01366793 ], [ 23.90625, 7.36246687 ], [ 24.2578125, 7.36246687 ], [ 24.2578125, 7.01366793 ], [ 23.90625, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 7.36246687 ], [ 23.90625, 7.71099166 ], [ 24.2578125, 7.71099166 ], [ 24.2578125, 7.36246687 ], [ 23.90625, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 7.71099166 ], [ 23.90625, 8.05922963 ], [ 24.2578125, 8.05922963 ], [ 24.2578125, 7.71099166 ], [ 23.90625, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 8.05922963 ], [ 23.90625, 8.40716816 ], [ 24.2578125, 8.40716816 ], [ 24.2578125, 8.05922963 ], [ 23.90625, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 8.40716816 ], [ 23.90625, 8.7547947 ], [ 24.2578125, 8.7547947 ], [ 24.2578125, 8.40716816 ], [ 23.90625, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -0.35156029 ], [ 24.2578125, 0 ], [ 24.609375, 0 ], [ 24.609375, -0.35156029 ], [ 24.2578125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -0.70310735 ], [ 24.2578125, -0.35156029 ], [ 24.609375, -0.35156029 ], [ 24.609375, -0.70310735 ], [ 24.2578125, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -1.05462794 ], [ 24.2578125, -0.70310735 ], [ 24.609375, -0.70310735 ], [ 24.609375, -1.05462794 ], [ 24.2578125, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -1.40610884 ], [ 24.2578125, -1.05462794 ], [ 24.609375, -1.05462794 ], [ 24.609375, -1.40610884 ], [ 24.2578125, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -1.75753681 ], [ 24.2578125, -1.40610884 ], [ 24.609375, -1.40610884 ], [ 24.609375, -1.75753681 ], [ 24.2578125, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -10.14193169 ], [ 24.2578125, -9.79567758 ], [ 24.609375, -9.79567758 ], [ 24.609375, -10.14193169 ], [ 24.2578125, -10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -10.48781188 ], [ 24.2578125, -10.14193169 ], [ 24.609375, -10.14193169 ], [ 24.609375, -10.48781188 ], [ 24.2578125, -10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -10.83330598 ], [ 24.2578125, -10.48781188 ], [ 24.609375, -10.48781188 ], [ 24.609375, -10.83330598 ], [ 24.2578125, -10.83330598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -11.17840187 ], [ 24.2578125, -10.83330598 ], [ 24.609375, -10.83330598 ], [ 24.609375, -11.17840187 ], [ 24.2578125, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -11.52308751 ], [ 24.2578125, -11.17840187 ], [ 24.609375, -11.17840187 ], [ 24.609375, -11.52308751 ], [ 24.2578125, -11.52308751 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -11.86735091 ], [ 24.2578125, -11.52308751 ], [ 24.609375, -11.52308751 ], [ 24.609375, -11.86735091 ], [ 24.2578125, -11.86735091 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -2.10889866 ], [ 24.2578125, -1.75753681 ], [ 24.609375, -1.75753681 ], [ 24.609375, -2.10889866 ], [ 24.2578125, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -2.46018118 ], [ 24.2578125, -2.10889866 ], [ 24.609375, -2.10889866 ], [ 24.609375, -2.46018118 ], [ 24.2578125, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -2.81137119 ], [ 24.2578125, -2.46018118 ], [ 24.609375, -2.46018118 ], [ 24.609375, -2.81137119 ], [ 24.2578125, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -3.16245553 ], [ 24.2578125, -2.81137119 ], [ 24.609375, -2.81137119 ], [ 24.609375, -3.16245553 ], [ 24.2578125, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -3.51342105 ], [ 24.2578125, -3.16245553 ], [ 24.609375, -3.16245553 ], [ 24.609375, -3.51342105 ], [ 24.2578125, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -3.86425462 ], [ 24.2578125, -3.51342105 ], [ 24.609375, -3.51342105 ], [ 24.609375, -3.86425462 ], [ 24.2578125, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -4.21494314 ], [ 24.2578125, -3.86425462 ], [ 24.609375, -3.86425462 ], [ 24.609375, -4.21494314 ], [ 24.2578125, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -4.56547355 ], [ 24.2578125, -4.21494314 ], [ 24.609375, -4.21494314 ], [ 24.609375, -4.56547355 ], [ 24.2578125, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -4.9158328 ], [ 24.2578125, -4.56547355 ], [ 24.609375, -4.56547355 ], [ 24.609375, -4.9158328 ], [ 24.2578125, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -5.26600788 ], [ 24.2578125, -4.9158328 ], [ 24.609375, -4.9158328 ], [ 24.609375, -5.26600788 ], [ 24.2578125, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -5.61598582 ], [ 24.2578125, -5.26600788 ], [ 24.609375, -5.26600788 ], [ 24.609375, -5.61598582 ], [ 24.2578125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -5.96575367 ], [ 24.2578125, -5.61598582 ], [ 24.609375, -5.61598582 ], [ 24.609375, -5.96575367 ], [ 24.2578125, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -6.31529854 ], [ 24.2578125, -5.96575367 ], [ 24.609375, -5.96575367 ], [ 24.609375, -6.31529854 ], [ 24.2578125, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -6.66460756 ], [ 24.2578125, -6.31529854 ], [ 24.609375, -6.31529854 ], [ 24.609375, -6.66460756 ], [ 24.2578125, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -7.01366793 ], [ 24.2578125, -6.66460756 ], [ 24.609375, -6.66460756 ], [ 24.609375, -7.01366793 ], [ 24.2578125, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -7.36246687 ], [ 24.2578125, -7.01366793 ], [ 24.609375, -7.01366793 ], [ 24.609375, -7.36246687 ], [ 24.2578125, -7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -7.71099166 ], [ 24.2578125, -7.36246687 ], [ 24.609375, -7.36246687 ], [ 24.609375, -7.71099166 ], [ 24.2578125, -7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -8.05922963 ], [ 24.2578125, -7.71099166 ], [ 24.609375, -7.71099166 ], [ 24.609375, -8.05922963 ], [ 24.2578125, -8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -8.40716816 ], [ 24.2578125, -8.05922963 ], [ 24.609375, -8.05922963 ], [ 24.609375, -8.40716816 ], [ 24.2578125, -8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -8.7547947 ], [ 24.2578125, -8.40716816 ], [ 24.609375, -8.40716816 ], [ 24.609375, -8.7547947 ], [ 24.2578125, -8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -9.10209674 ], [ 24.2578125, -8.7547947 ], [ 24.609375, -8.7547947 ], [ 24.609375, -9.10209674 ], [ 24.2578125, -9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -9.44906183 ], [ 24.2578125, -9.10209674 ], [ 24.609375, -9.10209674 ], [ 24.609375, -9.44906183 ], [ 24.2578125, -9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, -9.79567758 ], [ 24.2578125, -9.44906183 ], [ 24.609375, -9.44906183 ], [ 24.609375, -9.79567758 ], [ 24.2578125, -9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 0 ], [ 24.2578125, 0.35156029 ], [ 24.609375, 0.35156029 ], [ 24.609375, 0 ], [ 24.2578125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 0.35156029 ], [ 24.2578125, 0.70310735 ], [ 24.609375, 0.70310735 ], [ 24.609375, 0.35156029 ], [ 24.2578125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 0.70310735 ], [ 24.2578125, 1.05462794 ], [ 24.609375, 1.05462794 ], [ 24.609375, 0.70310735 ], [ 24.2578125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 1.05462794 ], [ 24.2578125, 1.40610884 ], [ 24.609375, 1.40610884 ], [ 24.609375, 1.05462794 ], [ 24.2578125, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 1.40610884 ], [ 24.2578125, 1.75753681 ], [ 24.609375, 1.75753681 ], [ 24.609375, 1.40610884 ], [ 24.2578125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 1.75753681 ], [ 24.2578125, 2.10889866 ], [ 24.609375, 2.10889866 ], [ 24.609375, 1.75753681 ], [ 24.2578125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 2.10889866 ], [ 24.2578125, 2.46018118 ], [ 24.609375, 2.46018118 ], [ 24.609375, 2.10889866 ], [ 24.2578125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 2.46018118 ], [ 24.2578125, 2.81137119 ], [ 24.609375, 2.81137119 ], [ 24.609375, 2.46018118 ], [ 24.2578125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 2.81137119 ], [ 24.2578125, 3.16245553 ], [ 24.609375, 3.16245553 ], [ 24.609375, 2.81137119 ], [ 24.2578125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 3.16245553 ], [ 24.2578125, 3.51342105 ], [ 24.609375, 3.51342105 ], [ 24.609375, 3.16245553 ], [ 24.2578125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 3.51342105 ], [ 24.2578125, 3.86425462 ], [ 24.609375, 3.86425462 ], [ 24.609375, 3.51342105 ], [ 24.2578125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 3.86425462 ], [ 24.2578125, 4.21494314 ], [ 24.609375, 4.21494314 ], [ 24.609375, 3.86425462 ], [ 24.2578125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 4.21494314 ], [ 24.2578125, 4.56547355 ], [ 24.609375, 4.56547355 ], [ 24.609375, 4.21494314 ], [ 24.2578125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 4.56547355 ], [ 24.2578125, 4.9158328 ], [ 24.609375, 4.9158328 ], [ 24.609375, 4.56547355 ], [ 24.2578125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 4.9158328 ], [ 24.2578125, 5.26600788 ], [ 24.609375, 5.26600788 ], [ 24.609375, 4.9158328 ], [ 24.2578125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 5.26600788 ], [ 24.2578125, 5.61598582 ], [ 24.609375, 5.61598582 ], [ 24.609375, 5.26600788 ], [ 24.2578125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 5.61598582 ], [ 24.2578125, 5.96575367 ], [ 24.609375, 5.96575367 ], [ 24.609375, 5.61598582 ], [ 24.2578125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 5.96575367 ], [ 24.2578125, 6.31529854 ], [ 24.609375, 6.31529854 ], [ 24.609375, 5.96575367 ], [ 24.2578125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 6.31529854 ], [ 24.2578125, 6.66460756 ], [ 24.609375, 6.66460756 ], [ 24.609375, 6.31529854 ], [ 24.2578125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 6.66460756 ], [ 24.2578125, 7.01366793 ], [ 24.609375, 7.01366793 ], [ 24.609375, 6.66460756 ], [ 24.2578125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 7.01366793 ], [ 24.2578125, 7.36246687 ], [ 24.609375, 7.36246687 ], [ 24.609375, 7.01366793 ], [ 24.2578125, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 7.36246687 ], [ 24.2578125, 7.71099166 ], [ 24.609375, 7.71099166 ], [ 24.609375, 7.36246687 ], [ 24.2578125, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 7.71099166 ], [ 24.2578125, 8.05922963 ], [ 24.609375, 8.05922963 ], [ 24.609375, 7.71099166 ], [ 24.2578125, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 8.05922963 ], [ 24.2578125, 8.40716816 ], [ 24.609375, 8.40716816 ], [ 24.609375, 8.05922963 ], [ 24.2578125, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 8.40716816 ], [ 24.2578125, 8.7547947 ], [ 24.609375, 8.7547947 ], [ 24.609375, 8.40716816 ], [ 24.2578125, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 8.7547947 ], [ 24.2578125, 9.10209674 ], [ 24.609375, 9.10209674 ], [ 24.609375, 8.7547947 ], [ 24.2578125, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -0.35156029 ], [ 24.609375, 0 ], [ 24.9609375, 0 ], [ 24.9609375, -0.35156029 ], [ 24.609375, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -0.70310735 ], [ 24.609375, -0.35156029 ], [ 24.9609375, -0.35156029 ], [ 24.9609375, -0.70310735 ], [ 24.609375, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -1.05462794 ], [ 24.609375, -0.70310735 ], [ 24.9609375, -0.70310735 ], [ 24.9609375, -1.05462794 ], [ 24.609375, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -1.40610884 ], [ 24.609375, -1.05462794 ], [ 24.9609375, -1.05462794 ], [ 24.9609375, -1.40610884 ], [ 24.609375, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -1.75753681 ], [ 24.609375, -1.40610884 ], [ 24.9609375, -1.40610884 ], [ 24.9609375, -1.75753681 ], [ 24.609375, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -10.14193169 ], [ 24.609375, -9.79567758 ], [ 24.9609375, -9.79567758 ], [ 24.9609375, -10.14193169 ], [ 24.609375, -10.14193169 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -10.48781188 ], [ 24.609375, -10.14193169 ], [ 24.9609375, -10.14193169 ], [ 24.9609375, -10.48781188 ], [ 24.609375, -10.48781188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -2.10889866 ], [ 24.609375, -1.75753681 ], [ 24.9609375, -1.75753681 ], [ 24.9609375, -2.10889866 ], [ 24.609375, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -2.46018118 ], [ 24.609375, -2.10889866 ], [ 24.9609375, -2.10889866 ], [ 24.9609375, -2.46018118 ], [ 24.609375, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -2.81137119 ], [ 24.609375, -2.46018118 ], [ 24.9609375, -2.46018118 ], [ 24.9609375, -2.81137119 ], [ 24.609375, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -3.16245553 ], [ 24.609375, -2.81137119 ], [ 24.9609375, -2.81137119 ], [ 24.9609375, -3.16245553 ], [ 24.609375, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -3.51342105 ], [ 24.609375, -3.16245553 ], [ 24.9609375, -3.16245553 ], [ 24.9609375, -3.51342105 ], [ 24.609375, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -3.86425462 ], [ 24.609375, -3.51342105 ], [ 24.9609375, -3.51342105 ], [ 24.9609375, -3.86425462 ], [ 24.609375, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -4.21494314 ], [ 24.609375, -3.86425462 ], [ 24.9609375, -3.86425462 ], [ 24.9609375, -4.21494314 ], [ 24.609375, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -4.56547355 ], [ 24.609375, -4.21494314 ], [ 24.9609375, -4.21494314 ], [ 24.9609375, -4.56547355 ], [ 24.609375, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -4.9158328 ], [ 24.609375, -4.56547355 ], [ 24.9609375, -4.56547355 ], [ 24.9609375, -4.9158328 ], [ 24.609375, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -5.26600788 ], [ 24.609375, -4.9158328 ], [ 24.9609375, -4.9158328 ], [ 24.9609375, -5.26600788 ], [ 24.609375, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -5.61598582 ], [ 24.609375, -5.26600788 ], [ 24.9609375, -5.26600788 ], [ 24.9609375, -5.61598582 ], [ 24.609375, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -5.96575367 ], [ 24.609375, -5.61598582 ], [ 24.9609375, -5.61598582 ], [ 24.9609375, -5.96575367 ], [ 24.609375, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -6.31529854 ], [ 24.609375, -5.96575367 ], [ 24.9609375, -5.96575367 ], [ 24.9609375, -6.31529854 ], [ 24.609375, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -6.66460756 ], [ 24.609375, -6.31529854 ], [ 24.9609375, -6.31529854 ], [ 24.9609375, -6.66460756 ], [ 24.609375, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -7.01366793 ], [ 24.609375, -6.66460756 ], [ 24.9609375, -6.66460756 ], [ 24.9609375, -7.01366793 ], [ 24.609375, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -7.36246687 ], [ 24.609375, -7.01366793 ], [ 24.9609375, -7.01366793 ], [ 24.9609375, -7.36246687 ], [ 24.609375, -7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -7.71099166 ], [ 24.609375, -7.36246687 ], [ 24.9609375, -7.36246687 ], [ 24.9609375, -7.71099166 ], [ 24.609375, -7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -8.05922963 ], [ 24.609375, -7.71099166 ], [ 24.9609375, -7.71099166 ], [ 24.9609375, -8.05922963 ], [ 24.609375, -8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -8.40716816 ], [ 24.609375, -8.05922963 ], [ 24.9609375, -8.05922963 ], [ 24.9609375, -8.40716816 ], [ 24.609375, -8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -8.7547947 ], [ 24.609375, -8.40716816 ], [ 24.9609375, -8.40716816 ], [ 24.9609375, -8.7547947 ], [ 24.609375, -8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -9.10209674 ], [ 24.609375, -8.7547947 ], [ 24.9609375, -8.7547947 ], [ 24.9609375, -9.10209674 ], [ 24.609375, -9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -9.44906183 ], [ 24.609375, -9.10209674 ], [ 24.9609375, -9.10209674 ], [ 24.9609375, -9.44906183 ], [ 24.609375, -9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -9.79567758 ], [ 24.609375, -9.44906183 ], [ 24.9609375, -9.44906183 ], [ 24.9609375, -9.79567758 ], [ 24.609375, -9.79567758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 0 ], [ 24.609375, 0.35156029 ], [ 24.9609375, 0.35156029 ], [ 24.9609375, 0 ], [ 24.609375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 0.35156029 ], [ 24.609375, 0.70310735 ], [ 24.9609375, 0.70310735 ], [ 24.9609375, 0.35156029 ], [ 24.609375, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 0.70310735 ], [ 24.609375, 1.05462794 ], [ 24.9609375, 1.05462794 ], [ 24.9609375, 0.70310735 ], [ 24.609375, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 1.05462794 ], [ 24.609375, 1.40610884 ], [ 24.9609375, 1.40610884 ], [ 24.9609375, 1.05462794 ], [ 24.609375, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 1.40610884 ], [ 24.609375, 1.75753681 ], [ 24.9609375, 1.75753681 ], [ 24.9609375, 1.40610884 ], [ 24.609375, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 1.75753681 ], [ 24.609375, 2.10889866 ], [ 24.9609375, 2.10889866 ], [ 24.9609375, 1.75753681 ], [ 24.609375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 2.10889866 ], [ 24.609375, 2.46018118 ], [ 24.9609375, 2.46018118 ], [ 24.9609375, 2.10889866 ], [ 24.609375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 2.46018118 ], [ 24.609375, 2.81137119 ], [ 24.9609375, 2.81137119 ], [ 24.9609375, 2.46018118 ], [ 24.609375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 2.81137119 ], [ 24.609375, 3.16245553 ], [ 24.9609375, 3.16245553 ], [ 24.9609375, 2.81137119 ], [ 24.609375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 3.16245553 ], [ 24.609375, 3.51342105 ], [ 24.9609375, 3.51342105 ], [ 24.9609375, 3.16245553 ], [ 24.609375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 3.51342105 ], [ 24.609375, 3.86425462 ], [ 24.9609375, 3.86425462 ], [ 24.9609375, 3.51342105 ], [ 24.609375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 3.86425462 ], [ 24.609375, 4.21494314 ], [ 24.9609375, 4.21494314 ], [ 24.9609375, 3.86425462 ], [ 24.609375, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 4.21494314 ], [ 24.609375, 4.56547355 ], [ 24.9609375, 4.56547355 ], [ 24.9609375, 4.21494314 ], [ 24.609375, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 4.56547355 ], [ 24.609375, 4.9158328 ], [ 24.9609375, 4.9158328 ], [ 24.9609375, 4.56547355 ], [ 24.609375, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 4.9158328 ], [ 24.609375, 5.26600788 ], [ 24.9609375, 5.26600788 ], [ 24.9609375, 4.9158328 ], [ 24.609375, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 5.26600788 ], [ 24.609375, 5.61598582 ], [ 24.9609375, 5.61598582 ], [ 24.9609375, 5.26600788 ], [ 24.609375, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 5.61598582 ], [ 24.609375, 5.96575367 ], [ 24.9609375, 5.96575367 ], [ 24.9609375, 5.61598582 ], [ 24.609375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 5.96575367 ], [ 24.609375, 6.31529854 ], [ 24.9609375, 6.31529854 ], [ 24.9609375, 5.96575367 ], [ 24.609375, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 6.31529854 ], [ 24.609375, 6.66460756 ], [ 24.9609375, 6.66460756 ], [ 24.9609375, 6.31529854 ], [ 24.609375, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 6.66460756 ], [ 24.609375, 7.01366793 ], [ 24.9609375, 7.01366793 ], [ 24.9609375, 6.66460756 ], [ 24.609375, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 7.01366793 ], [ 24.609375, 7.36246687 ], [ 24.9609375, 7.36246687 ], [ 24.9609375, 7.01366793 ], [ 24.609375, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 7.36246687 ], [ 24.609375, 7.71099166 ], [ 24.9609375, 7.71099166 ], [ 24.9609375, 7.36246687 ], [ 24.609375, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 7.71099166 ], [ 24.609375, 8.05922963 ], [ 24.9609375, 8.05922963 ], [ 24.9609375, 7.71099166 ], [ 24.609375, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 8.05922963 ], [ 24.609375, 8.40716816 ], [ 24.9609375, 8.40716816 ], [ 24.9609375, 8.05922963 ], [ 24.609375, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 8.40716816 ], [ 24.609375, 8.7547947 ], [ 24.9609375, 8.7547947 ], [ 24.9609375, 8.40716816 ], [ 24.609375, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 8.7547947 ], [ 24.609375, 9.10209674 ], [ 24.9609375, 9.10209674 ], [ 24.9609375, 8.7547947 ], [ 24.609375, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 9.10209674 ], [ 24.609375, 9.44906183 ], [ 24.9609375, 9.44906183 ], [ 24.9609375, 9.10209674 ], [ 24.609375, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -0.35156029 ], [ 24.9609375, 0 ], [ 25.3125, 0 ], [ 25.3125, -0.35156029 ], [ 24.9609375, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -0.70310735 ], [ 24.9609375, -0.35156029 ], [ 25.3125, -0.35156029 ], [ 25.3125, -0.70310735 ], [ 24.9609375, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -1.05462794 ], [ 24.9609375, -0.70310735 ], [ 25.3125, -0.70310735 ], [ 25.3125, -1.05462794 ], [ 24.9609375, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -1.40610884 ], [ 24.9609375, -1.05462794 ], [ 25.3125, -1.05462794 ], [ 25.3125, -1.40610884 ], [ 24.9609375, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -1.75753681 ], [ 24.9609375, -1.40610884 ], [ 25.3125, -1.40610884 ], [ 25.3125, -1.75753681 ], [ 24.9609375, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -2.10889866 ], [ 24.9609375, -1.75753681 ], [ 25.3125, -1.75753681 ], [ 25.3125, -2.10889866 ], [ 24.9609375, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -2.46018118 ], [ 24.9609375, -2.10889866 ], [ 25.3125, -2.10889866 ], [ 25.3125, -2.46018118 ], [ 24.9609375, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -2.81137119 ], [ 24.9609375, -2.46018118 ], [ 25.3125, -2.46018118 ], [ 25.3125, -2.81137119 ], [ 24.9609375, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -3.16245553 ], [ 24.9609375, -2.81137119 ], [ 25.3125, -2.81137119 ], [ 25.3125, -3.16245553 ], [ 24.9609375, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -3.51342105 ], [ 24.9609375, -3.16245553 ], [ 25.3125, -3.16245553 ], [ 25.3125, -3.51342105 ], [ 24.9609375, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -3.86425462 ], [ 24.9609375, -3.51342105 ], [ 25.3125, -3.51342105 ], [ 25.3125, -3.86425462 ], [ 24.9609375, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -4.21494314 ], [ 24.9609375, -3.86425462 ], [ 25.3125, -3.86425462 ], [ 25.3125, -4.21494314 ], [ 24.9609375, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -4.56547355 ], [ 24.9609375, -4.21494314 ], [ 25.3125, -4.21494314 ], [ 25.3125, -4.56547355 ], [ 24.9609375, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -4.9158328 ], [ 24.9609375, -4.56547355 ], [ 25.3125, -4.56547355 ], [ 25.3125, -4.9158328 ], [ 24.9609375, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -5.26600788 ], [ 24.9609375, -4.9158328 ], [ 25.3125, -4.9158328 ], [ 25.3125, -5.26600788 ], [ 24.9609375, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -5.61598582 ], [ 24.9609375, -5.26600788 ], [ 25.3125, -5.26600788 ], [ 25.3125, -5.61598582 ], [ 24.9609375, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -5.96575367 ], [ 24.9609375, -5.61598582 ], [ 25.3125, -5.61598582 ], [ 25.3125, -5.96575367 ], [ 24.9609375, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -6.31529854 ], [ 24.9609375, -5.96575367 ], [ 25.3125, -5.96575367 ], [ 25.3125, -6.31529854 ], [ 24.9609375, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -6.66460756 ], [ 24.9609375, -6.31529854 ], [ 25.3125, -6.31529854 ], [ 25.3125, -6.66460756 ], [ 24.9609375, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -7.01366793 ], [ 24.9609375, -6.66460756 ], [ 25.3125, -6.66460756 ], [ 25.3125, -7.01366793 ], [ 24.9609375, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -7.36246687 ], [ 24.9609375, -7.01366793 ], [ 25.3125, -7.01366793 ], [ 25.3125, -7.36246687 ], [ 24.9609375, -7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -7.71099166 ], [ 24.9609375, -7.36246687 ], [ 25.3125, -7.36246687 ], [ 25.3125, -7.71099166 ], [ 24.9609375, -7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -8.05922963 ], [ 24.9609375, -7.71099166 ], [ 25.3125, -7.71099166 ], [ 25.3125, -8.05922963 ], [ 24.9609375, -8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -8.40716816 ], [ 24.9609375, -8.05922963 ], [ 25.3125, -8.05922963 ], [ 25.3125, -8.40716816 ], [ 24.9609375, -8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -8.7547947 ], [ 24.9609375, -8.40716816 ], [ 25.3125, -8.40716816 ], [ 25.3125, -8.7547947 ], [ 24.9609375, -8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -9.10209674 ], [ 24.9609375, -8.7547947 ], [ 25.3125, -8.7547947 ], [ 25.3125, -9.10209674 ], [ 24.9609375, -9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, -9.44906183 ], [ 24.9609375, -9.10209674 ], [ 25.3125, -9.10209674 ], [ 25.3125, -9.44906183 ], [ 24.9609375, -9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 0 ], [ 24.9609375, 0.35156029 ], [ 25.3125, 0.35156029 ], [ 25.3125, 0 ], [ 24.9609375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 0.35156029 ], [ 24.9609375, 0.70310735 ], [ 25.3125, 0.70310735 ], [ 25.3125, 0.35156029 ], [ 24.9609375, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 0.70310735 ], [ 24.9609375, 1.05462794 ], [ 25.3125, 1.05462794 ], [ 25.3125, 0.70310735 ], [ 24.9609375, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 1.05462794 ], [ 24.9609375, 1.40610884 ], [ 25.3125, 1.40610884 ], [ 25.3125, 1.05462794 ], [ 24.9609375, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 1.40610884 ], [ 24.9609375, 1.75753681 ], [ 25.3125, 1.75753681 ], [ 25.3125, 1.40610884 ], [ 24.9609375, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 1.75753681 ], [ 24.9609375, 2.10889866 ], [ 25.3125, 2.10889866 ], [ 25.3125, 1.75753681 ], [ 24.9609375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 2.10889866 ], [ 24.9609375, 2.46018118 ], [ 25.3125, 2.46018118 ], [ 25.3125, 2.10889866 ], [ 24.9609375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 2.46018118 ], [ 24.9609375, 2.81137119 ], [ 25.3125, 2.81137119 ], [ 25.3125, 2.46018118 ], [ 24.9609375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 2.81137119 ], [ 24.9609375, 3.16245553 ], [ 25.3125, 3.16245553 ], [ 25.3125, 2.81137119 ], [ 24.9609375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 3.16245553 ], [ 24.9609375, 3.51342105 ], [ 25.3125, 3.51342105 ], [ 25.3125, 3.16245553 ], [ 24.9609375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 3.51342105 ], [ 24.9609375, 3.86425462 ], [ 25.3125, 3.86425462 ], [ 25.3125, 3.51342105 ], [ 24.9609375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 3.86425462 ], [ 24.9609375, 4.21494314 ], [ 25.3125, 4.21494314 ], [ 25.3125, 3.86425462 ], [ 24.9609375, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 4.21494314 ], [ 24.9609375, 4.56547355 ], [ 25.3125, 4.56547355 ], [ 25.3125, 4.21494314 ], [ 24.9609375, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 4.56547355 ], [ 24.9609375, 4.9158328 ], [ 25.3125, 4.9158328 ], [ 25.3125, 4.56547355 ], [ 24.9609375, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 4.9158328 ], [ 24.9609375, 5.26600788 ], [ 25.3125, 5.26600788 ], [ 25.3125, 4.9158328 ], [ 24.9609375, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 5.26600788 ], [ 24.9609375, 5.61598582 ], [ 25.3125, 5.61598582 ], [ 25.3125, 5.26600788 ], [ 24.9609375, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 5.61598582 ], [ 24.9609375, 5.96575367 ], [ 25.3125, 5.96575367 ], [ 25.3125, 5.61598582 ], [ 24.9609375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 5.96575367 ], [ 24.9609375, 6.31529854 ], [ 25.3125, 6.31529854 ], [ 25.3125, 5.96575367 ], [ 24.9609375, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 6.31529854 ], [ 24.9609375, 6.66460756 ], [ 25.3125, 6.66460756 ], [ 25.3125, 6.31529854 ], [ 24.9609375, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 6.66460756 ], [ 24.9609375, 7.01366793 ], [ 25.3125, 7.01366793 ], [ 25.3125, 6.66460756 ], [ 24.9609375, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 7.01366793 ], [ 24.9609375, 7.36246687 ], [ 25.3125, 7.36246687 ], [ 25.3125, 7.01366793 ], [ 24.9609375, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 7.36246687 ], [ 24.9609375, 7.71099166 ], [ 25.3125, 7.71099166 ], [ 25.3125, 7.36246687 ], [ 24.9609375, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 7.71099166 ], [ 24.9609375, 8.05922963 ], [ 25.3125, 8.05922963 ], [ 25.3125, 7.71099166 ], [ 24.9609375, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 8.05922963 ], [ 24.9609375, 8.40716816 ], [ 25.3125, 8.40716816 ], [ 25.3125, 8.05922963 ], [ 24.9609375, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 8.40716816 ], [ 24.9609375, 8.7547947 ], [ 25.3125, 8.7547947 ], [ 25.3125, 8.40716816 ], [ 24.9609375, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 8.7547947 ], [ 24.9609375, 9.10209674 ], [ 25.3125, 9.10209674 ], [ 25.3125, 8.7547947 ], [ 24.9609375, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.9609375, 9.10209674 ], [ 24.9609375, 9.44906183 ], [ 25.3125, 9.44906183 ], [ 25.3125, 9.10209674 ], [ 24.9609375, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -0.35156029 ], [ 25.3125, 0 ], [ 25.6640625, 0 ], [ 25.6640625, -0.35156029 ], [ 25.3125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -0.70310735 ], [ 25.3125, -0.35156029 ], [ 25.6640625, -0.35156029 ], [ 25.6640625, -0.70310735 ], [ 25.3125, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -1.05462794 ], [ 25.3125, -0.70310735 ], [ 25.6640625, -0.70310735 ], [ 25.6640625, -1.05462794 ], [ 25.3125, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -1.40610884 ], [ 25.3125, -1.05462794 ], [ 25.6640625, -1.05462794 ], [ 25.6640625, -1.40610884 ], [ 25.3125, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -1.75753681 ], [ 25.3125, -1.40610884 ], [ 25.6640625, -1.40610884 ], [ 25.6640625, -1.75753681 ], [ 25.3125, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -2.10889866 ], [ 25.3125, -1.75753681 ], [ 25.6640625, -1.75753681 ], [ 25.6640625, -2.10889866 ], [ 25.3125, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -2.46018118 ], [ 25.3125, -2.10889866 ], [ 25.6640625, -2.10889866 ], [ 25.6640625, -2.46018118 ], [ 25.3125, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -2.81137119 ], [ 25.3125, -2.46018118 ], [ 25.6640625, -2.46018118 ], [ 25.6640625, -2.81137119 ], [ 25.3125, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -3.16245553 ], [ 25.3125, -2.81137119 ], [ 25.6640625, -2.81137119 ], [ 25.6640625, -3.16245553 ], [ 25.3125, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -3.51342105 ], [ 25.3125, -3.16245553 ], [ 25.6640625, -3.16245553 ], [ 25.6640625, -3.51342105 ], [ 25.3125, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -3.86425462 ], [ 25.3125, -3.51342105 ], [ 25.6640625, -3.51342105 ], [ 25.6640625, -3.86425462 ], [ 25.3125, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -4.21494314 ], [ 25.3125, -3.86425462 ], [ 25.6640625, -3.86425462 ], [ 25.6640625, -4.21494314 ], [ 25.3125, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -4.56547355 ], [ 25.3125, -4.21494314 ], [ 25.6640625, -4.21494314 ], [ 25.6640625, -4.56547355 ], [ 25.3125, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -4.9158328 ], [ 25.3125, -4.56547355 ], [ 25.6640625, -4.56547355 ], [ 25.6640625, -4.9158328 ], [ 25.3125, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -5.26600788 ], [ 25.3125, -4.9158328 ], [ 25.6640625, -4.9158328 ], [ 25.6640625, -5.26600788 ], [ 25.3125, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -5.61598582 ], [ 25.3125, -5.26600788 ], [ 25.6640625, -5.26600788 ], [ 25.6640625, -5.61598582 ], [ 25.3125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -5.96575367 ], [ 25.3125, -5.61598582 ], [ 25.6640625, -5.61598582 ], [ 25.6640625, -5.96575367 ], [ 25.3125, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -6.31529854 ], [ 25.3125, -5.96575367 ], [ 25.6640625, -5.96575367 ], [ 25.6640625, -6.31529854 ], [ 25.3125, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -6.66460756 ], [ 25.3125, -6.31529854 ], [ 25.6640625, -6.31529854 ], [ 25.6640625, -6.66460756 ], [ 25.3125, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -7.01366793 ], [ 25.3125, -6.66460756 ], [ 25.6640625, -6.66460756 ], [ 25.6640625, -7.01366793 ], [ 25.3125, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -7.36246687 ], [ 25.3125, -7.01366793 ], [ 25.6640625, -7.01366793 ], [ 25.6640625, -7.36246687 ], [ 25.3125, -7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -7.71099166 ], [ 25.3125, -7.36246687 ], [ 25.6640625, -7.36246687 ], [ 25.6640625, -7.71099166 ], [ 25.3125, -7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, -8.05922963 ], [ 25.3125, -7.71099166 ], [ 25.6640625, -7.71099166 ], [ 25.6640625, -8.05922963 ], [ 25.3125, -8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 0 ], [ 25.3125, 0.35156029 ], [ 25.6640625, 0.35156029 ], [ 25.6640625, 0 ], [ 25.3125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 0.35156029 ], [ 25.3125, 0.70310735 ], [ 25.6640625, 0.70310735 ], [ 25.6640625, 0.35156029 ], [ 25.3125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 0.70310735 ], [ 25.3125, 1.05462794 ], [ 25.6640625, 1.05462794 ], [ 25.6640625, 0.70310735 ], [ 25.3125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 1.05462794 ], [ 25.3125, 1.40610884 ], [ 25.6640625, 1.40610884 ], [ 25.6640625, 1.05462794 ], [ 25.3125, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 1.40610884 ], [ 25.3125, 1.75753681 ], [ 25.6640625, 1.75753681 ], [ 25.6640625, 1.40610884 ], [ 25.3125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 1.75753681 ], [ 25.3125, 2.10889866 ], [ 25.6640625, 2.10889866 ], [ 25.6640625, 1.75753681 ], [ 25.3125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 2.10889866 ], [ 25.3125, 2.46018118 ], [ 25.6640625, 2.46018118 ], [ 25.6640625, 2.10889866 ], [ 25.3125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 2.46018118 ], [ 25.3125, 2.81137119 ], [ 25.6640625, 2.81137119 ], [ 25.6640625, 2.46018118 ], [ 25.3125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 2.81137119 ], [ 25.3125, 3.16245553 ], [ 25.6640625, 3.16245553 ], [ 25.6640625, 2.81137119 ], [ 25.3125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 3.16245553 ], [ 25.3125, 3.51342105 ], [ 25.6640625, 3.51342105 ], [ 25.6640625, 3.16245553 ], [ 25.3125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 3.51342105 ], [ 25.3125, 3.86425462 ], [ 25.6640625, 3.86425462 ], [ 25.6640625, 3.51342105 ], [ 25.3125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 3.86425462 ], [ 25.3125, 4.21494314 ], [ 25.6640625, 4.21494314 ], [ 25.6640625, 3.86425462 ], [ 25.3125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 4.21494314 ], [ 25.3125, 4.56547355 ], [ 25.6640625, 4.56547355 ], [ 25.6640625, 4.21494314 ], [ 25.3125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 4.56547355 ], [ 25.3125, 4.9158328 ], [ 25.6640625, 4.9158328 ], [ 25.6640625, 4.56547355 ], [ 25.3125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 4.9158328 ], [ 25.3125, 5.26600788 ], [ 25.6640625, 5.26600788 ], [ 25.6640625, 4.9158328 ], [ 25.3125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 5.26600788 ], [ 25.3125, 5.61598582 ], [ 25.6640625, 5.61598582 ], [ 25.6640625, 5.26600788 ], [ 25.3125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 5.61598582 ], [ 25.3125, 5.96575367 ], [ 25.6640625, 5.96575367 ], [ 25.6640625, 5.61598582 ], [ 25.3125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 5.96575367 ], [ 25.3125, 6.31529854 ], [ 25.6640625, 6.31529854 ], [ 25.6640625, 5.96575367 ], [ 25.3125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 6.31529854 ], [ 25.3125, 6.66460756 ], [ 25.6640625, 6.66460756 ], [ 25.6640625, 6.31529854 ], [ 25.3125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 6.66460756 ], [ 25.3125, 7.01366793 ], [ 25.6640625, 7.01366793 ], [ 25.6640625, 6.66460756 ], [ 25.3125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 7.01366793 ], [ 25.3125, 7.36246687 ], [ 25.6640625, 7.36246687 ], [ 25.6640625, 7.01366793 ], [ 25.3125, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 7.36246687 ], [ 25.3125, 7.71099166 ], [ 25.6640625, 7.71099166 ], [ 25.6640625, 7.36246687 ], [ 25.3125, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 7.71099166 ], [ 25.3125, 8.05922963 ], [ 25.6640625, 8.05922963 ], [ 25.6640625, 7.71099166 ], [ 25.3125, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 8.05922963 ], [ 25.3125, 8.40716816 ], [ 25.6640625, 8.40716816 ], [ 25.6640625, 8.05922963 ], [ 25.3125, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 8.40716816 ], [ 25.3125, 8.7547947 ], [ 25.6640625, 8.7547947 ], [ 25.6640625, 8.40716816 ], [ 25.3125, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.3125, 8.7547947 ], [ 25.3125, 9.10209674 ], [ 25.6640625, 9.10209674 ], [ 25.6640625, 8.7547947 ], [ 25.3125, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -0.35156029 ], [ 25.6640625, 0 ], [ 26.015625, 0 ], [ 26.015625, -0.35156029 ], [ 25.6640625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -0.70310735 ], [ 25.6640625, -0.35156029 ], [ 26.015625, -0.35156029 ], [ 26.015625, -0.70310735 ], [ 25.6640625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -1.05462794 ], [ 25.6640625, -0.70310735 ], [ 26.015625, -0.70310735 ], [ 26.015625, -1.05462794 ], [ 25.6640625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -1.40610884 ], [ 25.6640625, -1.05462794 ], [ 26.015625, -1.05462794 ], [ 26.015625, -1.40610884 ], [ 25.6640625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -1.75753681 ], [ 25.6640625, -1.40610884 ], [ 26.015625, -1.40610884 ], [ 26.015625, -1.75753681 ], [ 25.6640625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -2.10889866 ], [ 25.6640625, -1.75753681 ], [ 26.015625, -1.75753681 ], [ 26.015625, -2.10889866 ], [ 25.6640625, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -2.46018118 ], [ 25.6640625, -2.10889866 ], [ 26.015625, -2.10889866 ], [ 26.015625, -2.46018118 ], [ 25.6640625, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -2.81137119 ], [ 25.6640625, -2.46018118 ], [ 26.015625, -2.46018118 ], [ 26.015625, -2.81137119 ], [ 25.6640625, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -3.16245553 ], [ 25.6640625, -2.81137119 ], [ 26.015625, -2.81137119 ], [ 26.015625, -3.16245553 ], [ 25.6640625, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -3.51342105 ], [ 25.6640625, -3.16245553 ], [ 26.015625, -3.16245553 ], [ 26.015625, -3.51342105 ], [ 25.6640625, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -3.86425462 ], [ 25.6640625, -3.51342105 ], [ 26.015625, -3.51342105 ], [ 26.015625, -3.86425462 ], [ 25.6640625, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -4.21494314 ], [ 25.6640625, -3.86425462 ], [ 26.015625, -3.86425462 ], [ 26.015625, -4.21494314 ], [ 25.6640625, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -4.56547355 ], [ 25.6640625, -4.21494314 ], [ 26.015625, -4.21494314 ], [ 26.015625, -4.56547355 ], [ 25.6640625, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -4.9158328 ], [ 25.6640625, -4.56547355 ], [ 26.015625, -4.56547355 ], [ 26.015625, -4.9158328 ], [ 25.6640625, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -5.26600788 ], [ 25.6640625, -4.9158328 ], [ 26.015625, -4.9158328 ], [ 26.015625, -5.26600788 ], [ 25.6640625, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -5.61598582 ], [ 25.6640625, -5.26600788 ], [ 26.015625, -5.26600788 ], [ 26.015625, -5.61598582 ], [ 25.6640625, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -5.96575367 ], [ 25.6640625, -5.61598582 ], [ 26.015625, -5.61598582 ], [ 26.015625, -5.96575367 ], [ 25.6640625, -5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -6.31529854 ], [ 25.6640625, -5.96575367 ], [ 26.015625, -5.96575367 ], [ 26.015625, -6.31529854 ], [ 25.6640625, -6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -6.66460756 ], [ 25.6640625, -6.31529854 ], [ 26.015625, -6.31529854 ], [ 26.015625, -6.66460756 ], [ 25.6640625, -6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, -7.01366793 ], [ 25.6640625, -6.66460756 ], [ 26.015625, -6.66460756 ], [ 26.015625, -7.01366793 ], [ 25.6640625, -7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 0 ], [ 25.6640625, 0.35156029 ], [ 26.015625, 0.35156029 ], [ 26.015625, 0 ], [ 25.6640625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 0.35156029 ], [ 25.6640625, 0.70310735 ], [ 26.015625, 0.70310735 ], [ 26.015625, 0.35156029 ], [ 25.6640625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 0.70310735 ], [ 25.6640625, 1.05462794 ], [ 26.015625, 1.05462794 ], [ 26.015625, 0.70310735 ], [ 25.6640625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 1.05462794 ], [ 25.6640625, 1.40610884 ], [ 26.015625, 1.40610884 ], [ 26.015625, 1.05462794 ], [ 25.6640625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 1.40610884 ], [ 25.6640625, 1.75753681 ], [ 26.015625, 1.75753681 ], [ 26.015625, 1.40610884 ], [ 25.6640625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 1.75753681 ], [ 25.6640625, 2.10889866 ], [ 26.015625, 2.10889866 ], [ 26.015625, 1.75753681 ], [ 25.6640625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 2.10889866 ], [ 25.6640625, 2.46018118 ], [ 26.015625, 2.46018118 ], [ 26.015625, 2.10889866 ], [ 25.6640625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 2.46018118 ], [ 25.6640625, 2.81137119 ], [ 26.015625, 2.81137119 ], [ 26.015625, 2.46018118 ], [ 25.6640625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 2.81137119 ], [ 25.6640625, 3.16245553 ], [ 26.015625, 3.16245553 ], [ 26.015625, 2.81137119 ], [ 25.6640625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 3.16245553 ], [ 25.6640625, 3.51342105 ], [ 26.015625, 3.51342105 ], [ 26.015625, 3.16245553 ], [ 25.6640625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 3.51342105 ], [ 25.6640625, 3.86425462 ], [ 26.015625, 3.86425462 ], [ 26.015625, 3.51342105 ], [ 25.6640625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 3.86425462 ], [ 25.6640625, 4.21494314 ], [ 26.015625, 4.21494314 ], [ 26.015625, 3.86425462 ], [ 25.6640625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 4.21494314 ], [ 25.6640625, 4.56547355 ], [ 26.015625, 4.56547355 ], [ 26.015625, 4.21494314 ], [ 25.6640625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 4.56547355 ], [ 25.6640625, 4.9158328 ], [ 26.015625, 4.9158328 ], [ 26.015625, 4.56547355 ], [ 25.6640625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 4.9158328 ], [ 25.6640625, 5.26600788 ], [ 26.015625, 5.26600788 ], [ 26.015625, 4.9158328 ], [ 25.6640625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 5.26600788 ], [ 25.6640625, 5.61598582 ], [ 26.015625, 5.61598582 ], [ 26.015625, 5.26600788 ], [ 25.6640625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 5.61598582 ], [ 25.6640625, 5.96575367 ], [ 26.015625, 5.96575367 ], [ 26.015625, 5.61598582 ], [ 25.6640625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 5.96575367 ], [ 25.6640625, 6.31529854 ], [ 26.015625, 6.31529854 ], [ 26.015625, 5.96575367 ], [ 25.6640625, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 6.31529854 ], [ 25.6640625, 6.66460756 ], [ 26.015625, 6.66460756 ], [ 26.015625, 6.31529854 ], [ 25.6640625, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 6.66460756 ], [ 25.6640625, 7.01366793 ], [ 26.015625, 7.01366793 ], [ 26.015625, 6.66460756 ], [ 25.6640625, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 7.01366793 ], [ 25.6640625, 7.36246687 ], [ 26.015625, 7.36246687 ], [ 26.015625, 7.01366793 ], [ 25.6640625, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 7.36246687 ], [ 25.6640625, 7.71099166 ], [ 26.015625, 7.71099166 ], [ 26.015625, 7.36246687 ], [ 25.6640625, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 7.71099166 ], [ 25.6640625, 8.05922963 ], [ 26.015625, 8.05922963 ], [ 26.015625, 7.71099166 ], [ 25.6640625, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.6640625, 8.05922963 ], [ 25.6640625, 8.40716816 ], [ 26.015625, 8.40716816 ], [ 26.015625, 8.05922963 ], [ 25.6640625, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -0.35156029 ], [ 26.015625, 0 ], [ 26.3671875, 0 ], [ 26.3671875, -0.35156029 ], [ 26.015625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -0.70310735 ], [ 26.015625, -0.35156029 ], [ 26.3671875, -0.35156029 ], [ 26.3671875, -0.70310735 ], [ 26.015625, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -1.05462794 ], [ 26.015625, -0.70310735 ], [ 26.3671875, -0.70310735 ], [ 26.3671875, -1.05462794 ], [ 26.015625, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -1.40610884 ], [ 26.015625, -1.05462794 ], [ 26.3671875, -1.05462794 ], [ 26.3671875, -1.40610884 ], [ 26.015625, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -1.75753681 ], [ 26.015625, -1.40610884 ], [ 26.3671875, -1.40610884 ], [ 26.3671875, -1.75753681 ], [ 26.015625, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -2.10889866 ], [ 26.015625, -1.75753681 ], [ 26.3671875, -1.75753681 ], [ 26.3671875, -2.10889866 ], [ 26.015625, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -2.46018118 ], [ 26.015625, -2.10889866 ], [ 26.3671875, -2.10889866 ], [ 26.3671875, -2.46018118 ], [ 26.015625, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -2.81137119 ], [ 26.015625, -2.46018118 ], [ 26.3671875, -2.46018118 ], [ 26.3671875, -2.81137119 ], [ 26.015625, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -3.16245553 ], [ 26.015625, -2.81137119 ], [ 26.3671875, -2.81137119 ], [ 26.3671875, -3.16245553 ], [ 26.015625, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -3.51342105 ], [ 26.015625, -3.16245553 ], [ 26.3671875, -3.16245553 ], [ 26.3671875, -3.51342105 ], [ 26.015625, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -3.86425462 ], [ 26.015625, -3.51342105 ], [ 26.3671875, -3.51342105 ], [ 26.3671875, -3.86425462 ], [ 26.015625, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -4.21494314 ], [ 26.015625, -3.86425462 ], [ 26.3671875, -3.86425462 ], [ 26.3671875, -4.21494314 ], [ 26.015625, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -4.56547355 ], [ 26.015625, -4.21494314 ], [ 26.3671875, -4.21494314 ], [ 26.3671875, -4.56547355 ], [ 26.015625, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -4.9158328 ], [ 26.015625, -4.56547355 ], [ 26.3671875, -4.56547355 ], [ 26.3671875, -4.9158328 ], [ 26.015625, -4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -5.26600788 ], [ 26.015625, -4.9158328 ], [ 26.3671875, -4.9158328 ], [ 26.3671875, -5.26600788 ], [ 26.015625, -5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, -5.61598582 ], [ 26.015625, -5.26600788 ], [ 26.3671875, -5.26600788 ], [ 26.3671875, -5.61598582 ], [ 26.015625, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 0 ], [ 26.015625, 0.35156029 ], [ 26.3671875, 0.35156029 ], [ 26.3671875, 0 ], [ 26.015625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 0.35156029 ], [ 26.015625, 0.70310735 ], [ 26.3671875, 0.70310735 ], [ 26.3671875, 0.35156029 ], [ 26.015625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 0.70310735 ], [ 26.015625, 1.05462794 ], [ 26.3671875, 1.05462794 ], [ 26.3671875, 0.70310735 ], [ 26.015625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 1.05462794 ], [ 26.015625, 1.40610884 ], [ 26.3671875, 1.40610884 ], [ 26.3671875, 1.05462794 ], [ 26.015625, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 1.40610884 ], [ 26.015625, 1.75753681 ], [ 26.3671875, 1.75753681 ], [ 26.3671875, 1.40610884 ], [ 26.015625, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 1.75753681 ], [ 26.015625, 2.10889866 ], [ 26.3671875, 2.10889866 ], [ 26.3671875, 1.75753681 ], [ 26.015625, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 2.10889866 ], [ 26.015625, 2.46018118 ], [ 26.3671875, 2.46018118 ], [ 26.3671875, 2.10889866 ], [ 26.015625, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 2.46018118 ], [ 26.015625, 2.81137119 ], [ 26.3671875, 2.81137119 ], [ 26.3671875, 2.46018118 ], [ 26.015625, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 2.81137119 ], [ 26.015625, 3.16245553 ], [ 26.3671875, 3.16245553 ], [ 26.3671875, 2.81137119 ], [ 26.015625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 3.16245553 ], [ 26.015625, 3.51342105 ], [ 26.3671875, 3.51342105 ], [ 26.3671875, 3.16245553 ], [ 26.015625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 3.51342105 ], [ 26.015625, 3.86425462 ], [ 26.3671875, 3.86425462 ], [ 26.3671875, 3.51342105 ], [ 26.015625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 3.86425462 ], [ 26.015625, 4.21494314 ], [ 26.3671875, 4.21494314 ], [ 26.3671875, 3.86425462 ], [ 26.015625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 4.21494314 ], [ 26.015625, 4.56547355 ], [ 26.3671875, 4.56547355 ], [ 26.3671875, 4.21494314 ], [ 26.015625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 4.56547355 ], [ 26.015625, 4.9158328 ], [ 26.3671875, 4.9158328 ], [ 26.3671875, 4.56547355 ], [ 26.015625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 4.9158328 ], [ 26.015625, 5.26600788 ], [ 26.3671875, 5.26600788 ], [ 26.3671875, 4.9158328 ], [ 26.015625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 5.26600788 ], [ 26.015625, 5.61598582 ], [ 26.3671875, 5.61598582 ], [ 26.3671875, 5.26600788 ], [ 26.015625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 5.61598582 ], [ 26.015625, 5.96575367 ], [ 26.3671875, 5.96575367 ], [ 26.3671875, 5.61598582 ], [ 26.015625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 5.96575367 ], [ 26.015625, 6.31529854 ], [ 26.3671875, 6.31529854 ], [ 26.3671875, 5.96575367 ], [ 26.015625, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 6.31529854 ], [ 26.015625, 6.66460756 ], [ 26.3671875, 6.66460756 ], [ 26.3671875, 6.31529854 ], [ 26.015625, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 6.66460756 ], [ 26.015625, 7.01366793 ], [ 26.3671875, 7.01366793 ], [ 26.3671875, 6.66460756 ], [ 26.015625, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 7.01366793 ], [ 26.015625, 7.36246687 ], [ 26.3671875, 7.36246687 ], [ 26.3671875, 7.01366793 ], [ 26.015625, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 7.36246687 ], [ 26.015625, 7.71099166 ], [ 26.3671875, 7.71099166 ], [ 26.3671875, 7.36246687 ], [ 26.015625, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 7.71099166 ], [ 26.015625, 8.05922963 ], [ 26.3671875, 8.05922963 ], [ 26.3671875, 7.71099166 ], [ 26.015625, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 8.05922963 ], [ 26.015625, 8.40716816 ], [ 26.3671875, 8.40716816 ], [ 26.3671875, 8.05922963 ], [ 26.015625, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 8.40716816 ], [ 26.015625, 8.7547947 ], [ 26.3671875, 8.7547947 ], [ 26.3671875, 8.40716816 ], [ 26.015625, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 8.7547947 ], [ 26.015625, 9.10209674 ], [ 26.3671875, 9.10209674 ], [ 26.3671875, 8.7547947 ], [ 26.015625, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 9.10209674 ], [ 26.015625, 9.44906183 ], [ 26.3671875, 9.44906183 ], [ 26.3671875, 9.10209674 ], [ 26.015625, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -0.35156029 ], [ 26.3671875, 0 ], [ 26.71875, 0 ], [ 26.71875, -0.35156029 ], [ 26.3671875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -0.70310735 ], [ 26.3671875, -0.35156029 ], [ 26.71875, -0.35156029 ], [ 26.71875, -0.70310735 ], [ 26.3671875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -1.05462794 ], [ 26.3671875, -0.70310735 ], [ 26.71875, -0.70310735 ], [ 26.71875, -1.05462794 ], [ 26.3671875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -1.40610884 ], [ 26.3671875, -1.05462794 ], [ 26.71875, -1.05462794 ], [ 26.71875, -1.40610884 ], [ 26.3671875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -1.75753681 ], [ 26.3671875, -1.40610884 ], [ 26.71875, -1.40610884 ], [ 26.71875, -1.75753681 ], [ 26.3671875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -2.10889866 ], [ 26.3671875, -1.75753681 ], [ 26.71875, -1.75753681 ], [ 26.71875, -2.10889866 ], [ 26.3671875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -2.46018118 ], [ 26.3671875, -2.10889866 ], [ 26.71875, -2.10889866 ], [ 26.71875, -2.46018118 ], [ 26.3671875, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -2.81137119 ], [ 26.3671875, -2.46018118 ], [ 26.71875, -2.46018118 ], [ 26.71875, -2.81137119 ], [ 26.3671875, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -3.16245553 ], [ 26.3671875, -2.81137119 ], [ 26.71875, -2.81137119 ], [ 26.71875, -3.16245553 ], [ 26.3671875, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -3.51342105 ], [ 26.3671875, -3.16245553 ], [ 26.71875, -3.16245553 ], [ 26.71875, -3.51342105 ], [ 26.3671875, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -3.86425462 ], [ 26.3671875, -3.51342105 ], [ 26.71875, -3.51342105 ], [ 26.71875, -3.86425462 ], [ 26.3671875, -3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -4.21494314 ], [ 26.3671875, -3.86425462 ], [ 26.71875, -3.86425462 ], [ 26.71875, -4.21494314 ], [ 26.3671875, -4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, -4.56547355 ], [ 26.3671875, -4.21494314 ], [ 26.71875, -4.21494314 ], [ 26.71875, -4.56547355 ], [ 26.3671875, -4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 0 ], [ 26.3671875, 0.35156029 ], [ 26.71875, 0.35156029 ], [ 26.71875, 0 ], [ 26.3671875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 0.35156029 ], [ 26.3671875, 0.70310735 ], [ 26.71875, 0.70310735 ], [ 26.71875, 0.35156029 ], [ 26.3671875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 0.70310735 ], [ 26.3671875, 1.05462794 ], [ 26.71875, 1.05462794 ], [ 26.71875, 0.70310735 ], [ 26.3671875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 1.05462794 ], [ 26.3671875, 1.40610884 ], [ 26.71875, 1.40610884 ], [ 26.71875, 1.05462794 ], [ 26.3671875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 1.40610884 ], [ 26.3671875, 1.75753681 ], [ 26.71875, 1.75753681 ], [ 26.71875, 1.40610884 ], [ 26.3671875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 1.75753681 ], [ 26.3671875, 2.10889866 ], [ 26.71875, 2.10889866 ], [ 26.71875, 1.75753681 ], [ 26.3671875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 2.10889866 ], [ 26.3671875, 2.46018118 ], [ 26.71875, 2.46018118 ], [ 26.71875, 2.10889866 ], [ 26.3671875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 2.46018118 ], [ 26.3671875, 2.81137119 ], [ 26.71875, 2.81137119 ], [ 26.71875, 2.46018118 ], [ 26.3671875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 2.81137119 ], [ 26.3671875, 3.16245553 ], [ 26.71875, 3.16245553 ], [ 26.71875, 2.81137119 ], [ 26.3671875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 3.16245553 ], [ 26.3671875, 3.51342105 ], [ 26.71875, 3.51342105 ], [ 26.71875, 3.16245553 ], [ 26.3671875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 3.51342105 ], [ 26.3671875, 3.86425462 ], [ 26.71875, 3.86425462 ], [ 26.71875, 3.51342105 ], [ 26.3671875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 3.86425462 ], [ 26.3671875, 4.21494314 ], [ 26.71875, 4.21494314 ], [ 26.71875, 3.86425462 ], [ 26.3671875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 4.21494314 ], [ 26.3671875, 4.56547355 ], [ 26.71875, 4.56547355 ], [ 26.71875, 4.21494314 ], [ 26.3671875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 4.56547355 ], [ 26.3671875, 4.9158328 ], [ 26.71875, 4.9158328 ], [ 26.71875, 4.56547355 ], [ 26.3671875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 4.9158328 ], [ 26.3671875, 5.26600788 ], [ 26.71875, 5.26600788 ], [ 26.71875, 4.9158328 ], [ 26.3671875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 5.26600788 ], [ 26.3671875, 5.61598582 ], [ 26.71875, 5.61598582 ], [ 26.71875, 5.26600788 ], [ 26.3671875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 5.61598582 ], [ 26.3671875, 5.96575367 ], [ 26.71875, 5.96575367 ], [ 26.71875, 5.61598582 ], [ 26.3671875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 5.96575367 ], [ 26.3671875, 6.31529854 ], [ 26.71875, 6.31529854 ], [ 26.71875, 5.96575367 ], [ 26.3671875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 6.31529854 ], [ 26.3671875, 6.66460756 ], [ 26.71875, 6.66460756 ], [ 26.71875, 6.31529854 ], [ 26.3671875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 6.66460756 ], [ 26.3671875, 7.01366793 ], [ 26.71875, 7.01366793 ], [ 26.71875, 6.66460756 ], [ 26.3671875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 7.01366793 ], [ 26.3671875, 7.36246687 ], [ 26.71875, 7.36246687 ], [ 26.71875, 7.01366793 ], [ 26.3671875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 7.36246687 ], [ 26.3671875, 7.71099166 ], [ 26.71875, 7.71099166 ], [ 26.71875, 7.36246687 ], [ 26.3671875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 7.71099166 ], [ 26.3671875, 8.05922963 ], [ 26.71875, 8.05922963 ], [ 26.71875, 7.71099166 ], [ 26.3671875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 8.05922963 ], [ 26.3671875, 8.40716816 ], [ 26.71875, 8.40716816 ], [ 26.71875, 8.05922963 ], [ 26.3671875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 8.40716816 ], [ 26.3671875, 8.7547947 ], [ 26.71875, 8.7547947 ], [ 26.71875, 8.40716816 ], [ 26.3671875, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 8.7547947 ], [ 26.3671875, 9.10209674 ], [ 26.71875, 9.10209674 ], [ 26.71875, 8.7547947 ], [ 26.3671875, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 9.10209674 ], [ 26.3671875, 9.44906183 ], [ 26.71875, 9.44906183 ], [ 26.71875, 9.10209674 ], [ 26.3671875, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.3671875, 9.44906183 ], [ 26.3671875, 9.79567758 ], [ 26.71875, 9.79567758 ], [ 26.71875, 9.44906183 ], [ 26.3671875, 9.44906183 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -0.35156029 ], [ 26.71875, 0 ], [ 27.0703125, 0 ], [ 27.0703125, -0.35156029 ], [ 26.71875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -0.70310735 ], [ 26.71875, -0.35156029 ], [ 27.0703125, -0.35156029 ], [ 27.0703125, -0.70310735 ], [ 26.71875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -1.05462794 ], [ 26.71875, -0.70310735 ], [ 27.0703125, -0.70310735 ], [ 27.0703125, -1.05462794 ], [ 26.71875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -1.40610884 ], [ 26.71875, -1.05462794 ], [ 27.0703125, -1.05462794 ], [ 27.0703125, -1.40610884 ], [ 26.71875, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -1.75753681 ], [ 26.71875, -1.40610884 ], [ 27.0703125, -1.40610884 ], [ 27.0703125, -1.75753681 ], [ 26.71875, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -2.10889866 ], [ 26.71875, -1.75753681 ], [ 27.0703125, -1.75753681 ], [ 27.0703125, -2.10889866 ], [ 26.71875, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -2.46018118 ], [ 26.71875, -2.10889866 ], [ 27.0703125, -2.10889866 ], [ 27.0703125, -2.46018118 ], [ 26.71875, -2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -2.81137119 ], [ 26.71875, -2.46018118 ], [ 27.0703125, -2.46018118 ], [ 27.0703125, -2.81137119 ], [ 26.71875, -2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -3.16245553 ], [ 26.71875, -2.81137119 ], [ 27.0703125, -2.81137119 ], [ 27.0703125, -3.16245553 ], [ 26.71875, -3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, -3.51342105 ], [ 26.71875, -3.16245553 ], [ 27.0703125, -3.16245553 ], [ 27.0703125, -3.51342105 ], [ 26.71875, -3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 0 ], [ 26.71875, 0.35156029 ], [ 27.0703125, 0.35156029 ], [ 27.0703125, 0 ], [ 26.71875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 0.35156029 ], [ 26.71875, 0.70310735 ], [ 27.0703125, 0.70310735 ], [ 27.0703125, 0.35156029 ], [ 26.71875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 0.70310735 ], [ 26.71875, 1.05462794 ], [ 27.0703125, 1.05462794 ], [ 27.0703125, 0.70310735 ], [ 26.71875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 1.05462794 ], [ 26.71875, 1.40610884 ], [ 27.0703125, 1.40610884 ], [ 27.0703125, 1.05462794 ], [ 26.71875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 1.40610884 ], [ 26.71875, 1.75753681 ], [ 27.0703125, 1.75753681 ], [ 27.0703125, 1.40610884 ], [ 26.71875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 1.75753681 ], [ 26.71875, 2.10889866 ], [ 27.0703125, 2.10889866 ], [ 27.0703125, 1.75753681 ], [ 26.71875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 2.10889866 ], [ 26.71875, 2.46018118 ], [ 27.0703125, 2.46018118 ], [ 27.0703125, 2.10889866 ], [ 26.71875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 2.46018118 ], [ 26.71875, 2.81137119 ], [ 27.0703125, 2.81137119 ], [ 27.0703125, 2.46018118 ], [ 26.71875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 2.81137119 ], [ 26.71875, 3.16245553 ], [ 27.0703125, 3.16245553 ], [ 27.0703125, 2.81137119 ], [ 26.71875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 3.16245553 ], [ 26.71875, 3.51342105 ], [ 27.0703125, 3.51342105 ], [ 27.0703125, 3.16245553 ], [ 26.71875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 3.51342105 ], [ 26.71875, 3.86425462 ], [ 27.0703125, 3.86425462 ], [ 27.0703125, 3.51342105 ], [ 26.71875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 3.86425462 ], [ 26.71875, 4.21494314 ], [ 27.0703125, 4.21494314 ], [ 27.0703125, 3.86425462 ], [ 26.71875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 4.21494314 ], [ 26.71875, 4.56547355 ], [ 27.0703125, 4.56547355 ], [ 27.0703125, 4.21494314 ], [ 26.71875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 4.56547355 ], [ 26.71875, 4.9158328 ], [ 27.0703125, 4.9158328 ], [ 27.0703125, 4.56547355 ], [ 26.71875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 4.9158328 ], [ 26.71875, 5.26600788 ], [ 27.0703125, 5.26600788 ], [ 27.0703125, 4.9158328 ], [ 26.71875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 5.26600788 ], [ 26.71875, 5.61598582 ], [ 27.0703125, 5.61598582 ], [ 27.0703125, 5.26600788 ], [ 26.71875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 5.61598582 ], [ 26.71875, 5.96575367 ], [ 27.0703125, 5.96575367 ], [ 27.0703125, 5.61598582 ], [ 26.71875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 5.96575367 ], [ 26.71875, 6.31529854 ], [ 27.0703125, 6.31529854 ], [ 27.0703125, 5.96575367 ], [ 26.71875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 6.31529854 ], [ 26.71875, 6.66460756 ], [ 27.0703125, 6.66460756 ], [ 27.0703125, 6.31529854 ], [ 26.71875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 6.66460756 ], [ 26.71875, 7.01366793 ], [ 27.0703125, 7.01366793 ], [ 27.0703125, 6.66460756 ], [ 26.71875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 7.01366793 ], [ 26.71875, 7.36246687 ], [ 27.0703125, 7.36246687 ], [ 27.0703125, 7.01366793 ], [ 26.71875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 7.36246687 ], [ 26.71875, 7.71099166 ], [ 27.0703125, 7.71099166 ], [ 27.0703125, 7.36246687 ], [ 26.71875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 7.71099166 ], [ 26.71875, 8.05922963 ], [ 27.0703125, 8.05922963 ], [ 27.0703125, 7.71099166 ], [ 26.71875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 8.05922963 ], [ 26.71875, 8.40716816 ], [ 27.0703125, 8.40716816 ], [ 27.0703125, 8.05922963 ], [ 26.71875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 8.40716816 ], [ 26.71875, 8.7547947 ], [ 27.0703125, 8.7547947 ], [ 27.0703125, 8.40716816 ], [ 26.71875, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 8.7547947 ], [ 26.71875, 9.10209674 ], [ 27.0703125, 9.10209674 ], [ 27.0703125, 8.7547947 ], [ 26.71875, 8.7547947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.71875, 9.10209674 ], [ 26.71875, 9.44906183 ], [ 27.0703125, 9.44906183 ], [ 27.0703125, 9.10209674 ], [ 26.71875, 9.10209674 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, -0.35156029 ], [ 27.0703125, 0 ], [ 27.421875, 0 ], [ 27.421875, -0.35156029 ], [ 27.0703125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, -0.70310735 ], [ 27.0703125, -0.35156029 ], [ 27.421875, -0.35156029 ], [ 27.421875, -0.70310735 ], [ 27.0703125, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, -1.05462794 ], [ 27.0703125, -0.70310735 ], [ 27.421875, -0.70310735 ], [ 27.421875, -1.05462794 ], [ 27.0703125, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, -1.40610884 ], [ 27.0703125, -1.05462794 ], [ 27.421875, -1.05462794 ], [ 27.421875, -1.40610884 ], [ 27.0703125, -1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, -1.75753681 ], [ 27.0703125, -1.40610884 ], [ 27.421875, -1.40610884 ], [ 27.421875, -1.75753681 ], [ 27.0703125, -1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, -2.10889866 ], [ 27.0703125, -1.75753681 ], [ 27.421875, -1.75753681 ], [ 27.421875, -2.10889866 ], [ 27.0703125, -2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 0 ], [ 27.0703125, 0.35156029 ], [ 27.421875, 0.35156029 ], [ 27.421875, 0 ], [ 27.0703125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 0.35156029 ], [ 27.0703125, 0.70310735 ], [ 27.421875, 0.70310735 ], [ 27.421875, 0.35156029 ], [ 27.0703125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 0.70310735 ], [ 27.0703125, 1.05462794 ], [ 27.421875, 1.05462794 ], [ 27.421875, 0.70310735 ], [ 27.0703125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 1.05462794 ], [ 27.0703125, 1.40610884 ], [ 27.421875, 1.40610884 ], [ 27.421875, 1.05462794 ], [ 27.0703125, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 1.40610884 ], [ 27.0703125, 1.75753681 ], [ 27.421875, 1.75753681 ], [ 27.421875, 1.40610884 ], [ 27.0703125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 1.75753681 ], [ 27.0703125, 2.10889866 ], [ 27.421875, 2.10889866 ], [ 27.421875, 1.75753681 ], [ 27.0703125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 2.10889866 ], [ 27.0703125, 2.46018118 ], [ 27.421875, 2.46018118 ], [ 27.421875, 2.10889866 ], [ 27.0703125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 2.46018118 ], [ 27.0703125, 2.81137119 ], [ 27.421875, 2.81137119 ], [ 27.421875, 2.46018118 ], [ 27.0703125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 2.81137119 ], [ 27.0703125, 3.16245553 ], [ 27.421875, 3.16245553 ], [ 27.421875, 2.81137119 ], [ 27.0703125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 3.16245553 ], [ 27.0703125, 3.51342105 ], [ 27.421875, 3.51342105 ], [ 27.421875, 3.16245553 ], [ 27.0703125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 3.51342105 ], [ 27.0703125, 3.86425462 ], [ 27.421875, 3.86425462 ], [ 27.421875, 3.51342105 ], [ 27.0703125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 3.86425462 ], [ 27.0703125, 4.21494314 ], [ 27.421875, 4.21494314 ], [ 27.421875, 3.86425462 ], [ 27.0703125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 4.21494314 ], [ 27.0703125, 4.56547355 ], [ 27.421875, 4.56547355 ], [ 27.421875, 4.21494314 ], [ 27.0703125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 4.56547355 ], [ 27.0703125, 4.9158328 ], [ 27.421875, 4.9158328 ], [ 27.421875, 4.56547355 ], [ 27.0703125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 4.9158328 ], [ 27.0703125, 5.26600788 ], [ 27.421875, 5.26600788 ], [ 27.421875, 4.9158328 ], [ 27.0703125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 5.26600788 ], [ 27.0703125, 5.61598582 ], [ 27.421875, 5.61598582 ], [ 27.421875, 5.26600788 ], [ 27.0703125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 5.61598582 ], [ 27.0703125, 5.96575367 ], [ 27.421875, 5.96575367 ], [ 27.421875, 5.61598582 ], [ 27.0703125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 5.96575367 ], [ 27.0703125, 6.31529854 ], [ 27.421875, 6.31529854 ], [ 27.421875, 5.96575367 ], [ 27.0703125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 6.31529854 ], [ 27.0703125, 6.66460756 ], [ 27.421875, 6.66460756 ], [ 27.421875, 6.31529854 ], [ 27.0703125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 6.66460756 ], [ 27.0703125, 7.01366793 ], [ 27.421875, 7.01366793 ], [ 27.421875, 6.66460756 ], [ 27.0703125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 7.01366793 ], [ 27.0703125, 7.36246687 ], [ 27.421875, 7.36246687 ], [ 27.421875, 7.01366793 ], [ 27.0703125, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 7.36246687 ], [ 27.0703125, 7.71099166 ], [ 27.421875, 7.71099166 ], [ 27.421875, 7.36246687 ], [ 27.0703125, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 7.71099166 ], [ 27.0703125, 8.05922963 ], [ 27.421875, 8.05922963 ], [ 27.421875, 7.71099166 ], [ 27.0703125, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 8.05922963 ], [ 27.0703125, 8.40716816 ], [ 27.421875, 8.40716816 ], [ 27.421875, 8.05922963 ], [ 27.0703125, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0703125, 8.40716816 ], [ 27.0703125, 8.7547947 ], [ 27.421875, 8.7547947 ], [ 27.421875, 8.40716816 ], [ 27.0703125, 8.40716816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, -0.35156029 ], [ 27.421875, 0 ], [ 27.7734375, 0 ], [ 27.7734375, -0.35156029 ], [ 27.421875, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, -0.70310735 ], [ 27.421875, -0.35156029 ], [ 27.7734375, -0.35156029 ], [ 27.7734375, -0.70310735 ], [ 27.421875, -0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, -1.05462794 ], [ 27.421875, -0.70310735 ], [ 27.7734375, -0.70310735 ], [ 27.7734375, -1.05462794 ], [ 27.421875, -1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 0 ], [ 27.421875, 0.35156029 ], [ 27.7734375, 0.35156029 ], [ 27.7734375, 0 ], [ 27.421875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 0.35156029 ], [ 27.421875, 0.70310735 ], [ 27.7734375, 0.70310735 ], [ 27.7734375, 0.35156029 ], [ 27.421875, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 0.70310735 ], [ 27.421875, 1.05462794 ], [ 27.7734375, 1.05462794 ], [ 27.7734375, 0.70310735 ], [ 27.421875, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 1.05462794 ], [ 27.421875, 1.40610884 ], [ 27.7734375, 1.40610884 ], [ 27.7734375, 1.05462794 ], [ 27.421875, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 1.40610884 ], [ 27.421875, 1.75753681 ], [ 27.7734375, 1.75753681 ], [ 27.7734375, 1.40610884 ], [ 27.421875, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 1.75753681 ], [ 27.421875, 2.10889866 ], [ 27.7734375, 2.10889866 ], [ 27.7734375, 1.75753681 ], [ 27.421875, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 2.10889866 ], [ 27.421875, 2.46018118 ], [ 27.7734375, 2.46018118 ], [ 27.7734375, 2.10889866 ], [ 27.421875, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 2.46018118 ], [ 27.421875, 2.81137119 ], [ 27.7734375, 2.81137119 ], [ 27.7734375, 2.46018118 ], [ 27.421875, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 2.81137119 ], [ 27.421875, 3.16245553 ], [ 27.7734375, 3.16245553 ], [ 27.7734375, 2.81137119 ], [ 27.421875, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 3.16245553 ], [ 27.421875, 3.51342105 ], [ 27.7734375, 3.51342105 ], [ 27.7734375, 3.16245553 ], [ 27.421875, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 3.51342105 ], [ 27.421875, 3.86425462 ], [ 27.7734375, 3.86425462 ], [ 27.7734375, 3.51342105 ], [ 27.421875, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 3.86425462 ], [ 27.421875, 4.21494314 ], [ 27.7734375, 4.21494314 ], [ 27.7734375, 3.86425462 ], [ 27.421875, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 4.21494314 ], [ 27.421875, 4.56547355 ], [ 27.7734375, 4.56547355 ], [ 27.7734375, 4.21494314 ], [ 27.421875, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 4.56547355 ], [ 27.421875, 4.9158328 ], [ 27.7734375, 4.9158328 ], [ 27.7734375, 4.56547355 ], [ 27.421875, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 4.9158328 ], [ 27.421875, 5.26600788 ], [ 27.7734375, 5.26600788 ], [ 27.7734375, 4.9158328 ], [ 27.421875, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 5.26600788 ], [ 27.421875, 5.61598582 ], [ 27.7734375, 5.61598582 ], [ 27.7734375, 5.26600788 ], [ 27.421875, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 5.61598582 ], [ 27.421875, 5.96575367 ], [ 27.7734375, 5.96575367 ], [ 27.7734375, 5.61598582 ], [ 27.421875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 5.96575367 ], [ 27.421875, 6.31529854 ], [ 27.7734375, 6.31529854 ], [ 27.7734375, 5.96575367 ], [ 27.421875, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 6.31529854 ], [ 27.421875, 6.66460756 ], [ 27.7734375, 6.66460756 ], [ 27.7734375, 6.31529854 ], [ 27.421875, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 6.66460756 ], [ 27.421875, 7.01366793 ], [ 27.7734375, 7.01366793 ], [ 27.7734375, 6.66460756 ], [ 27.421875, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 7.01366793 ], [ 27.421875, 7.36246687 ], [ 27.7734375, 7.36246687 ], [ 27.7734375, 7.01366793 ], [ 27.421875, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 7.36246687 ], [ 27.421875, 7.71099166 ], [ 27.7734375, 7.71099166 ], [ 27.7734375, 7.36246687 ], [ 27.421875, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 7.71099166 ], [ 27.421875, 8.05922963 ], [ 27.7734375, 8.05922963 ], [ 27.7734375, 7.71099166 ], [ 27.421875, 7.71099166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 8.05922963 ], [ 27.421875, 8.40716816 ], [ 27.7734375, 8.40716816 ], [ 27.7734375, 8.05922963 ], [ 27.421875, 8.05922963 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 0.35156029 ], [ 27.7734375, 0.70310735 ], [ 28.125, 0.70310735 ], [ 28.125, 0.35156029 ], [ 27.7734375, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 0.70310735 ], [ 27.7734375, 1.05462794 ], [ 28.125, 1.05462794 ], [ 28.125, 0.70310735 ], [ 27.7734375, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 1.05462794 ], [ 27.7734375, 1.40610884 ], [ 28.125, 1.40610884 ], [ 28.125, 1.05462794 ], [ 27.7734375, 1.05462794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 1.40610884 ], [ 27.7734375, 1.75753681 ], [ 28.125, 1.75753681 ], [ 28.125, 1.40610884 ], [ 27.7734375, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 1.75753681 ], [ 27.7734375, 2.10889866 ], [ 28.125, 2.10889866 ], [ 28.125, 1.75753681 ], [ 27.7734375, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 2.10889866 ], [ 27.7734375, 2.46018118 ], [ 28.125, 2.46018118 ], [ 28.125, 2.10889866 ], [ 27.7734375, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 2.46018118 ], [ 27.7734375, 2.81137119 ], [ 28.125, 2.81137119 ], [ 28.125, 2.46018118 ], [ 27.7734375, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 2.81137119 ], [ 27.7734375, 3.16245553 ], [ 28.125, 3.16245553 ], [ 28.125, 2.81137119 ], [ 27.7734375, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 3.16245553 ], [ 27.7734375, 3.51342105 ], [ 28.125, 3.51342105 ], [ 28.125, 3.16245553 ], [ 27.7734375, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 3.51342105 ], [ 27.7734375, 3.86425462 ], [ 28.125, 3.86425462 ], [ 28.125, 3.51342105 ], [ 27.7734375, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 3.86425462 ], [ 27.7734375, 4.21494314 ], [ 28.125, 4.21494314 ], [ 28.125, 3.86425462 ], [ 27.7734375, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 4.21494314 ], [ 27.7734375, 4.56547355 ], [ 28.125, 4.56547355 ], [ 28.125, 4.21494314 ], [ 27.7734375, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 4.56547355 ], [ 27.7734375, 4.9158328 ], [ 28.125, 4.9158328 ], [ 28.125, 4.56547355 ], [ 27.7734375, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 4.9158328 ], [ 27.7734375, 5.26600788 ], [ 28.125, 5.26600788 ], [ 28.125, 4.9158328 ], [ 27.7734375, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 5.26600788 ], [ 27.7734375, 5.61598582 ], [ 28.125, 5.61598582 ], [ 28.125, 5.26600788 ], [ 27.7734375, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 5.61598582 ], [ 27.7734375, 5.96575367 ], [ 28.125, 5.96575367 ], [ 28.125, 5.61598582 ], [ 27.7734375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 5.96575367 ], [ 27.7734375, 6.31529854 ], [ 28.125, 6.31529854 ], [ 28.125, 5.96575367 ], [ 27.7734375, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 6.31529854 ], [ 27.7734375, 6.66460756 ], [ 28.125, 6.66460756 ], [ 28.125, 6.31529854 ], [ 27.7734375, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 6.66460756 ], [ 27.7734375, 7.01366793 ], [ 28.125, 7.01366793 ], [ 28.125, 6.66460756 ], [ 27.7734375, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 7.01366793 ], [ 27.7734375, 7.36246687 ], [ 28.125, 7.36246687 ], [ 28.125, 7.01366793 ], [ 27.7734375, 7.01366793 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.7734375, 7.36246687 ], [ 27.7734375, 7.71099166 ], [ 28.125, 7.71099166 ], [ 28.125, 7.36246687 ], [ 27.7734375, 7.36246687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 1.40610884 ], [ 28.125, 1.75753681 ], [ 28.4765625, 1.75753681 ], [ 28.4765625, 1.40610884 ], [ 28.125, 1.40610884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 1.75753681 ], [ 28.125, 2.10889866 ], [ 28.4765625, 2.10889866 ], [ 28.4765625, 1.75753681 ], [ 28.125, 1.75753681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 2.10889866 ], [ 28.125, 2.46018118 ], [ 28.4765625, 2.46018118 ], [ 28.4765625, 2.10889866 ], [ 28.125, 2.10889866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 2.46018118 ], [ 28.125, 2.81137119 ], [ 28.4765625, 2.81137119 ], [ 28.4765625, 2.46018118 ], [ 28.125, 2.46018118 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 2.81137119 ], [ 28.125, 3.16245553 ], [ 28.4765625, 3.16245553 ], [ 28.4765625, 2.81137119 ], [ 28.125, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 3.16245553 ], [ 28.125, 3.51342105 ], [ 28.4765625, 3.51342105 ], [ 28.4765625, 3.16245553 ], [ 28.125, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 3.51342105 ], [ 28.125, 3.86425462 ], [ 28.4765625, 3.86425462 ], [ 28.4765625, 3.51342105 ], [ 28.125, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 3.86425462 ], [ 28.125, 4.21494314 ], [ 28.4765625, 4.21494314 ], [ 28.4765625, 3.86425462 ], [ 28.125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 4.21494314 ], [ 28.125, 4.56547355 ], [ 28.4765625, 4.56547355 ], [ 28.4765625, 4.21494314 ], [ 28.125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 4.56547355 ], [ 28.125, 4.9158328 ], [ 28.4765625, 4.9158328 ], [ 28.4765625, 4.56547355 ], [ 28.125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 4.9158328 ], [ 28.125, 5.26600788 ], [ 28.4765625, 5.26600788 ], [ 28.4765625, 4.9158328 ], [ 28.125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 5.26600788 ], [ 28.125, 5.61598582 ], [ 28.4765625, 5.61598582 ], [ 28.4765625, 5.26600788 ], [ 28.125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 5.61598582 ], [ 28.125, 5.96575367 ], [ 28.4765625, 5.96575367 ], [ 28.4765625, 5.61598582 ], [ 28.125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 5.96575367 ], [ 28.125, 6.31529854 ], [ 28.4765625, 6.31529854 ], [ 28.4765625, 5.96575367 ], [ 28.125, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 6.31529854 ], [ 28.125, 6.66460756 ], [ 28.4765625, 6.66460756 ], [ 28.4765625, 6.31529854 ], [ 28.125, 6.31529854 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 6.66460756 ], [ 28.125, 7.01366793 ], [ 28.4765625, 7.01366793 ], [ 28.4765625, 6.66460756 ], [ 28.125, 6.66460756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 2.81137119 ], [ 28.4765625, 3.16245553 ], [ 28.828125, 3.16245553 ], [ 28.828125, 2.81137119 ], [ 28.4765625, 2.81137119 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 3.16245553 ], [ 28.4765625, 3.51342105 ], [ 28.828125, 3.51342105 ], [ 28.828125, 3.16245553 ], [ 28.4765625, 3.16245553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 3.51342105 ], [ 28.4765625, 3.86425462 ], [ 28.828125, 3.86425462 ], [ 28.828125, 3.51342105 ], [ 28.4765625, 3.51342105 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 3.86425462 ], [ 28.4765625, 4.21494314 ], [ 28.828125, 4.21494314 ], [ 28.828125, 3.86425462 ], [ 28.4765625, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 4.21494314 ], [ 28.4765625, 4.56547355 ], [ 28.828125, 4.56547355 ], [ 28.828125, 4.21494314 ], [ 28.4765625, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 4.56547355 ], [ 28.4765625, 4.9158328 ], [ 28.828125, 4.9158328 ], [ 28.828125, 4.56547355 ], [ 28.4765625, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 4.9158328 ], [ 28.4765625, 5.26600788 ], [ 28.828125, 5.26600788 ], [ 28.828125, 4.9158328 ], [ 28.4765625, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 5.26600788 ], [ 28.4765625, 5.61598582 ], [ 28.828125, 5.61598582 ], [ 28.828125, 5.26600788 ], [ 28.4765625, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 5.61598582 ], [ 28.4765625, 5.96575367 ], [ 28.828125, 5.96575367 ], [ 28.828125, 5.61598582 ], [ 28.4765625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4765625, 5.96575367 ], [ 28.4765625, 6.31529854 ], [ 28.828125, 6.31529854 ], [ 28.828125, 5.96575367 ], [ 28.4765625, 5.96575367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 3.86425462 ], [ 28.828125, 4.21494314 ], [ 29.1796875, 4.21494314 ], [ 29.1796875, 3.86425462 ], [ 28.828125, 3.86425462 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 4.21494314 ], [ 28.828125, 4.56547355 ], [ 29.1796875, 4.56547355 ], [ 29.1796875, 4.21494314 ], [ 28.828125, 4.21494314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 4.56547355 ], [ 28.828125, 4.9158328 ], [ 29.1796875, 4.9158328 ], [ 29.1796875, 4.56547355 ], [ 28.828125, 4.56547355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 4.9158328 ], [ 28.828125, 5.26600788 ], [ 29.1796875, 5.26600788 ], [ 29.1796875, 4.9158328 ], [ 28.828125, 4.9158328 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 5.26600788 ], [ 28.828125, 5.61598582 ], [ 29.1796875, 5.61598582 ], [ 29.1796875, 5.26600788 ], [ 28.828125, 5.26600788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.61132813, 8.667918 ], [ 13.44726562, 3.38182374 ], [ 15.33691406, -6.09685982 ], [ 16.74316406, 1.05462794 ], [ 18.19335938, -10.31491929 ], [ 19.24804688, -1.40610884 ], [ 20.69824219, -4.56547355 ], [ 22.58789063, 0.35156029 ], [ 24.21386719, -11.73830237 ], [ 29.09179688, 5.00339435 ], [ 26.49902344, 9.75237014 ], [ 26.05957031, 7.62388685 ], [ 24.91699219, 9.44906183 ], [ 22.58789063, 6.75189646 ], [ 21.66503906, 12.5974545 ], [ 20.96191406, 8.18974234 ], [ 18.19335938, 14.3069695 ], [ 16.61132813, 8.667918 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/tetris.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ 16.8310546875, 13.025965926333539 ], [ 16.8310546875, 15.876809064146757 ], [ 20.10498046875, 15.876809064146757 ], [ 20.10498046875, 18.437924653474393 ], [ 24.27978515625, 18.437924653474393 ], [ 24.3017578125, 15.876809064146757 ], [ 21.9287109375, 15.876809064146757 ], [ 21.9287109375, 13.025965926333539 ], [ 16.8310546875, 13.025965926333539 ] ] ] } ================================================ FILE: test/fixtures/tetris_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 12.89748918 ], [ 16.5234375, 13.2399455 ], [ 16.875, 13.2399455 ], [ 16.875, 12.89748918 ], [ 16.5234375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 13.2399455 ], [ 16.5234375, 13.5819209 ], [ 16.875, 13.5819209 ], [ 16.875, 13.2399455 ], [ 16.5234375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 13.5819209 ], [ 16.5234375, 13.9234039 ], [ 16.875, 13.9234039 ], [ 16.875, 13.5819209 ], [ 16.5234375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 13.9234039 ], [ 16.5234375, 14.26438309 ], [ 16.875, 14.26438309 ], [ 16.875, 13.9234039 ], [ 16.5234375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 14.26438309 ], [ 16.5234375, 14.60484716 ], [ 16.875, 14.60484716 ], [ 16.875, 14.26438309 ], [ 16.5234375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 14.60484716 ], [ 16.5234375, 14.94478488 ], [ 16.875, 14.94478488 ], [ 16.875, 14.60484716 ], [ 16.5234375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 14.94478488 ], [ 16.5234375, 15.28418511 ], [ 16.875, 15.28418511 ], [ 16.875, 14.94478488 ], [ 16.5234375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 15.28418511 ], [ 16.5234375, 15.62303683 ], [ 16.875, 15.62303683 ], [ 16.875, 15.28418511 ], [ 16.5234375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5234375, 15.62303683 ], [ 16.5234375, 15.96132908 ], [ 16.875, 15.96132908 ], [ 16.875, 15.62303683 ], [ 16.5234375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 12.89748918 ], [ 16.875, 13.2399455 ], [ 17.2265625, 13.2399455 ], [ 17.2265625, 12.89748918 ], [ 16.875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 13.2399455 ], [ 16.875, 13.5819209 ], [ 17.2265625, 13.5819209 ], [ 17.2265625, 13.2399455 ], [ 16.875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 13.5819209 ], [ 16.875, 13.9234039 ], [ 17.2265625, 13.9234039 ], [ 17.2265625, 13.5819209 ], [ 16.875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 13.9234039 ], [ 16.875, 14.26438309 ], [ 17.2265625, 14.26438309 ], [ 17.2265625, 13.9234039 ], [ 16.875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 14.26438309 ], [ 16.875, 14.60484716 ], [ 17.2265625, 14.60484716 ], [ 17.2265625, 14.26438309 ], [ 16.875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 14.60484716 ], [ 16.875, 14.94478488 ], [ 17.2265625, 14.94478488 ], [ 17.2265625, 14.60484716 ], [ 16.875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 14.94478488 ], [ 16.875, 15.28418511 ], [ 17.2265625, 15.28418511 ], [ 17.2265625, 14.94478488 ], [ 16.875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 15.28418511 ], [ 16.875, 15.62303683 ], [ 17.2265625, 15.62303683 ], [ 17.2265625, 15.28418511 ], [ 16.875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 15.62303683 ], [ 16.875, 15.96132908 ], [ 17.2265625, 15.96132908 ], [ 17.2265625, 15.62303683 ], [ 16.875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 12.89748918 ], [ 17.2265625, 13.2399455 ], [ 17.578125, 13.2399455 ], [ 17.578125, 12.89748918 ], [ 17.2265625, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 13.2399455 ], [ 17.2265625, 13.5819209 ], [ 17.578125, 13.5819209 ], [ 17.578125, 13.2399455 ], [ 17.2265625, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 13.5819209 ], [ 17.2265625, 13.9234039 ], [ 17.578125, 13.9234039 ], [ 17.578125, 13.5819209 ], [ 17.2265625, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 13.9234039 ], [ 17.2265625, 14.26438309 ], [ 17.578125, 14.26438309 ], [ 17.578125, 13.9234039 ], [ 17.2265625, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 14.26438309 ], [ 17.2265625, 14.60484716 ], [ 17.578125, 14.60484716 ], [ 17.578125, 14.26438309 ], [ 17.2265625, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 14.60484716 ], [ 17.2265625, 14.94478488 ], [ 17.578125, 14.94478488 ], [ 17.578125, 14.60484716 ], [ 17.2265625, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 14.94478488 ], [ 17.2265625, 15.28418511 ], [ 17.578125, 15.28418511 ], [ 17.578125, 14.94478488 ], [ 17.2265625, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 15.28418511 ], [ 17.2265625, 15.62303683 ], [ 17.578125, 15.62303683 ], [ 17.578125, 15.28418511 ], [ 17.2265625, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.2265625, 15.62303683 ], [ 17.2265625, 15.96132908 ], [ 17.578125, 15.96132908 ], [ 17.578125, 15.62303683 ], [ 17.2265625, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 12.89748918 ], [ 17.578125, 13.2399455 ], [ 17.9296875, 13.2399455 ], [ 17.9296875, 12.89748918 ], [ 17.578125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 13.2399455 ], [ 17.578125, 13.5819209 ], [ 17.9296875, 13.5819209 ], [ 17.9296875, 13.2399455 ], [ 17.578125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 13.5819209 ], [ 17.578125, 13.9234039 ], [ 17.9296875, 13.9234039 ], [ 17.9296875, 13.5819209 ], [ 17.578125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 13.9234039 ], [ 17.578125, 14.26438309 ], [ 17.9296875, 14.26438309 ], [ 17.9296875, 13.9234039 ], [ 17.578125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 14.26438309 ], [ 17.578125, 14.60484716 ], [ 17.9296875, 14.60484716 ], [ 17.9296875, 14.26438309 ], [ 17.578125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 14.60484716 ], [ 17.578125, 14.94478488 ], [ 17.9296875, 14.94478488 ], [ 17.9296875, 14.60484716 ], [ 17.578125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 14.94478488 ], [ 17.578125, 15.28418511 ], [ 17.9296875, 15.28418511 ], [ 17.9296875, 14.94478488 ], [ 17.578125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 15.28418511 ], [ 17.578125, 15.62303683 ], [ 17.9296875, 15.62303683 ], [ 17.9296875, 15.28418511 ], [ 17.578125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 15.62303683 ], [ 17.578125, 15.96132908 ], [ 17.9296875, 15.96132908 ], [ 17.9296875, 15.62303683 ], [ 17.578125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 12.89748918 ], [ 17.9296875, 13.2399455 ], [ 18.28125, 13.2399455 ], [ 18.28125, 12.89748918 ], [ 17.9296875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 13.2399455 ], [ 17.9296875, 13.5819209 ], [ 18.28125, 13.5819209 ], [ 18.28125, 13.2399455 ], [ 17.9296875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 13.5819209 ], [ 17.9296875, 13.9234039 ], [ 18.28125, 13.9234039 ], [ 18.28125, 13.5819209 ], [ 17.9296875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 13.9234039 ], [ 17.9296875, 14.26438309 ], [ 18.28125, 14.26438309 ], [ 18.28125, 13.9234039 ], [ 17.9296875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 14.26438309 ], [ 17.9296875, 14.60484716 ], [ 18.28125, 14.60484716 ], [ 18.28125, 14.26438309 ], [ 17.9296875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 14.60484716 ], [ 17.9296875, 14.94478488 ], [ 18.28125, 14.94478488 ], [ 18.28125, 14.60484716 ], [ 17.9296875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 14.94478488 ], [ 17.9296875, 15.28418511 ], [ 18.28125, 15.28418511 ], [ 18.28125, 14.94478488 ], [ 17.9296875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 15.28418511 ], [ 17.9296875, 15.62303683 ], [ 18.28125, 15.62303683 ], [ 18.28125, 15.28418511 ], [ 17.9296875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.9296875, 15.62303683 ], [ 17.9296875, 15.96132908 ], [ 18.28125, 15.96132908 ], [ 18.28125, 15.62303683 ], [ 17.9296875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 12.89748918 ], [ 18.28125, 13.2399455 ], [ 18.6328125, 13.2399455 ], [ 18.6328125, 12.89748918 ], [ 18.28125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 13.2399455 ], [ 18.28125, 13.5819209 ], [ 18.6328125, 13.5819209 ], [ 18.6328125, 13.2399455 ], [ 18.28125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 13.5819209 ], [ 18.28125, 13.9234039 ], [ 18.6328125, 13.9234039 ], [ 18.6328125, 13.5819209 ], [ 18.28125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 13.9234039 ], [ 18.28125, 14.26438309 ], [ 18.6328125, 14.26438309 ], [ 18.6328125, 13.9234039 ], [ 18.28125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 14.26438309 ], [ 18.28125, 14.60484716 ], [ 18.6328125, 14.60484716 ], [ 18.6328125, 14.26438309 ], [ 18.28125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 14.60484716 ], [ 18.28125, 14.94478488 ], [ 18.6328125, 14.94478488 ], [ 18.6328125, 14.60484716 ], [ 18.28125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 14.94478488 ], [ 18.28125, 15.28418511 ], [ 18.6328125, 15.28418511 ], [ 18.6328125, 14.94478488 ], [ 18.28125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 15.28418511 ], [ 18.28125, 15.62303683 ], [ 18.6328125, 15.62303683 ], [ 18.6328125, 15.28418511 ], [ 18.28125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.28125, 15.62303683 ], [ 18.28125, 15.96132908 ], [ 18.6328125, 15.96132908 ], [ 18.6328125, 15.62303683 ], [ 18.28125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 12.89748918 ], [ 18.6328125, 13.2399455 ], [ 18.984375, 13.2399455 ], [ 18.984375, 12.89748918 ], [ 18.6328125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 13.2399455 ], [ 18.6328125, 13.5819209 ], [ 18.984375, 13.5819209 ], [ 18.984375, 13.2399455 ], [ 18.6328125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 13.5819209 ], [ 18.6328125, 13.9234039 ], [ 18.984375, 13.9234039 ], [ 18.984375, 13.5819209 ], [ 18.6328125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 13.9234039 ], [ 18.6328125, 14.26438309 ], [ 18.984375, 14.26438309 ], [ 18.984375, 13.9234039 ], [ 18.6328125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 14.26438309 ], [ 18.6328125, 14.60484716 ], [ 18.984375, 14.60484716 ], [ 18.984375, 14.26438309 ], [ 18.6328125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 14.60484716 ], [ 18.6328125, 14.94478488 ], [ 18.984375, 14.94478488 ], [ 18.984375, 14.60484716 ], [ 18.6328125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 14.94478488 ], [ 18.6328125, 15.28418511 ], [ 18.984375, 15.28418511 ], [ 18.984375, 14.94478488 ], [ 18.6328125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 15.28418511 ], [ 18.6328125, 15.62303683 ], [ 18.984375, 15.62303683 ], [ 18.984375, 15.28418511 ], [ 18.6328125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.6328125, 15.62303683 ], [ 18.6328125, 15.96132908 ], [ 18.984375, 15.96132908 ], [ 18.984375, 15.62303683 ], [ 18.6328125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 12.89748918 ], [ 18.984375, 13.2399455 ], [ 19.3359375, 13.2399455 ], [ 19.3359375, 12.89748918 ], [ 18.984375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 13.2399455 ], [ 18.984375, 13.5819209 ], [ 19.3359375, 13.5819209 ], [ 19.3359375, 13.2399455 ], [ 18.984375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 13.5819209 ], [ 18.984375, 13.9234039 ], [ 19.3359375, 13.9234039 ], [ 19.3359375, 13.5819209 ], [ 18.984375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 13.9234039 ], [ 18.984375, 14.26438309 ], [ 19.3359375, 14.26438309 ], [ 19.3359375, 13.9234039 ], [ 18.984375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 14.26438309 ], [ 18.984375, 14.60484716 ], [ 19.3359375, 14.60484716 ], [ 19.3359375, 14.26438309 ], [ 18.984375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 14.60484716 ], [ 18.984375, 14.94478488 ], [ 19.3359375, 14.94478488 ], [ 19.3359375, 14.60484716 ], [ 18.984375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 14.94478488 ], [ 18.984375, 15.28418511 ], [ 19.3359375, 15.28418511 ], [ 19.3359375, 14.94478488 ], [ 18.984375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 15.28418511 ], [ 18.984375, 15.62303683 ], [ 19.3359375, 15.62303683 ], [ 19.3359375, 15.28418511 ], [ 18.984375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 15.62303683 ], [ 18.984375, 15.96132908 ], [ 19.3359375, 15.96132908 ], [ 19.3359375, 15.62303683 ], [ 18.984375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 12.89748918 ], [ 19.3359375, 13.2399455 ], [ 19.6875, 13.2399455 ], [ 19.6875, 12.89748918 ], [ 19.3359375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 13.2399455 ], [ 19.3359375, 13.5819209 ], [ 19.6875, 13.5819209 ], [ 19.6875, 13.2399455 ], [ 19.3359375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 13.5819209 ], [ 19.3359375, 13.9234039 ], [ 19.6875, 13.9234039 ], [ 19.6875, 13.5819209 ], [ 19.3359375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 13.9234039 ], [ 19.3359375, 14.26438309 ], [ 19.6875, 14.26438309 ], [ 19.6875, 13.9234039 ], [ 19.3359375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 14.26438309 ], [ 19.3359375, 14.60484716 ], [ 19.6875, 14.60484716 ], [ 19.6875, 14.26438309 ], [ 19.3359375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 14.60484716 ], [ 19.3359375, 14.94478488 ], [ 19.6875, 14.94478488 ], [ 19.6875, 14.60484716 ], [ 19.3359375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 14.94478488 ], [ 19.3359375, 15.28418511 ], [ 19.6875, 15.28418511 ], [ 19.6875, 14.94478488 ], [ 19.3359375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 15.28418511 ], [ 19.3359375, 15.62303683 ], [ 19.6875, 15.62303683 ], [ 19.6875, 15.28418511 ], [ 19.3359375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.3359375, 15.62303683 ], [ 19.3359375, 15.96132908 ], [ 19.6875, 15.96132908 ], [ 19.6875, 15.62303683 ], [ 19.3359375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 12.89748918 ], [ 19.6875, 13.2399455 ], [ 20.0390625, 13.2399455 ], [ 20.0390625, 12.89748918 ], [ 19.6875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 13.2399455 ], [ 19.6875, 13.5819209 ], [ 20.0390625, 13.5819209 ], [ 20.0390625, 13.2399455 ], [ 19.6875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 13.5819209 ], [ 19.6875, 13.9234039 ], [ 20.0390625, 13.9234039 ], [ 20.0390625, 13.5819209 ], [ 19.6875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 13.9234039 ], [ 19.6875, 14.26438309 ], [ 20.0390625, 14.26438309 ], [ 20.0390625, 13.9234039 ], [ 19.6875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 14.26438309 ], [ 19.6875, 14.60484716 ], [ 20.0390625, 14.60484716 ], [ 20.0390625, 14.26438309 ], [ 19.6875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 14.60484716 ], [ 19.6875, 14.94478488 ], [ 20.0390625, 14.94478488 ], [ 20.0390625, 14.60484716 ], [ 19.6875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 14.94478488 ], [ 19.6875, 15.28418511 ], [ 20.0390625, 15.28418511 ], [ 20.0390625, 14.94478488 ], [ 19.6875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 15.28418511 ], [ 19.6875, 15.62303683 ], [ 20.0390625, 15.62303683 ], [ 20.0390625, 15.28418511 ], [ 19.6875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6875, 15.62303683 ], [ 19.6875, 15.96132908 ], [ 20.0390625, 15.96132908 ], [ 20.0390625, 15.62303683 ], [ 19.6875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 12.89748918 ], [ 20.0390625, 13.2399455 ], [ 20.390625, 13.2399455 ], [ 20.390625, 12.89748918 ], [ 20.0390625, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 13.2399455 ], [ 20.0390625, 13.5819209 ], [ 20.390625, 13.5819209 ], [ 20.390625, 13.2399455 ], [ 20.0390625, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 13.5819209 ], [ 20.0390625, 13.9234039 ], [ 20.390625, 13.9234039 ], [ 20.390625, 13.5819209 ], [ 20.0390625, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 13.9234039 ], [ 20.0390625, 14.26438309 ], [ 20.390625, 14.26438309 ], [ 20.390625, 13.9234039 ], [ 20.0390625, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 14.26438309 ], [ 20.0390625, 14.60484716 ], [ 20.390625, 14.60484716 ], [ 20.390625, 14.26438309 ], [ 20.0390625, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 14.60484716 ], [ 20.0390625, 14.94478488 ], [ 20.390625, 14.94478488 ], [ 20.390625, 14.60484716 ], [ 20.0390625, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 14.94478488 ], [ 20.0390625, 15.28418511 ], [ 20.390625, 15.28418511 ], [ 20.390625, 14.94478488 ], [ 20.0390625, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 15.28418511 ], [ 20.0390625, 15.62303683 ], [ 20.390625, 15.62303683 ], [ 20.390625, 15.28418511 ], [ 20.0390625, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 15.62303683 ], [ 20.0390625, 15.96132908 ], [ 20.390625, 15.96132908 ], [ 20.390625, 15.62303683 ], [ 20.0390625, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 15.96132908 ], [ 20.0390625, 16.29905101 ], [ 20.390625, 16.29905101 ], [ 20.390625, 15.96132908 ], [ 20.0390625, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 16.29905101 ], [ 20.0390625, 16.63619188 ], [ 20.390625, 16.63619188 ], [ 20.390625, 16.29905101 ], [ 20.0390625, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 16.63619188 ], [ 20.0390625, 16.97274102 ], [ 20.390625, 16.97274102 ], [ 20.390625, 16.63619188 ], [ 20.0390625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 16.97274102 ], [ 20.0390625, 17.30868789 ], [ 20.390625, 17.30868789 ], [ 20.390625, 16.97274102 ], [ 20.0390625, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 17.30868789 ], [ 20.0390625, 17.64402203 ], [ 20.390625, 17.64402203 ], [ 20.390625, 17.30868789 ], [ 20.0390625, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 17.64402203 ], [ 20.0390625, 17.9787331 ], [ 20.390625, 17.9787331 ], [ 20.390625, 17.64402203 ], [ 20.0390625, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 17.9787331 ], [ 20.0390625, 18.31281085 ], [ 20.390625, 18.31281085 ], [ 20.390625, 17.9787331 ], [ 20.0390625, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0390625, 18.31281085 ], [ 20.0390625, 18.64624514 ], [ 20.390625, 18.64624514 ], [ 20.390625, 18.31281085 ], [ 20.0390625, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 12.89748918 ], [ 20.390625, 13.2399455 ], [ 20.7421875, 13.2399455 ], [ 20.7421875, 12.89748918 ], [ 20.390625, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 13.2399455 ], [ 20.390625, 13.5819209 ], [ 20.7421875, 13.5819209 ], [ 20.7421875, 13.2399455 ], [ 20.390625, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 13.5819209 ], [ 20.390625, 13.9234039 ], [ 20.7421875, 13.9234039 ], [ 20.7421875, 13.5819209 ], [ 20.390625, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 13.9234039 ], [ 20.390625, 14.26438309 ], [ 20.7421875, 14.26438309 ], [ 20.7421875, 13.9234039 ], [ 20.390625, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 14.26438309 ], [ 20.390625, 14.60484716 ], [ 20.7421875, 14.60484716 ], [ 20.7421875, 14.26438309 ], [ 20.390625, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 14.60484716 ], [ 20.390625, 14.94478488 ], [ 20.7421875, 14.94478488 ], [ 20.7421875, 14.60484716 ], [ 20.390625, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 14.94478488 ], [ 20.390625, 15.28418511 ], [ 20.7421875, 15.28418511 ], [ 20.7421875, 14.94478488 ], [ 20.390625, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 15.28418511 ], [ 20.390625, 15.62303683 ], [ 20.7421875, 15.62303683 ], [ 20.7421875, 15.28418511 ], [ 20.390625, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 15.62303683 ], [ 20.390625, 15.96132908 ], [ 20.7421875, 15.96132908 ], [ 20.7421875, 15.62303683 ], [ 20.390625, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 15.96132908 ], [ 20.390625, 16.29905101 ], [ 20.7421875, 16.29905101 ], [ 20.7421875, 15.96132908 ], [ 20.390625, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 16.29905101 ], [ 20.390625, 16.63619188 ], [ 20.7421875, 16.63619188 ], [ 20.7421875, 16.29905101 ], [ 20.390625, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 16.63619188 ], [ 20.390625, 16.97274102 ], [ 20.7421875, 16.97274102 ], [ 20.7421875, 16.63619188 ], [ 20.390625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 16.97274102 ], [ 20.390625, 17.30868789 ], [ 20.7421875, 17.30868789 ], [ 20.7421875, 16.97274102 ], [ 20.390625, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 17.30868789 ], [ 20.390625, 17.64402203 ], [ 20.7421875, 17.64402203 ], [ 20.7421875, 17.30868789 ], [ 20.390625, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 17.64402203 ], [ 20.390625, 17.9787331 ], [ 20.7421875, 17.9787331 ], [ 20.7421875, 17.64402203 ], [ 20.390625, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 17.9787331 ], [ 20.390625, 18.31281085 ], [ 20.7421875, 18.31281085 ], [ 20.7421875, 17.9787331 ], [ 20.390625, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 18.31281085 ], [ 20.390625, 18.64624514 ], [ 20.7421875, 18.64624514 ], [ 20.7421875, 18.31281085 ], [ 20.390625, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 12.89748918 ], [ 20.7421875, 13.2399455 ], [ 21.09375, 13.2399455 ], [ 21.09375, 12.89748918 ], [ 20.7421875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 13.2399455 ], [ 20.7421875, 13.5819209 ], [ 21.09375, 13.5819209 ], [ 21.09375, 13.2399455 ], [ 20.7421875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 13.5819209 ], [ 20.7421875, 13.9234039 ], [ 21.09375, 13.9234039 ], [ 21.09375, 13.5819209 ], [ 20.7421875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 13.9234039 ], [ 20.7421875, 14.26438309 ], [ 21.09375, 14.26438309 ], [ 21.09375, 13.9234039 ], [ 20.7421875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 14.26438309 ], [ 20.7421875, 14.60484716 ], [ 21.09375, 14.60484716 ], [ 21.09375, 14.26438309 ], [ 20.7421875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 14.60484716 ], [ 20.7421875, 14.94478488 ], [ 21.09375, 14.94478488 ], [ 21.09375, 14.60484716 ], [ 20.7421875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 14.94478488 ], [ 20.7421875, 15.28418511 ], [ 21.09375, 15.28418511 ], [ 21.09375, 14.94478488 ], [ 20.7421875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 15.28418511 ], [ 20.7421875, 15.62303683 ], [ 21.09375, 15.62303683 ], [ 21.09375, 15.28418511 ], [ 20.7421875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 15.62303683 ], [ 20.7421875, 15.96132908 ], [ 21.09375, 15.96132908 ], [ 21.09375, 15.62303683 ], [ 20.7421875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 15.96132908 ], [ 20.7421875, 16.29905101 ], [ 21.09375, 16.29905101 ], [ 21.09375, 15.96132908 ], [ 20.7421875, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 16.29905101 ], [ 20.7421875, 16.63619188 ], [ 21.09375, 16.63619188 ], [ 21.09375, 16.29905101 ], [ 20.7421875, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 16.63619188 ], [ 20.7421875, 16.97274102 ], [ 21.09375, 16.97274102 ], [ 21.09375, 16.63619188 ], [ 20.7421875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 16.97274102 ], [ 20.7421875, 17.30868789 ], [ 21.09375, 17.30868789 ], [ 21.09375, 16.97274102 ], [ 20.7421875, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 17.30868789 ], [ 20.7421875, 17.64402203 ], [ 21.09375, 17.64402203 ], [ 21.09375, 17.30868789 ], [ 20.7421875, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 17.64402203 ], [ 20.7421875, 17.9787331 ], [ 21.09375, 17.9787331 ], [ 21.09375, 17.64402203 ], [ 20.7421875, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 17.9787331 ], [ 20.7421875, 18.31281085 ], [ 21.09375, 18.31281085 ], [ 21.09375, 17.9787331 ], [ 20.7421875, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.7421875, 18.31281085 ], [ 20.7421875, 18.64624514 ], [ 21.09375, 18.64624514 ], [ 21.09375, 18.31281085 ], [ 20.7421875, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 12.89748918 ], [ 21.09375, 13.2399455 ], [ 21.4453125, 13.2399455 ], [ 21.4453125, 12.89748918 ], [ 21.09375, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 13.2399455 ], [ 21.09375, 13.5819209 ], [ 21.4453125, 13.5819209 ], [ 21.4453125, 13.2399455 ], [ 21.09375, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 13.5819209 ], [ 21.09375, 13.9234039 ], [ 21.4453125, 13.9234039 ], [ 21.4453125, 13.5819209 ], [ 21.09375, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 13.9234039 ], [ 21.09375, 14.26438309 ], [ 21.4453125, 14.26438309 ], [ 21.4453125, 13.9234039 ], [ 21.09375, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 14.26438309 ], [ 21.09375, 14.60484716 ], [ 21.4453125, 14.60484716 ], [ 21.4453125, 14.26438309 ], [ 21.09375, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 14.60484716 ], [ 21.09375, 14.94478488 ], [ 21.4453125, 14.94478488 ], [ 21.4453125, 14.60484716 ], [ 21.09375, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 14.94478488 ], [ 21.09375, 15.28418511 ], [ 21.4453125, 15.28418511 ], [ 21.4453125, 14.94478488 ], [ 21.09375, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 15.28418511 ], [ 21.09375, 15.62303683 ], [ 21.4453125, 15.62303683 ], [ 21.4453125, 15.28418511 ], [ 21.09375, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 15.62303683 ], [ 21.09375, 15.96132908 ], [ 21.4453125, 15.96132908 ], [ 21.4453125, 15.62303683 ], [ 21.09375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 15.96132908 ], [ 21.09375, 16.29905101 ], [ 21.4453125, 16.29905101 ], [ 21.4453125, 15.96132908 ], [ 21.09375, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 16.29905101 ], [ 21.09375, 16.63619188 ], [ 21.4453125, 16.63619188 ], [ 21.4453125, 16.29905101 ], [ 21.09375, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 16.63619188 ], [ 21.09375, 16.97274102 ], [ 21.4453125, 16.97274102 ], [ 21.4453125, 16.63619188 ], [ 21.09375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 16.97274102 ], [ 21.09375, 17.30868789 ], [ 21.4453125, 17.30868789 ], [ 21.4453125, 16.97274102 ], [ 21.09375, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 17.30868789 ], [ 21.09375, 17.64402203 ], [ 21.4453125, 17.64402203 ], [ 21.4453125, 17.30868789 ], [ 21.09375, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 17.64402203 ], [ 21.09375, 17.9787331 ], [ 21.4453125, 17.9787331 ], [ 21.4453125, 17.64402203 ], [ 21.09375, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 17.9787331 ], [ 21.09375, 18.31281085 ], [ 21.4453125, 18.31281085 ], [ 21.4453125, 17.9787331 ], [ 21.09375, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.09375, 18.31281085 ], [ 21.09375, 18.64624514 ], [ 21.4453125, 18.64624514 ], [ 21.4453125, 18.31281085 ], [ 21.09375, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 12.89748918 ], [ 21.4453125, 13.2399455 ], [ 21.796875, 13.2399455 ], [ 21.796875, 12.89748918 ], [ 21.4453125, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 13.2399455 ], [ 21.4453125, 13.5819209 ], [ 21.796875, 13.5819209 ], [ 21.796875, 13.2399455 ], [ 21.4453125, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 13.5819209 ], [ 21.4453125, 13.9234039 ], [ 21.796875, 13.9234039 ], [ 21.796875, 13.5819209 ], [ 21.4453125, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 13.9234039 ], [ 21.4453125, 14.26438309 ], [ 21.796875, 14.26438309 ], [ 21.796875, 13.9234039 ], [ 21.4453125, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 14.26438309 ], [ 21.4453125, 14.60484716 ], [ 21.796875, 14.60484716 ], [ 21.796875, 14.26438309 ], [ 21.4453125, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 14.60484716 ], [ 21.4453125, 14.94478488 ], [ 21.796875, 14.94478488 ], [ 21.796875, 14.60484716 ], [ 21.4453125, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 14.94478488 ], [ 21.4453125, 15.28418511 ], [ 21.796875, 15.28418511 ], [ 21.796875, 14.94478488 ], [ 21.4453125, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 15.28418511 ], [ 21.4453125, 15.62303683 ], [ 21.796875, 15.62303683 ], [ 21.796875, 15.28418511 ], [ 21.4453125, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 15.62303683 ], [ 21.4453125, 15.96132908 ], [ 21.796875, 15.96132908 ], [ 21.796875, 15.62303683 ], [ 21.4453125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 15.96132908 ], [ 21.4453125, 16.29905101 ], [ 21.796875, 16.29905101 ], [ 21.796875, 15.96132908 ], [ 21.4453125, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 16.29905101 ], [ 21.4453125, 16.63619188 ], [ 21.796875, 16.63619188 ], [ 21.796875, 16.29905101 ], [ 21.4453125, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 16.63619188 ], [ 21.4453125, 16.97274102 ], [ 21.796875, 16.97274102 ], [ 21.796875, 16.63619188 ], [ 21.4453125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 16.97274102 ], [ 21.4453125, 17.30868789 ], [ 21.796875, 17.30868789 ], [ 21.796875, 16.97274102 ], [ 21.4453125, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 17.30868789 ], [ 21.4453125, 17.64402203 ], [ 21.796875, 17.64402203 ], [ 21.796875, 17.30868789 ], [ 21.4453125, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 17.64402203 ], [ 21.4453125, 17.9787331 ], [ 21.796875, 17.9787331 ], [ 21.796875, 17.64402203 ], [ 21.4453125, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 17.9787331 ], [ 21.4453125, 18.31281085 ], [ 21.796875, 18.31281085 ], [ 21.796875, 17.9787331 ], [ 21.4453125, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.4453125, 18.31281085 ], [ 21.4453125, 18.64624514 ], [ 21.796875, 18.64624514 ], [ 21.796875, 18.31281085 ], [ 21.4453125, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 12.89748918 ], [ 21.796875, 13.2399455 ], [ 22.1484375, 13.2399455 ], [ 22.1484375, 12.89748918 ], [ 21.796875, 12.89748918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 13.2399455 ], [ 21.796875, 13.5819209 ], [ 22.1484375, 13.5819209 ], [ 22.1484375, 13.2399455 ], [ 21.796875, 13.2399455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 13.5819209 ], [ 21.796875, 13.9234039 ], [ 22.1484375, 13.9234039 ], [ 22.1484375, 13.5819209 ], [ 21.796875, 13.5819209 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 13.9234039 ], [ 21.796875, 14.26438309 ], [ 22.1484375, 14.26438309 ], [ 22.1484375, 13.9234039 ], [ 21.796875, 13.9234039 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 14.26438309 ], [ 21.796875, 14.60484716 ], [ 22.1484375, 14.60484716 ], [ 22.1484375, 14.26438309 ], [ 21.796875, 14.26438309 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 14.60484716 ], [ 21.796875, 14.94478488 ], [ 22.1484375, 14.94478488 ], [ 22.1484375, 14.60484716 ], [ 21.796875, 14.60484716 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 14.94478488 ], [ 21.796875, 15.28418511 ], [ 22.1484375, 15.28418511 ], [ 22.1484375, 14.94478488 ], [ 21.796875, 14.94478488 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 15.28418511 ], [ 21.796875, 15.62303683 ], [ 22.1484375, 15.62303683 ], [ 22.1484375, 15.28418511 ], [ 21.796875, 15.28418511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 15.62303683 ], [ 21.796875, 15.96132908 ], [ 22.1484375, 15.96132908 ], [ 22.1484375, 15.62303683 ], [ 21.796875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 15.96132908 ], [ 21.796875, 16.29905101 ], [ 22.1484375, 16.29905101 ], [ 22.1484375, 15.96132908 ], [ 21.796875, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 16.29905101 ], [ 21.796875, 16.63619188 ], [ 22.1484375, 16.63619188 ], [ 22.1484375, 16.29905101 ], [ 21.796875, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 16.63619188 ], [ 21.796875, 16.97274102 ], [ 22.1484375, 16.97274102 ], [ 22.1484375, 16.63619188 ], [ 21.796875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 16.97274102 ], [ 21.796875, 17.30868789 ], [ 22.1484375, 17.30868789 ], [ 22.1484375, 16.97274102 ], [ 21.796875, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 17.30868789 ], [ 21.796875, 17.64402203 ], [ 22.1484375, 17.64402203 ], [ 22.1484375, 17.30868789 ], [ 21.796875, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 17.64402203 ], [ 21.796875, 17.9787331 ], [ 22.1484375, 17.9787331 ], [ 22.1484375, 17.64402203 ], [ 21.796875, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 17.9787331 ], [ 21.796875, 18.31281085 ], [ 22.1484375, 18.31281085 ], [ 22.1484375, 17.9787331 ], [ 21.796875, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 18.31281085 ], [ 21.796875, 18.64624514 ], [ 22.1484375, 18.64624514 ], [ 22.1484375, 18.31281085 ], [ 21.796875, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 15.62303683 ], [ 22.1484375, 15.96132908 ], [ 22.5, 15.96132908 ], [ 22.5, 15.62303683 ], [ 22.1484375, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 15.96132908 ], [ 22.1484375, 16.29905101 ], [ 22.5, 16.29905101 ], [ 22.5, 15.96132908 ], [ 22.1484375, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 16.29905101 ], [ 22.1484375, 16.63619188 ], [ 22.5, 16.63619188 ], [ 22.5, 16.29905101 ], [ 22.1484375, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 16.63619188 ], [ 22.1484375, 16.97274102 ], [ 22.5, 16.97274102 ], [ 22.5, 16.63619188 ], [ 22.1484375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 16.97274102 ], [ 22.1484375, 17.30868789 ], [ 22.5, 17.30868789 ], [ 22.5, 16.97274102 ], [ 22.1484375, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 17.30868789 ], [ 22.1484375, 17.64402203 ], [ 22.5, 17.64402203 ], [ 22.5, 17.30868789 ], [ 22.1484375, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 17.64402203 ], [ 22.1484375, 17.9787331 ], [ 22.5, 17.9787331 ], [ 22.5, 17.64402203 ], [ 22.1484375, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 17.9787331 ], [ 22.1484375, 18.31281085 ], [ 22.5, 18.31281085 ], [ 22.5, 17.9787331 ], [ 22.1484375, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1484375, 18.31281085 ], [ 22.1484375, 18.64624514 ], [ 22.5, 18.64624514 ], [ 22.5, 18.31281085 ], [ 22.1484375, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 15.62303683 ], [ 22.5, 15.96132908 ], [ 22.8515625, 15.96132908 ], [ 22.8515625, 15.62303683 ], [ 22.5, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 15.96132908 ], [ 22.5, 16.29905101 ], [ 22.8515625, 16.29905101 ], [ 22.8515625, 15.96132908 ], [ 22.5, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.29905101 ], [ 22.5, 16.63619188 ], [ 22.8515625, 16.63619188 ], [ 22.8515625, 16.29905101 ], [ 22.5, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.63619188 ], [ 22.5, 16.97274102 ], [ 22.8515625, 16.97274102 ], [ 22.8515625, 16.63619188 ], [ 22.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.97274102 ], [ 22.5, 17.30868789 ], [ 22.8515625, 17.30868789 ], [ 22.8515625, 16.97274102 ], [ 22.5, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 17.30868789 ], [ 22.5, 17.64402203 ], [ 22.8515625, 17.64402203 ], [ 22.8515625, 17.30868789 ], [ 22.5, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 17.64402203 ], [ 22.5, 17.9787331 ], [ 22.8515625, 17.9787331 ], [ 22.8515625, 17.64402203 ], [ 22.5, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 17.9787331 ], [ 22.5, 18.31281085 ], [ 22.8515625, 18.31281085 ], [ 22.8515625, 17.9787331 ], [ 22.5, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 18.31281085 ], [ 22.5, 18.64624514 ], [ 22.8515625, 18.64624514 ], [ 22.8515625, 18.31281085 ], [ 22.5, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 15.62303683 ], [ 22.8515625, 15.96132908 ], [ 23.203125, 15.96132908 ], [ 23.203125, 15.62303683 ], [ 22.8515625, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 15.96132908 ], [ 22.8515625, 16.29905101 ], [ 23.203125, 16.29905101 ], [ 23.203125, 15.96132908 ], [ 22.8515625, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 16.29905101 ], [ 22.8515625, 16.63619188 ], [ 23.203125, 16.63619188 ], [ 23.203125, 16.29905101 ], [ 22.8515625, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 16.63619188 ], [ 22.8515625, 16.97274102 ], [ 23.203125, 16.97274102 ], [ 23.203125, 16.63619188 ], [ 22.8515625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 16.97274102 ], [ 22.8515625, 17.30868789 ], [ 23.203125, 17.30868789 ], [ 23.203125, 16.97274102 ], [ 22.8515625, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 17.30868789 ], [ 22.8515625, 17.64402203 ], [ 23.203125, 17.64402203 ], [ 23.203125, 17.30868789 ], [ 22.8515625, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 17.64402203 ], [ 22.8515625, 17.9787331 ], [ 23.203125, 17.9787331 ], [ 23.203125, 17.64402203 ], [ 22.8515625, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 17.9787331 ], [ 22.8515625, 18.31281085 ], [ 23.203125, 18.31281085 ], [ 23.203125, 17.9787331 ], [ 22.8515625, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.8515625, 18.31281085 ], [ 22.8515625, 18.64624514 ], [ 23.203125, 18.64624514 ], [ 23.203125, 18.31281085 ], [ 22.8515625, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 15.62303683 ], [ 23.203125, 15.96132908 ], [ 23.5546875, 15.96132908 ], [ 23.5546875, 15.62303683 ], [ 23.203125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 15.96132908 ], [ 23.203125, 16.29905101 ], [ 23.5546875, 16.29905101 ], [ 23.5546875, 15.96132908 ], [ 23.203125, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 16.29905101 ], [ 23.203125, 16.63619188 ], [ 23.5546875, 16.63619188 ], [ 23.5546875, 16.29905101 ], [ 23.203125, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 16.63619188 ], [ 23.203125, 16.97274102 ], [ 23.5546875, 16.97274102 ], [ 23.5546875, 16.63619188 ], [ 23.203125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 16.97274102 ], [ 23.203125, 17.30868789 ], [ 23.5546875, 17.30868789 ], [ 23.5546875, 16.97274102 ], [ 23.203125, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 17.30868789 ], [ 23.203125, 17.64402203 ], [ 23.5546875, 17.64402203 ], [ 23.5546875, 17.30868789 ], [ 23.203125, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 17.64402203 ], [ 23.203125, 17.9787331 ], [ 23.5546875, 17.9787331 ], [ 23.5546875, 17.64402203 ], [ 23.203125, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 17.9787331 ], [ 23.203125, 18.31281085 ], [ 23.5546875, 18.31281085 ], [ 23.5546875, 17.9787331 ], [ 23.203125, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 18.31281085 ], [ 23.203125, 18.64624514 ], [ 23.5546875, 18.64624514 ], [ 23.5546875, 18.31281085 ], [ 23.203125, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 15.62303683 ], [ 23.5546875, 15.96132908 ], [ 23.90625, 15.96132908 ], [ 23.90625, 15.62303683 ], [ 23.5546875, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 15.96132908 ], [ 23.5546875, 16.29905101 ], [ 23.90625, 16.29905101 ], [ 23.90625, 15.96132908 ], [ 23.5546875, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 16.29905101 ], [ 23.5546875, 16.63619188 ], [ 23.90625, 16.63619188 ], [ 23.90625, 16.29905101 ], [ 23.5546875, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 16.63619188 ], [ 23.5546875, 16.97274102 ], [ 23.90625, 16.97274102 ], [ 23.90625, 16.63619188 ], [ 23.5546875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 16.97274102 ], [ 23.5546875, 17.30868789 ], [ 23.90625, 17.30868789 ], [ 23.90625, 16.97274102 ], [ 23.5546875, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 17.30868789 ], [ 23.5546875, 17.64402203 ], [ 23.90625, 17.64402203 ], [ 23.90625, 17.30868789 ], [ 23.5546875, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 17.64402203 ], [ 23.5546875, 17.9787331 ], [ 23.90625, 17.9787331 ], [ 23.90625, 17.64402203 ], [ 23.5546875, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 17.9787331 ], [ 23.5546875, 18.31281085 ], [ 23.90625, 18.31281085 ], [ 23.90625, 17.9787331 ], [ 23.5546875, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5546875, 18.31281085 ], [ 23.5546875, 18.64624514 ], [ 23.90625, 18.64624514 ], [ 23.90625, 18.31281085 ], [ 23.5546875, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 15.62303683 ], [ 23.90625, 15.96132908 ], [ 24.2578125, 15.96132908 ], [ 24.2578125, 15.62303683 ], [ 23.90625, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 15.96132908 ], [ 23.90625, 16.29905101 ], [ 24.2578125, 16.29905101 ], [ 24.2578125, 15.96132908 ], [ 23.90625, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 16.29905101 ], [ 23.90625, 16.63619188 ], [ 24.2578125, 16.63619188 ], [ 24.2578125, 16.29905101 ], [ 23.90625, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 16.63619188 ], [ 23.90625, 16.97274102 ], [ 24.2578125, 16.97274102 ], [ 24.2578125, 16.63619188 ], [ 23.90625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 16.97274102 ], [ 23.90625, 17.30868789 ], [ 24.2578125, 17.30868789 ], [ 24.2578125, 16.97274102 ], [ 23.90625, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 17.30868789 ], [ 23.90625, 17.64402203 ], [ 24.2578125, 17.64402203 ], [ 24.2578125, 17.30868789 ], [ 23.90625, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 17.64402203 ], [ 23.90625, 17.9787331 ], [ 24.2578125, 17.9787331 ], [ 24.2578125, 17.64402203 ], [ 23.90625, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 17.9787331 ], [ 23.90625, 18.31281085 ], [ 24.2578125, 18.31281085 ], [ 24.2578125, 17.9787331 ], [ 23.90625, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.90625, 18.31281085 ], [ 23.90625, 18.64624514 ], [ 24.2578125, 18.64624514 ], [ 24.2578125, 18.31281085 ], [ 23.90625, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 15.62303683 ], [ 24.2578125, 15.96132908 ], [ 24.609375, 15.96132908 ], [ 24.609375, 15.62303683 ], [ 24.2578125, 15.62303683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 15.96132908 ], [ 24.2578125, 16.29905101 ], [ 24.609375, 16.29905101 ], [ 24.609375, 15.96132908 ], [ 24.2578125, 15.96132908 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 16.29905101 ], [ 24.2578125, 16.63619188 ], [ 24.609375, 16.63619188 ], [ 24.609375, 16.29905101 ], [ 24.2578125, 16.29905101 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 16.63619188 ], [ 24.2578125, 16.97274102 ], [ 24.609375, 16.97274102 ], [ 24.609375, 16.63619188 ], [ 24.2578125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 16.97274102 ], [ 24.2578125, 17.30868789 ], [ 24.609375, 17.30868789 ], [ 24.609375, 16.97274102 ], [ 24.2578125, 16.97274102 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 17.30868789 ], [ 24.2578125, 17.64402203 ], [ 24.609375, 17.64402203 ], [ 24.609375, 17.30868789 ], [ 24.2578125, 17.30868789 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 17.64402203 ], [ 24.2578125, 17.9787331 ], [ 24.609375, 17.9787331 ], [ 24.609375, 17.64402203 ], [ 24.2578125, 17.64402203 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 17.9787331 ], [ 24.2578125, 18.31281085 ], [ 24.609375, 18.31281085 ], [ 24.609375, 17.9787331 ], [ 24.2578125, 17.9787331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.2578125, 18.31281085 ], [ 24.2578125, 18.64624514 ], [ 24.609375, 18.64624514 ], [ 24.609375, 18.31281085 ], [ 24.2578125, 18.31281085 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.83105469, 13.02596593 ], [ 16.83105469, 15.87680906 ], [ 20.10498047, 15.87680906 ], [ 20.10498047, 18.43792465 ], [ 24.27978516, 18.43792465 ], [ 24.30175781, 15.87680906 ], [ 21.92871094, 15.87680906 ], [ 21.92871094, 13.02596593 ], [ 16.83105469, 13.02596593 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/uk.geojson ================================================ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "brk_group": null, "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United Kingdom", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.661948614921897, 54.55460317648385 ], [ -6.197884894220977, 53.86756500916334 ], [ -6.953730231137996, 54.073702297575636 ], [ -7.572167934591079, 54.05995636658599 ], [ -7.366030646178785, 54.595840969452695 ], [ -7.572167934591079, 55.1316222194549 ], [ -6.733847011736145, 55.1728600124238 ], [ -5.661948614921897, 54.55460317648385 ] ] ], [ [ [ -3.005004848635281, 58.63500010846633 ], [ -4.073828497728016, 57.55302480735526 ], [ -3.055001796877661, 57.69001902936094 ], [ -1.959280564776918, 57.68479970969952 ], [ -2.219988165689301, 56.87001740175353 ], [ -3.119003058271119, 55.973793036515474 ], [ -2.085009324543023, 55.90999848085127 ], [ -2.005675679673857, 55.80490285035023 ], [ -1.11499101399221, 54.624986477265395 ], [ -0.4304849918542, 54.46437612570216 ], [ 0.184981316742039, 53.32501414653103 ], [ 0.469976840831777, 52.92999949809197 ], [ 1.681530795914739, 52.739520168664 ], [ 1.559987827164377, 52.09999848083601 ], [ 1.050561557630914, 51.806760565795685 ], [ 1.449865349950301, 51.28942780212196 ], [ 0.550333693045502, 50.765738837275876 ], [ -0.78751746255864, 50.77498891865622 ], [ -2.489997524414377, 50.50001862243124 ], [ -2.956273972984036, 50.696879991247016 ], [ -3.617448085942328, 50.22835561787272 ], [ -4.542507900399244, 50.341837063185665 ], [ -5.245023159191135, 49.95999990498109 ], [ -5.776566941745301, 50.15967763935683 ], [ -4.309989793301838, 51.21000112568916 ], [ -3.414850633142123, 51.42600861266925 ], [ -3.422719467108323, 51.42684816740609 ], [ -4.984367234710874, 51.593466091510976 ], [ -5.267295701508885, 51.991400458374585 ], [ -4.222346564134853, 52.301355699261364 ], [ -4.770013393564113, 52.840004991255626 ], [ -4.579999152026915, 53.49500377055517 ], [ -3.093830673788659, 53.404547400669685 ], [ -3.092079637047107, 53.40444082296355 ], [ -2.945008510744344, 53.984999701546684 ], [ -3.614700825433033, 54.600936773292574 ], [ -3.630005458989331, 54.615012925833014 ], [ -4.844169073903004, 54.790971177786844 ], [ -5.082526617849226, 55.06160065369937 ], [ -4.719112107756644, 55.50847260194348 ], [ -5.047980922862109, 55.78398550070753 ], [ -5.58639767091114, 55.31114614523682 ], [ -5.644998745130181, 56.275014960344805 ], [ -6.149980841486354, 56.78500967063354 ], [ -5.786824713555291, 57.81884837506465 ], [ -5.009998745127575, 58.63001333275005 ], [ -4.211494513353557, 58.55084503847917 ], [ -3.005004848635281, 58.63500010846633 ] ] ] ] } } ================================================ FILE: test/fixtures/uk_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 54.16243397 ], [ -0.703125, 54.57206166 ], [ 0, 54.57206166 ], [ 0, 54.16243397 ], [ -0.703125, 54.16243397 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.40625, 50.28933925 ], [ -1.40625, 50.73645514 ], [ -0.703125, 50.73645514 ], [ -0.703125, 50.28933925 ], [ -1.40625, 50.28933925 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.40625, 54.16243397 ], [ -1.40625, 54.57206166 ], [ -0.703125, 54.57206166 ], [ -0.703125, 54.16243397 ], [ -1.40625, 54.16243397 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.40625, 54.57206166 ], [ -1.40625, 54.97761367 ], [ -0.703125, 54.97761367 ], [ -0.703125, 54.57206166 ], [ -1.40625, 54.57206166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.40625, 54.97761367 ], [ -1.40625, 55.37911045 ], [ -0.703125, 55.37911045 ], [ -0.703125, 54.97761367 ], [ -1.40625, 54.97761367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 50.28933925 ], [ -2.109375, 50.73645514 ], [ -1.40625, 50.73645514 ], [ -1.40625, 50.28933925 ], [ -2.109375, 50.28933925 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 55.77657302 ], [ -2.109375, 56.17002298 ], [ -1.40625, 56.17002298 ], [ -1.40625, 55.77657302 ], [ -2.109375, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 56.94497418 ], [ -2.109375, 57.32652123 ], [ -1.40625, 57.32652123 ], [ -1.40625, 56.94497418 ], [ -2.109375, 56.94497418 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 57.32652123 ], [ -2.109375, 57.70414723 ], [ -1.40625, 57.70414723 ], [ -1.40625, 57.32652123 ], [ -2.109375, 57.32652123 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 50.28933925 ], [ -2.8125, 50.73645514 ], [ -2.109375, 50.73645514 ], [ -2.109375, 50.28933925 ], [ -2.8125, 50.28933925 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 50.73645514 ], [ -2.8125, 52.48278022 ], [ 0, 52.48278022 ], [ 0, 50.73645514 ], [ -2.8125, 50.73645514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 52.48278022 ], [ -2.8125, 54.16243397 ], [ 0, 54.16243397 ], [ 0, 52.48278022 ], [ -2.8125, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 54.16243397 ], [ -2.8125, 54.97761367 ], [ -1.40625, 54.97761367 ], [ -1.40625, 54.16243397 ], [ -2.8125, 54.16243397 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 54.97761367 ], [ -2.8125, 55.77657302 ], [ -1.40625, 55.77657302 ], [ -1.40625, 54.97761367 ], [ -2.8125, 54.97761367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 55.77657302 ], [ -2.8125, 56.17002298 ], [ -2.109375, 56.17002298 ], [ -2.109375, 55.77657302 ], [ -2.8125, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 56.17002298 ], [ -2.8125, 56.55948248 ], [ -2.109375, 56.55948248 ], [ -2.109375, 56.17002298 ], [ -2.8125, 56.17002298 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 56.55948248 ], [ -2.8125, 56.94497418 ], [ -2.109375, 56.94497418 ], [ -2.109375, 56.55948248 ], [ -2.8125, 56.55948248 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 56.94497418 ], [ -2.8125, 57.32652123 ], [ -2.109375, 57.32652123 ], [ -2.109375, 56.94497418 ], [ -2.8125, 56.94497418 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.8125, 57.32652123 ], [ -2.8125, 57.70414723 ], [ -2.109375, 57.70414723 ], [ -2.109375, 57.32652123 ], [ -2.8125, 57.32652123 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 50.28933925 ], [ -3.515625, 50.73645514 ], [ -2.8125, 50.73645514 ], [ -2.8125, 50.28933925 ], [ -3.515625, 50.28933925 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 53.33087298 ], [ -3.515625, 53.7487108 ], [ -2.8125, 53.7487108 ], [ -2.8125, 53.33087298 ], [ -3.515625, 53.33087298 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 53.7487108 ], [ -3.515625, 54.16243397 ], [ -2.8125, 54.16243397 ], [ -2.8125, 53.7487108 ], [ -3.515625, 53.7487108 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 57.32652123 ], [ -3.515625, 57.70414723 ], [ -2.8125, 57.70414723 ], [ -2.8125, 57.32652123 ], [ -3.515625, 57.32652123 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.21875, 49.83798245 ], [ -4.21875, 50.28933925 ], [ -3.515625, 50.28933925 ], [ -3.515625, 49.83798245 ], [ -4.21875, 49.83798245 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.21875, 50.28933925 ], [ -4.21875, 50.73645514 ], [ -3.515625, 50.73645514 ], [ -3.515625, 50.28933925 ], [ -4.21875, 50.28933925 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.21875, 52.48278022 ], [ -4.21875, 53.33087298 ], [ -2.8125, 53.33087298 ], [ -2.8125, 52.48278022 ], [ -4.21875, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.21875, 53.33087298 ], [ -4.21875, 53.7487108 ], [ -3.515625, 53.7487108 ], [ -3.515625, 53.33087298 ], [ -4.21875, 53.33087298 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.21875, 54.16243397 ], [ -4.21875, 54.97761367 ], [ -2.8125, 54.97761367 ], [ -2.8125, 54.16243397 ], [ -4.21875, 54.16243397 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.21875, 54.97761367 ], [ -4.21875, 55.77657302 ], [ -2.8125, 55.77657302 ], [ -2.8125, 54.97761367 ], [ -4.21875, 54.97761367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.21875, 57.32652123 ], [ -4.21875, 57.70414723 ], [ -3.515625, 57.70414723 ], [ -3.515625, 57.32652123 ], [ -4.21875, 57.32652123 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.21875, 57.70414723 ], [ -4.21875, 58.07787627 ], [ -3.515625, 58.07787627 ], [ -3.515625, 57.70414723 ], [ -4.21875, 57.70414723 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.21875, 58.07787627 ], [ -4.21875, 58.81374172 ], [ -2.8125, 58.81374172 ], [ -2.8125, 58.07787627 ], [ -4.21875, 58.07787627 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 52.48278022 ], [ -4.921875, 52.90890205 ], [ -4.21875, 52.90890205 ], [ -4.21875, 52.48278022 ], [ -4.921875, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 52.90890205 ], [ -4.921875, 53.33087298 ], [ -4.21875, 53.33087298 ], [ -4.21875, 52.90890205 ], [ -4.921875, 52.90890205 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 53.33087298 ], [ -4.921875, 53.7487108 ], [ -4.21875, 53.7487108 ], [ -4.21875, 53.33087298 ], [ -4.921875, 53.33087298 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 54.57206166 ], [ -4.921875, 54.97761367 ], [ -4.21875, 54.97761367 ], [ -4.21875, 54.57206166 ], [ -4.921875, 54.57206166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 49.83798245 ], [ -5.625, 50.73645514 ], [ -4.21875, 50.73645514 ], [ -4.21875, 49.83798245 ], [ -5.625, 49.83798245 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 50.73645514 ], [ -5.625, 52.48278022 ], [ -2.8125, 52.48278022 ], [ -2.8125, 50.73645514 ], [ -5.625, 50.73645514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 54.57206166 ], [ -5.625, 54.97761367 ], [ -4.921875, 54.97761367 ], [ -4.921875, 54.57206166 ], [ -5.625, 54.57206166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 54.97761367 ], [ -5.625, 55.77657302 ], [ -4.21875, 55.77657302 ], [ -4.21875, 54.97761367 ], [ -5.625, 54.97761367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 55.77657302 ], [ -5.625, 57.32652123 ], [ -2.8125, 57.32652123 ], [ -2.8125, 55.77657302 ], [ -5.625, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 57.32652123 ], [ -5.625, 58.07787627 ], [ -4.21875, 58.07787627 ], [ -4.21875, 57.32652123 ], [ -5.625, 57.32652123 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 58.07787627 ], [ -5.625, 58.81374172 ], [ -4.21875, 58.81374172 ], [ -4.21875, 58.07787627 ], [ -5.625, 58.07787627 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 49.83798245 ], [ -6.328125, 50.28933925 ], [ -5.625, 50.28933925 ], [ -5.625, 49.83798245 ], [ -6.328125, 49.83798245 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 53.7487108 ], [ -6.328125, 54.16243397 ], [ -5.625, 54.16243397 ], [ -5.625, 53.7487108 ], [ -6.328125, 53.7487108 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 55.77657302 ], [ -6.328125, 56.17002298 ], [ -5.625, 56.17002298 ], [ -5.625, 55.77657302 ], [ -6.328125, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 56.17002298 ], [ -6.328125, 56.55948248 ], [ -5.625, 56.55948248 ], [ -5.625, 56.17002298 ], [ -6.328125, 56.17002298 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 56.55948248 ], [ -6.328125, 56.94497418 ], [ -5.625, 56.94497418 ], [ -5.625, 56.55948248 ], [ -6.328125, 56.55948248 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 56.94497418 ], [ -6.328125, 57.32652123 ], [ -5.625, 57.32652123 ], [ -5.625, 56.94497418 ], [ -6.328125, 56.94497418 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 57.32652123 ], [ -6.328125, 57.70414723 ], [ -5.625, 57.70414723 ], [ -5.625, 57.32652123 ], [ -6.328125, 57.32652123 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 57.70414723 ], [ -6.328125, 58.07787627 ], [ -5.625, 58.07787627 ], [ -5.625, 57.70414723 ], [ -6.328125, 57.70414723 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.03125, 53.7487108 ], [ -7.03125, 54.16243397 ], [ -6.328125, 54.16243397 ], [ -6.328125, 53.7487108 ], [ -7.03125, 53.7487108 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.03125, 54.16243397 ], [ -7.03125, 54.97761367 ], [ -5.625, 54.97761367 ], [ -5.625, 54.16243397 ], [ -7.03125, 54.16243397 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.03125, 54.97761367 ], [ -7.03125, 55.37911045 ], [ -6.328125, 55.37911045 ], [ -6.328125, 54.97761367 ], [ -7.03125, 54.97761367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 53.7487108 ], [ -7.734375, 54.16243397 ], [ -7.03125, 54.16243397 ], [ -7.03125, 53.7487108 ], [ -7.734375, 53.7487108 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 54.16243397 ], [ -7.734375, 54.57206166 ], [ -7.03125, 54.57206166 ], [ -7.03125, 54.16243397 ], [ -7.734375, 54.16243397 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 54.57206166 ], [ -7.734375, 54.97761367 ], [ -7.03125, 54.97761367 ], [ -7.03125, 54.57206166 ], [ -7.734375, 54.57206166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 54.97761367 ], [ -7.734375, 55.37911045 ], [ -7.03125, 55.37911045 ], [ -7.03125, 54.97761367 ], [ -7.734375, 54.97761367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 50.73645514 ], [ 0, 51.61801655 ], [ 1.40625, 51.61801655 ], [ 1.40625, 50.73645514 ], [ 0, 50.73645514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 51.61801655 ], [ 0, 52.48278022 ], [ 1.40625, 52.48278022 ], [ 1.40625, 51.61801655 ], [ 0, 51.61801655 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 52.48278022 ], [ 0, 52.90890205 ], [ 0.703125, 52.90890205 ], [ 0.703125, 52.48278022 ], [ 0, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 52.90890205 ], [ 0, 53.33087298 ], [ 0.703125, 53.33087298 ], [ 0.703125, 52.90890205 ], [ 0, 52.90890205 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 53.33087298 ], [ 0, 53.7487108 ], [ 0.703125, 53.7487108 ], [ 0.703125, 53.33087298 ], [ 0, 53.33087298 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 52.48278022 ], [ 0.703125, 52.90890205 ], [ 1.40625, 52.90890205 ], [ 1.40625, 52.48278022 ], [ 0.703125, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.40625, 51.17934298 ], [ 1.40625, 51.61801655 ], [ 2.109375, 51.61801655 ], [ 2.109375, 51.17934298 ], [ 1.40625, 51.17934298 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.40625, 51.61801655 ], [ 1.40625, 52.05249048 ], [ 2.109375, 52.05249048 ], [ 2.109375, 51.61801655 ], [ 1.40625, 51.61801655 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.40625, 52.05249048 ], [ 1.40625, 52.48278022 ], [ 2.109375, 52.48278022 ], [ 2.109375, 52.05249048 ], [ 1.40625, 52.05249048 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.40625, 52.48278022 ], [ 1.40625, 52.90890205 ], [ 2.109375, 52.90890205 ], [ 2.109375, 52.48278022 ], [ 1.40625, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.66194861, 54.55460318 ], [ -6.19788489, 53.86756501 ], [ -6.95373023, 54.0737023 ], [ -7.57216793, 54.05995637 ], [ -7.36603065, 54.59584097 ], [ -7.57216793, 55.13162222 ], [ -6.73384701, 55.17286001 ], [ -5.66194861, 54.55460318 ] ] ], [ [ [ -3.00500485, 58.63500011 ], [ -4.0738285, 57.55302481 ], [ -3.0550018, 57.69001903 ], [ -1.95928056, 57.68479971 ], [ -2.21998817, 56.8700174 ], [ -3.11900306, 55.97379304 ], [ -2.08500932, 55.90999848 ], [ -2.00567568, 55.80490285 ], [ -1.11499101, 54.62498648 ], [ -0.43048499, 54.46437613 ], [ 0.18498132, 53.32501415 ], [ 0.46997684, 52.9299995 ], [ 1.6815308, 52.73952017 ], [ 1.55998783, 52.09999848 ], [ 1.05056156, 51.80676057 ], [ 1.44986535, 51.2894278 ], [ 0.55033369, 50.76573884 ], [ -0.78751746, 50.77498892 ], [ -2.48999752, 50.50001862 ], [ -2.95627397, 50.69687999 ], [ -3.61744809, 50.22835562 ], [ -4.5425079, 50.34183706 ], [ -5.24502316, 49.9599999 ], [ -5.77656694, 50.15967764 ], [ -4.30998979, 51.21000113 ], [ -3.41485063, 51.42600861 ], [ -3.42271947, 51.42684817 ], [ -4.98436723, 51.59346609 ], [ -5.2672957, 51.99140046 ], [ -4.22234656, 52.3013557 ], [ -4.77001339, 52.84000499 ], [ -4.57999915, 53.49500377 ], [ -3.09383067, 53.4045474 ], [ -3.09207964, 53.40444082 ], [ -2.94500851, 53.9849997 ], [ -3.61470083, 54.60093677 ], [ -3.63000546, 54.61501293 ], [ -4.84416907, 54.79097118 ], [ -5.08252662, 55.06160065 ], [ -4.71911211, 55.5084726 ], [ -5.04798092, 55.7839855 ], [ -5.58639767, 55.31114615 ], [ -5.64499875, 56.27501496 ], [ -6.14998084, 56.78500967 ], [ -5.78682471, 57.81884838 ], [ -5.00999875, 58.63001333 ], [ -4.21149451, 58.55084504 ], [ -3.00500485, 58.63500011 ] ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/fixtures/world/AFG.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"AFG","properties":{"name":"Afghanistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[62.230651,35.270664],[62.984662,35.404041],[63.193538,35.857166],[63.982896,36.007957],[64.546479,36.312073],[64.746105,37.111818],[65.588948,37.305217],[65.745631,37.661164],[66.217385,37.39379],[66.518607,37.362784],[67.075782,37.356144],[67.83,37.144994],[68.135562,37.023115],[68.859446,37.344336],[69.196273,37.151144],[69.518785,37.608997],[70.116578,37.588223],[70.270574,37.735165],[70.376304,38.138396],[70.806821,38.486282],[71.348131,38.258905],[71.239404,37.953265],[71.541918,37.905774],[71.448693,37.065645],[71.844638,36.738171],[72.193041,36.948288],[72.63689,37.047558],[73.260056,37.495257],[73.948696,37.421566],[74.980002,37.41999],[75.158028,37.133031],[74.575893,37.020841],[74.067552,36.836176],[72.920025,36.720007],[71.846292,36.509942],[71.262348,36.074388],[71.498768,35.650563],[71.613076,35.153203],[71.115019,34.733126],[71.156773,34.348911],[70.881803,33.988856],[69.930543,34.02012],[70.323594,33.358533],[69.687147,33.105499],[69.262522,32.501944],[69.317764,31.901412],[68.926677,31.620189],[68.556932,31.71331],[67.792689,31.58293],[67.683394,31.303154],[66.938891,31.304911],[66.381458,30.738899],[66.346473,29.887943],[65.046862,29.472181],[64.350419,29.560031],[64.148002,29.340819],[63.550261,29.468331],[62.549857,29.318572],[60.874248,29.829239],[61.781222,30.73585],[61.699314,31.379506],[60.941945,31.548075],[60.863655,32.18292],[60.536078,32.981269],[60.9637,33.528832],[60.52843,33.676446],[60.803193,34.404102],[61.210817,35.650072]]]}} ]} ================================================ FILE: test/fixtures/world/AFG_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 27.05912578 ], [ 56.25, 31.95216224 ], [ 61.875, 31.95216224 ], [ 61.875, 27.05912578 ], [ 56.25, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 31.95216224 ], [ 56.25, 36.59788913 ], [ 61.875, 36.59788913 ], [ 61.875, 31.95216224 ], [ 56.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 27.05912578 ], [ 61.875, 31.95216224 ], [ 67.5, 31.95216224 ], [ 67.5, 27.05912578 ], [ 61.875, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 31.95216224 ], [ 61.875, 36.59788913 ], [ 67.5, 36.59788913 ], [ 67.5, 31.95216224 ], [ 61.875, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 36.59788913 ], [ 61.875, 40.97989807 ], [ 67.5, 40.97989807 ], [ 67.5, 36.59788913 ], [ 61.875, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 27.05912578 ], [ 67.5, 31.95216224 ], [ 73.125, 31.95216224 ], [ 73.125, 27.05912578 ], [ 67.5, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 31.95216224 ], [ 67.5, 36.59788913 ], [ 73.125, 36.59788913 ], [ 73.125, 31.95216224 ], [ 67.5, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 36.59788913 ], [ 67.5, 40.97989807 ], [ 73.125, 40.97989807 ], [ 73.125, 36.59788913 ], [ 67.5, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 36.59788913 ], [ 73.125, 40.97989807 ], [ 78.75, 40.97989807 ], [ 78.75, 36.59788913 ], [ 73.125, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.210817, 35.650072 ], [ 62.230651, 35.270664 ], [ 62.984662, 35.404041 ], [ 63.193538, 35.857166 ], [ 63.982896, 36.007957 ], [ 64.546479, 36.312073 ], [ 64.746105, 37.111818 ], [ 65.588948, 37.305217 ], [ 65.745631, 37.661164 ], [ 66.217385, 37.39379 ], [ 66.518607, 37.362784 ], [ 67.075782, 37.356144 ], [ 67.83, 37.144994 ], [ 68.135562, 37.023115 ], [ 68.859446, 37.344336 ], [ 69.196273, 37.151144 ], [ 69.518785, 37.608997 ], [ 70.116578, 37.588223 ], [ 70.270574, 37.735165 ], [ 70.376304, 38.138396 ], [ 70.806821, 38.486282 ], [ 71.348131, 38.258905 ], [ 71.239404, 37.953265 ], [ 71.541918, 37.905774 ], [ 71.448693, 37.065645 ], [ 71.844638, 36.738171 ], [ 72.193041, 36.948288 ], [ 72.63689, 37.047558 ], [ 73.260056, 37.495257 ], [ 73.948696, 37.421566 ], [ 74.980002, 37.41999 ], [ 75.158028, 37.133031 ], [ 74.575893, 37.020841 ], [ 74.067552, 36.836176 ], [ 72.920025, 36.720007 ], [ 71.846292, 36.509942 ], [ 71.262348, 36.074388 ], [ 71.498768, 35.650563 ], [ 71.613076, 35.153203 ], [ 71.115019, 34.733126 ], [ 71.156773, 34.348911 ], [ 70.881803, 33.988856 ], [ 69.930543, 34.02012 ], [ 70.323594, 33.358533 ], [ 69.687147, 33.105499 ], [ 69.262522, 32.501944 ], [ 69.317764, 31.901412 ], [ 68.926677, 31.620189 ], [ 68.556932, 31.71331 ], [ 67.792689, 31.58293 ], [ 67.683394, 31.303154 ], [ 66.938891, 31.304911 ], [ 66.381458, 30.738899 ], [ 66.346473, 29.887943 ], [ 65.046862, 29.472181 ], [ 64.350419, 29.560031 ], [ 64.148002, 29.340819 ], [ 63.550261, 29.468331 ], [ 62.549857, 29.318572 ], [ 60.874248, 29.829239 ], [ 61.781222, 30.73585 ], [ 61.699314, 31.379506 ], [ 60.941945, 31.548075 ], [ 60.863655, 32.18292 ], [ 60.536078, 32.981269 ], [ 60.9637, 33.528832 ], [ 60.52843, 33.676446 ], [ 60.803193, 34.404102 ], [ 61.210817, 35.650072 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/AGO.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"AGO","properties":{"name":"Angola"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.326528,-5.87747],[16.57318,-6.622645],[16.860191,-7.222298],[17.089996,-7.545689],[17.47297,-8.068551],[18.134222,-7.987678],[18.464176,-7.847014],[19.016752,-7.988246],[19.166613,-7.738184],[19.417502,-7.155429],[20.037723,-7.116361],[20.091622,-6.94309],[20.601823,-6.939318],[20.514748,-7.299606],[21.728111,-7.290872],[21.746456,-7.920085],[21.949131,-8.305901],[21.801801,-8.908707],[21.875182,-9.523708],[22.208753,-9.894796],[22.155268,-11.084801],[22.402798,-10.993075],[22.837345,-11.017622],[23.456791,-10.867863],[23.912215,-10.926826],[24.017894,-11.237298],[23.904154,-11.722282],[24.079905,-12.191297],[23.930922,-12.565848],[24.016137,-12.911046],[21.933886,-12.898437],[21.887843,-16.08031],[22.562478,-16.898451],[23.215048,-17.523116],[21.377176,-17.930636],[18.956187,-17.789095],[18.263309,-17.309951],[14.209707,-17.353101],[14.058501,-17.423381],[13.462362,-16.971212],[12.814081,-16.941343],[12.215461,-17.111668],[11.734199,-17.301889],[11.640096,-16.673142],[11.778537,-15.793816],[12.123581,-14.878316],[12.175619,-14.449144],[12.500095,-13.5477],[12.738479,-13.137906],[13.312914,-12.48363],[13.633721,-12.038645],[13.738728,-11.297863],[13.686379,-10.731076],[13.387328,-10.373578],[13.120988,-9.766897],[12.87537,-9.166934],[12.929061,-8.959091],[13.236433,-8.562629],[12.93304,-7.596539],[12.728298,-6.927122],[12.227347,-6.294448],[12.322432,-6.100092],[12.735171,-5.965682],[13.024869,-5.984389],[13.375597,-5.864241],[16.326528,-5.87747]]],[[[12.436688,-5.684304],[12.182337,-5.789931],[11.914963,-5.037987],[12.318608,-4.60623],[12.62076,-4.438023],[12.995517,-4.781103],[12.631612,-4.991271],[12.468004,-5.248362],[12.436688,-5.684304]]]]}} ]} ================================================ FILE: test/fixtures/world/AGO_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, -11.17840187 ], [ 11.25, -5.61598582 ], [ 16.875, -5.61598582 ], [ 16.875, -11.17840187 ], [ 11.25, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, -21.94304553 ], [ 11.25, -11.17840187 ], [ 22.5, -11.17840187 ], [ 22.5, -21.94304553 ], [ 11.25, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, -5.61598582 ], [ 11.25, 0 ], [ 16.875, 0 ], [ 16.875, -5.61598582 ], [ 11.25, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -11.17840187 ], [ 16.875, -5.61598582 ], [ 22.5, -5.61598582 ], [ 22.5, -11.17840187 ], [ 16.875, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -11.17840187 ], [ 22.5, -5.61598582 ], [ 28.125, -5.61598582 ], [ 28.125, -11.17840187 ], [ 22.5, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -16.63619188 ], [ 22.5, -11.17840187 ], [ 28.125, -11.17840187 ], [ 28.125, -16.63619188 ], [ 22.5, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -21.94304553 ], [ 22.5, -16.63619188 ], [ 28.125, -16.63619188 ], [ 28.125, -21.94304553 ], [ 22.5, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.326528, -5.87747 ], [ 16.57318, -6.622645 ], [ 16.860191, -7.222298 ], [ 17.089996, -7.545689 ], [ 17.47297, -8.068551 ], [ 18.134222, -7.987678 ], [ 18.464176, -7.847014 ], [ 19.016752, -7.988246 ], [ 19.166613, -7.738184 ], [ 19.417502, -7.155429 ], [ 20.037723, -7.116361 ], [ 20.091622, -6.94309 ], [ 20.601823, -6.939318 ], [ 20.514748, -7.299606 ], [ 21.728111, -7.290872 ], [ 21.746456, -7.920085 ], [ 21.949131, -8.305901 ], [ 21.801801, -8.908707 ], [ 21.875182, -9.523708 ], [ 22.208753, -9.894796 ], [ 22.155268, -11.084801 ], [ 22.402798, -10.993075 ], [ 22.837345, -11.017622 ], [ 23.456791, -10.867863 ], [ 23.912215, -10.926826 ], [ 24.017894, -11.237298 ], [ 23.904154, -11.722282 ], [ 24.079905, -12.191297 ], [ 23.930922, -12.565848 ], [ 24.016137, -12.911046 ], [ 21.933886, -12.898437 ], [ 21.887843, -16.08031 ], [ 22.562478, -16.898451 ], [ 23.215048, -17.523116 ], [ 21.377176, -17.930636 ], [ 18.956187, -17.789095 ], [ 18.263309, -17.309951 ], [ 14.209707, -17.353101 ], [ 14.058501, -17.423381 ], [ 13.462362, -16.971212 ], [ 12.814081, -16.941343 ], [ 12.215461, -17.111668 ], [ 11.734199, -17.301889 ], [ 11.640096, -16.673142 ], [ 11.778537, -15.793816 ], [ 12.123581, -14.878316 ], [ 12.175619, -14.449144 ], [ 12.500095, -13.5477 ], [ 12.738479, -13.137906 ], [ 13.312914, -12.48363 ], [ 13.633721, -12.038645 ], [ 13.738728, -11.297863 ], [ 13.686379, -10.731076 ], [ 13.387328, -10.373578 ], [ 13.120988, -9.766897 ], [ 12.87537, -9.166934 ], [ 12.929061, -8.959091 ], [ 13.236433, -8.562629 ], [ 12.93304, -7.596539 ], [ 12.728298, -6.927122 ], [ 12.227347, -6.294448 ], [ 12.322432, -6.100092 ], [ 12.735171, -5.965682 ], [ 13.024869, -5.984389 ], [ 13.375597, -5.864241 ], [ 16.326528, -5.87747 ] ] ], [ [ [ 12.436688, -5.684304 ], [ 12.182337, -5.789931 ], [ 11.914963, -5.037987 ], [ 12.318608, -4.60623 ], [ 12.62076, -4.438023 ], [ 12.995517, -4.781103 ], [ 12.631612, -4.991271 ], [ 12.468004, -5.248362 ], [ 12.436688, -5.684304 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ALB.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ALB","properties":{"name":"Albania"},"geometry":{"type":"Polygon","coordinates":[[[20.590247,41.855404],[20.463175,41.515089],[20.605182,41.086226],[21.02004,40.842727],[20.99999,40.580004],[20.674997,40.435],[20.615,40.110007],[20.150016,39.624998],[19.98,39.694993],[19.960002,39.915006],[19.406082,40.250773],[19.319059,40.72723],[19.40355,41.409566],[19.540027,41.719986],[19.371769,41.877548],[19.304486,42.195745],[19.738051,42.688247],[19.801613,42.500093],[20.0707,42.58863],[20.283755,42.32026],[20.52295,42.21787],[20.590247,41.855404]]]}} ]} ================================================ FILE: test/fixtures/world/ALB_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 36.59788913 ], [ 16.875, 40.97989807 ], [ 22.5, 40.97989807 ], [ 22.5, 36.59788913 ], [ 16.875, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 40.97989807 ], [ 16.875, 45.08903556 ], [ 22.5, 45.08903556 ], [ 22.5, 40.97989807 ], [ 16.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.590247, 41.855404 ], [ 20.463175, 41.515089 ], [ 20.605182, 41.086226 ], [ 21.02004, 40.842727 ], [ 20.99999, 40.580004 ], [ 20.674997, 40.435 ], [ 20.615, 40.110007 ], [ 20.150016, 39.624998 ], [ 19.98, 39.694993 ], [ 19.960002, 39.915006 ], [ 19.406082, 40.250773 ], [ 19.319059, 40.72723 ], [ 19.40355, 41.409566 ], [ 19.540027, 41.719986 ], [ 19.371769, 41.877548 ], [ 19.304486, 42.195745 ], [ 19.738051, 42.688247 ], [ 19.801613, 42.500093 ], [ 20.0707, 42.58863 ], [ 20.283755, 42.32026 ], [ 20.52295, 42.21787 ], [ 20.590247, 41.855404 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ARE.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ARE","properties":{"name":"United Arab Emirates"},"geometry":{"type":"Polygon","coordinates":[[[51.579519,24.245497],[51.757441,24.294073],[51.794389,24.019826],[52.577081,24.177439],[53.404007,24.151317],[54.008001,24.121758],[54.693024,24.797892],[55.439025,25.439145],[56.070821,26.055464],[56.261042,25.714606],[56.396847,24.924732],[55.886233,24.920831],[55.804119,24.269604],[55.981214,24.130543],[55.528632,23.933604],[55.525841,23.524869],[55.234489,23.110993],[55.208341,22.70833],[55.006803,22.496948],[52.000733,23.001154],[51.617708,24.014219],[51.579519,24.245497]]]}} ]} ================================================ FILE: test/fixtures/world/ARE_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 21.94304553 ], [ 50.625, 27.05912578 ], [ 56.25, 27.05912578 ], [ 56.25, 21.94304553 ], [ 50.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 21.94304553 ], [ 56.25, 27.05912578 ], [ 61.875, 27.05912578 ], [ 61.875, 21.94304553 ], [ 56.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.579519, 24.245497 ], [ 51.757441, 24.294073 ], [ 51.794389, 24.019826 ], [ 52.577081, 24.177439 ], [ 53.404007, 24.151317 ], [ 54.008001, 24.121758 ], [ 54.693024, 24.797892 ], [ 55.439025, 25.439145 ], [ 56.070821, 26.055464 ], [ 56.261042, 25.714606 ], [ 56.396847, 24.924732 ], [ 55.886233, 24.920831 ], [ 55.804119, 24.269604 ], [ 55.981214, 24.130543 ], [ 55.528632, 23.933604 ], [ 55.525841, 23.524869 ], [ 55.234489, 23.110993 ], [ 55.208341, 22.70833 ], [ 55.006803, 22.496948 ], [ 52.000733, 23.001154 ], [ 51.617708, 24.014219 ], [ 51.579519, 24.245497 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ARG.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ARG","properties":{"name":"Argentina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.5,-55.2],[-66.45,-55.25],[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.63401,-52.63637],[-68.25,-53.1],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2]]],[[[-64.964892,-22.075862],[-64.377021,-22.798091],[-63.986838,-21.993644],[-62.846468,-22.034985],[-62.685057,-22.249029],[-60.846565,-23.880713],[-60.028966,-24.032796],[-58.807128,-24.771459],[-57.777217,-25.16234],[-57.63366,-25.603657],[-58.618174,-27.123719],[-57.60976,-27.395899],[-56.486702,-27.548499],[-55.695846,-27.387837],[-54.788795,-26.621786],[-54.625291,-25.739255],[-54.13005,-25.547639],[-53.628349,-26.124865],[-53.648735,-26.923473],[-54.490725,-27.474757],[-55.162286,-27.881915],[-56.2909,-28.852761],[-57.625133,-30.216295],[-57.874937,-31.016556],[-58.14244,-32.044504],[-58.132648,-33.040567],[-58.349611,-33.263189],[-58.427074,-33.909454],[-58.495442,-34.43149],[-57.22583,-35.288027],[-57.362359,-35.97739],[-56.737487,-36.413126],[-56.788285,-36.901572],[-57.749157,-38.183871],[-59.231857,-38.72022],[-61.237445,-38.928425],[-62.335957,-38.827707],[-62.125763,-39.424105],[-62.330531,-40.172586],[-62.145994,-40.676897],[-62.745803,-41.028761],[-63.770495,-41.166789],[-64.73209,-40.802677],[-65.118035,-41.064315],[-64.978561,-42.058001],[-64.303408,-42.359016],[-63.755948,-42.043687],[-63.458059,-42.563138],[-64.378804,-42.873558],[-65.181804,-43.495381],[-65.328823,-44.501366],[-65.565269,-45.036786],[-66.509966,-45.039628],[-67.293794,-45.551896],[-67.580546,-46.301773],[-66.597066,-47.033925],[-65.641027,-47.236135],[-65.985088,-48.133289],[-67.166179,-48.697337],[-67.816088,-49.869669],[-68.728745,-50.264218],[-69.138539,-50.73251],[-68.815561,-51.771104],[-68.149995,-52.349983],[-68.571545,-52.299444],[-69.498362,-52.142761],[-71.914804,-52.009022],[-72.329404,-51.425956],[-72.309974,-50.67701],[-72.975747,-50.74145],[-73.328051,-50.378785],[-73.415436,-49.318436],[-72.648247,-48.878618],[-72.331161,-48.244238],[-72.447355,-47.738533],[-71.917258,-46.884838],[-71.552009,-45.560733],[-71.659316,-44.973689],[-71.222779,-44.784243],[-71.329801,-44.407522],[-71.793623,-44.207172],[-71.464056,-43.787611],[-71.915424,-43.408565],[-72.148898,-42.254888],[-71.746804,-42.051386],[-71.915734,-40.832339],[-71.680761,-39.808164],[-71.413517,-38.916022],[-70.814664,-38.552995],[-71.118625,-37.576827],[-71.121881,-36.658124],[-70.364769,-36.005089],[-70.388049,-35.169688],[-69.817309,-34.193571],[-69.814777,-33.273886],[-70.074399,-33.09121],[-70.535069,-31.36501],[-69.919008,-30.336339],[-70.01355,-29.367923],[-69.65613,-28.459141],[-69.001235,-27.521214],[-68.295542,-26.89934],[-68.5948,-26.506909],[-68.386001,-26.185016],[-68.417653,-24.518555],[-67.328443,-24.025303],[-66.985234,-22.986349],[-67.106674,-22.735925],[-66.273339,-21.83231],[-64.964892,-22.075862]]]]}} ]} ================================================ FILE: test/fixtures/world/ARG_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -27.05912578 ], [ -56.25, -21.94304553 ], [ -50.625, -21.94304553 ], [ -50.625, -27.05912578 ], [ -56.25, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -31.95216224 ], [ -56.25, -27.05912578 ], [ -50.625, -27.05912578 ], [ -50.625, -31.95216224 ], [ -56.25, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -21.94304553 ], [ -67.5, -16.63619188 ], [ -61.875, -16.63619188 ], [ -61.875, -21.94304553 ], [ -67.5, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -31.95216224 ], [ -67.5, -21.94304553 ], [ -56.25, -21.94304553 ], [ -56.25, -31.95216224 ], [ -67.5, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -40.97989807 ], [ -67.5, -31.95216224 ], [ -56.25, -31.95216224 ], [ -56.25, -40.97989807 ], [ -67.5, -40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -45.08903556 ], [ -67.5, -40.97989807 ], [ -61.875, -40.97989807 ], [ -61.875, -45.08903556 ], [ -67.5, -45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -48.92249926 ], [ -67.5, -45.08903556 ], [ -61.875, -45.08903556 ], [ -61.875, -48.92249926 ], [ -67.5, -48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -52.48278022 ], [ -67.5, -48.92249926 ], [ -61.875, -48.92249926 ], [ -61.875, -52.48278022 ], [ -67.5, -52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -55.77657302 ], [ -67.5, -52.48278022 ], [ -61.875, -52.48278022 ], [ -61.875, -55.77657302 ], [ -67.5, -55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -27.05912578 ], [ -73.125, -21.94304553 ], [ -67.5, -21.94304553 ], [ -67.5, -27.05912578 ], [ -73.125, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -31.95216224 ], [ -73.125, -27.05912578 ], [ -67.5, -27.05912578 ], [ -67.5, -31.95216224 ], [ -73.125, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -36.59788913 ], [ -73.125, -31.95216224 ], [ -67.5, -31.95216224 ], [ -67.5, -36.59788913 ], [ -73.125, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -40.97989807 ], [ -73.125, -36.59788913 ], [ -67.5, -36.59788913 ], [ -67.5, -40.97989807 ], [ -73.125, -40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -45.08903556 ], [ -73.125, -40.97989807 ], [ -67.5, -40.97989807 ], [ -67.5, -45.08903556 ], [ -73.125, -45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -48.92249926 ], [ -73.125, -45.08903556 ], [ -67.5, -45.08903556 ], [ -67.5, -48.92249926 ], [ -73.125, -48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -52.48278022 ], [ -73.125, -48.92249926 ], [ -67.5, -48.92249926 ], [ -67.5, -52.48278022 ], [ -73.125, -52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -55.77657302 ], [ -73.125, -52.48278022 ], [ -67.5, -52.48278022 ], [ -67.5, -55.77657302 ], [ -73.125, -55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, -52.48278022 ], [ -78.75, -48.92249926 ], [ -73.125, -48.92249926 ], [ -73.125, -52.48278022 ], [ -78.75, -52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.5, -55.2 ], [ -66.45, -55.25 ], [ -66.95992, -54.89681 ], [ -67.56244, -54.87001 ], [ -68.63335, -54.8695 ], [ -68.63401, -52.63637 ], [ -68.25, -53.1 ], [ -67.75, -53.85 ], [ -66.45, -54.45 ], [ -65.05, -54.7 ], [ -65.5, -55.2 ] ] ], [ [ [ -64.964892, -22.075862 ], [ -64.377021, -22.798091 ], [ -63.986838, -21.993644 ], [ -62.846468, -22.034985 ], [ -62.685057, -22.249029 ], [ -60.846565, -23.880713 ], [ -60.028966, -24.032796 ], [ -58.807128, -24.771459 ], [ -57.777217, -25.16234 ], [ -57.63366, -25.603657 ], [ -58.618174, -27.123719 ], [ -57.60976, -27.395899 ], [ -56.486702, -27.548499 ], [ -55.695846, -27.387837 ], [ -54.788795, -26.621786 ], [ -54.625291, -25.739255 ], [ -54.13005, -25.547639 ], [ -53.628349, -26.124865 ], [ -53.648735, -26.923473 ], [ -54.490725, -27.474757 ], [ -55.162286, -27.881915 ], [ -56.2909, -28.852761 ], [ -57.625133, -30.216295 ], [ -57.874937, -31.016556 ], [ -58.14244, -32.044504 ], [ -58.132648, -33.040567 ], [ -58.349611, -33.263189 ], [ -58.427074, -33.909454 ], [ -58.495442, -34.43149 ], [ -57.22583, -35.288027 ], [ -57.362359, -35.97739 ], [ -56.737487, -36.413126 ], [ -56.788285, -36.901572 ], [ -57.749157, -38.183871 ], [ -59.231857, -38.72022 ], [ -61.237445, -38.928425 ], [ -62.335957, -38.827707 ], [ -62.125763, -39.424105 ], [ -62.330531, -40.172586 ], [ -62.145994, -40.676897 ], [ -62.745803, -41.028761 ], [ -63.770495, -41.166789 ], [ -64.73209, -40.802677 ], [ -65.118035, -41.064315 ], [ -64.978561, -42.058001 ], [ -64.303408, -42.359016 ], [ -63.755948, -42.043687 ], [ -63.458059, -42.563138 ], [ -64.378804, -42.873558 ], [ -65.181804, -43.495381 ], [ -65.328823, -44.501366 ], [ -65.565269, -45.036786 ], [ -66.509966, -45.039628 ], [ -67.293794, -45.551896 ], [ -67.580546, -46.301773 ], [ -66.597066, -47.033925 ], [ -65.641027, -47.236135 ], [ -65.985088, -48.133289 ], [ -67.166179, -48.697337 ], [ -67.816088, -49.869669 ], [ -68.728745, -50.264218 ], [ -69.138539, -50.73251 ], [ -68.815561, -51.771104 ], [ -68.149995, -52.349983 ], [ -68.571545, -52.299444 ], [ -69.498362, -52.142761 ], [ -71.914804, -52.009022 ], [ -72.329404, -51.425956 ], [ -72.309974, -50.67701 ], [ -72.975747, -50.74145 ], [ -73.328051, -50.378785 ], [ -73.415436, -49.318436 ], [ -72.648247, -48.878618 ], [ -72.331161, -48.244238 ], [ -72.447355, -47.738533 ], [ -71.917258, -46.884838 ], [ -71.552009, -45.560733 ], [ -71.659316, -44.973689 ], [ -71.222779, -44.784243 ], [ -71.329801, -44.407522 ], [ -71.793623, -44.207172 ], [ -71.464056, -43.787611 ], [ -71.915424, -43.408565 ], [ -72.148898, -42.254888 ], [ -71.746804, -42.051386 ], [ -71.915734, -40.832339 ], [ -71.680761, -39.808164 ], [ -71.413517, -38.916022 ], [ -70.814664, -38.552995 ], [ -71.118625, -37.576827 ], [ -71.121881, -36.658124 ], [ -70.364769, -36.005089 ], [ -70.388049, -35.169688 ], [ -69.817309, -34.193571 ], [ -69.814777, -33.273886 ], [ -70.074399, -33.09121 ], [ -70.535069, -31.36501 ], [ -69.919008, -30.336339 ], [ -70.01355, -29.367923 ], [ -69.65613, -28.459141 ], [ -69.001235, -27.521214 ], [ -68.295542, -26.89934 ], [ -68.5948, -26.506909 ], [ -68.386001, -26.185016 ], [ -68.417653, -24.518555 ], [ -67.328443, -24.025303 ], [ -66.985234, -22.986349 ], [ -67.106674, -22.735925 ], [ -66.273339, -21.83231 ], [ -64.964892, -22.075862 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ARM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ARM","properties":{"name":"Armenia"},"geometry":{"type":"Polygon","coordinates":[[[43.582746,41.092143],[44.97248,41.248129],[45.179496,40.985354],[45.560351,40.81229],[45.359175,40.561504],[45.891907,40.218476],[45.610012,39.899994],[46.034534,39.628021],[46.483499,39.464155],[46.50572,38.770605],[46.143623,38.741201],[45.735379,39.319719],[45.739978,39.473999],[45.298145,39.471751],[45.001987,39.740004],[44.79399,39.713003],[44.400009,40.005],[43.656436,40.253564],[43.752658,40.740201],[43.582746,41.092143]]]}} ]} ================================================ FILE: test/fixtures/world/ARM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 36.59788913 ], [ 39.375, 40.97989807 ], [ 45, 40.97989807 ], [ 45, 36.59788913 ], [ 39.375, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 40.97989807 ], [ 39.375, 45.08903556 ], [ 45, 45.08903556 ], [ 45, 40.97989807 ], [ 39.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 36.59788913 ], [ 45, 40.97989807 ], [ 50.625, 40.97989807 ], [ 50.625, 36.59788913 ], [ 45, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 40.97989807 ], [ 45, 45.08903556 ], [ 50.625, 45.08903556 ], [ 50.625, 40.97989807 ], [ 45, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.582746, 41.092143 ], [ 44.97248, 41.248129 ], [ 45.179496, 40.985354 ], [ 45.560351, 40.81229 ], [ 45.359175, 40.561504 ], [ 45.891907, 40.218476 ], [ 45.610012, 39.899994 ], [ 46.034534, 39.628021 ], [ 46.483499, 39.464155 ], [ 46.50572, 38.770605 ], [ 46.143623, 38.741201 ], [ 45.735379, 39.319719 ], [ 45.739978, 39.473999 ], [ 45.298145, 39.471751 ], [ 45.001987, 39.740004 ], [ 44.79399, 39.713003 ], [ 44.400009, 40.005 ], [ 43.656436, 40.253564 ], [ 43.752658, 40.740201 ], [ 43.582746, 41.092143 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ATF.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ATF","properties":{"name":"French Southern and Antarctic Lands"},"geometry":{"type":"Polygon","coordinates":[[[68.935,-48.625],[69.58,-48.94],[70.525,-49.065],[70.56,-49.255],[70.28,-49.71],[68.745,-49.775],[68.72,-49.2425],[68.8675,-48.83],[68.935,-48.625]]]}} ]} ================================================ FILE: test/fixtures/world/ATF_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, -48.92249926 ], [ 67.5, -45.08903556 ], [ 73.125, -45.08903556 ], [ 73.125, -48.92249926 ], [ 67.5, -48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, -52.48278022 ], [ 67.5, -48.92249926 ], [ 73.125, -48.92249926 ], [ 73.125, -52.48278022 ], [ 67.5, -52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.935, -48.625 ], [ 69.58, -48.94 ], [ 70.525, -49.065 ], [ 70.56, -49.255 ], [ 70.28, -49.71 ], [ 68.745, -49.775 ], [ 68.72, -49.2425 ], [ 68.8675, -48.83 ], [ 68.935, -48.625 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/AUS.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"AUS","properties":{"name":"Australia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.397978,-40.792549],[146.364121,-41.137695],[146.908584,-41.000546],[147.689259,-40.808258],[148.289068,-40.875438],[148.359865,-42.062445],[148.017301,-42.407024],[147.914052,-43.211522],[147.564564,-42.937689],[146.870343,-43.634597],[146.663327,-43.580854],[146.048378,-43.549745],[145.43193,-42.693776],[145.29509,-42.03361],[144.718071,-41.162552],[144.743755,-40.703975],[145.397978,-40.792549]]],[[[143.561811,-13.763656],[143.922099,-14.548311],[144.563714,-14.171176],[144.894908,-14.594458],[145.374724,-14.984976],[145.271991,-15.428205],[145.48526,-16.285672],[145.637033,-16.784918],[145.888904,-16.906926],[146.160309,-17.761655],[146.063674,-18.280073],[146.387478,-18.958274],[147.471082,-19.480723],[148.177602,-19.955939],[148.848414,-20.39121],[148.717465,-20.633469],[149.28942,-21.260511],[149.678337,-22.342512],[150.077382,-22.122784],[150.482939,-22.556142],[150.727265,-22.402405],[150.899554,-23.462237],[151.609175,-24.076256],[152.07354,-24.457887],[152.855197,-25.267501],[153.136162,-26.071173],[153.161949,-26.641319],[153.092909,-27.2603],[153.569469,-28.110067],[153.512108,-28.995077],[153.339095,-29.458202],[153.069241,-30.35024],[153.089602,-30.923642],[152.891578,-31.640446],[152.450002,-32.550003],[151.709117,-33.041342],[151.343972,-33.816023],[151.010555,-34.31036],[150.714139,-35.17346],[150.32822,-35.671879],[150.075212,-36.420206],[149.946124,-37.109052],[149.997284,-37.425261],[149.423882,-37.772681],[148.304622,-37.809061],[147.381733,-38.219217],[146.922123,-38.606532],[146.317922,-39.035757],[145.489652,-38.593768],[144.876976,-38.417448],[145.032212,-37.896188],[144.485682,-38.085324],[143.609974,-38.809465],[142.745427,-38.538268],[142.17833,-38.380034],[141.606582,-38.308514],[140.638579,-38.019333],[139.992158,-37.402936],[139.806588,-36.643603],[139.574148,-36.138362],[139.082808,-35.732754],[138.120748,-35.612296],[138.449462,-35.127261],[138.207564,-34.384723],[137.71917,-35.076825],[136.829406,-35.260535],[137.352371,-34.707339],[137.503886,-34.130268],[137.890116,-33.640479],[137.810328,-32.900007],[136.996837,-33.752771],[136.372069,-34.094766],[135.989043,-34.890118],[135.208213,-34.47867],[135.239218,-33.947953],[134.613417,-33.222778],[134.085904,-32.848072],[134.273903,-32.617234],[132.990777,-32.011224],[132.288081,-31.982647],[131.326331,-31.495803],[129.535794,-31.590423],[128.240938,-31.948489],[127.102867,-32.282267],[126.148714,-32.215966],[125.088623,-32.728751],[124.221648,-32.959487],[124.028947,-33.483847],[123.659667,-33.890179],[122.811036,-33.914467],[122.183064,-34.003402],[121.299191,-33.821036],[120.580268,-33.930177],[119.893695,-33.976065],[119.298899,-34.509366],[119.007341,-34.464149],[118.505718,-34.746819],[118.024972,-35.064733],[117.295507,-35.025459],[116.625109,-35.025097],[115.564347,-34.386428],[115.026809,-34.196517],[115.048616,-33.623425],[115.545123,-33.487258],[115.714674,-33.259572],[115.679379,-32.900369],[115.801645,-32.205062],[115.689611,-31.612437],[115.160909,-30.601594],[114.997043,-30.030725],[115.040038,-29.461095],[114.641974,-28.810231],[114.616498,-28.516399],[114.173579,-28.118077],[114.048884,-27.334765],[113.477498,-26.543134],[113.338953,-26.116545],[113.778358,-26.549025],[113.440962,-25.621278],[113.936901,-25.911235],[114.232852,-26.298446],[114.216161,-25.786281],[113.721255,-24.998939],[113.625344,-24.683971],[113.393523,-24.384764],[113.502044,-23.80635],[113.706993,-23.560215],[113.843418,-23.059987],[113.736552,-22.475475],[114.149756,-21.755881],[114.225307,-22.517488],[114.647762,-21.82952],[115.460167,-21.495173],[115.947373,-21.068688],[116.711615,-20.701682],[117.166316,-20.623599],[117.441545,-20.746899],[118.229559,-20.374208],[118.836085,-20.263311],[118.987807,-20.044203],[119.252494,-19.952942],[119.805225,-19.976506],[120.85622,-19.683708],[121.399856,-19.239756],[121.655138,-18.705318],[122.241665,-18.197649],[122.286624,-17.798603],[122.312772,-17.254967],[123.012574,-16.4052],[123.433789,-17.268558],[123.859345,-17.069035],[123.503242,-16.596506],[123.817073,-16.111316],[124.258287,-16.327944],[124.379726,-15.56706],[124.926153,-15.0751],[125.167275,-14.680396],[125.670087,-14.51007],[125.685796,-14.230656],[126.125149,-14.347341],[126.142823,-14.095987],[126.582589,-13.952791],[127.065867,-13.817968],[127.804633,-14.276906],[128.35969,-14.86917],[128.985543,-14.875991],[129.621473,-14.969784],[129.4096,-14.42067],[129.888641,-13.618703],[130.339466,-13.357376],[130.183506,-13.10752],[130.617795,-12.536392],[131.223495,-12.183649],[131.735091,-12.302453],[132.575298,-12.114041],[132.557212,-11.603012],[131.824698,-11.273782],[132.357224,-11.128519],[133.019561,-11.376411],[133.550846,-11.786515],[134.393068,-12.042365],[134.678632,-11.941183],[135.298491,-12.248606],[135.882693,-11.962267],[136.258381,-12.049342],[136.492475,-11.857209],[136.95162,-12.351959],[136.685125,-12.887223],[136.305407,-13.29123],[135.961758,-13.324509],[136.077617,-13.724278],[135.783836,-14.223989],[135.428664,-14.715432],[135.500184,-14.997741],[136.295175,-15.550265],[137.06536,-15.870762],[137.580471,-16.215082],[138.303217,-16.807604],[138.585164,-16.806622],[139.108543,-17.062679],[139.260575,-17.371601],[140.215245,-17.710805],[140.875463,-17.369069],[141.07111,-16.832047],[141.274095,-16.38887],[141.398222,-15.840532],[141.702183,-15.044921],[141.56338,-14.561333],[141.63552,-14.270395],[141.519869,-13.698078],[141.65092,-12.944688],[141.842691,-12.741548],[141.68699,-12.407614],[141.928629,-11.877466],[142.118488,-11.328042],[142.143706,-11.042737],[142.51526,-10.668186],[142.79731,-11.157355],[142.866763,-11.784707],[143.115947,-11.90563],[143.158632,-12.325656],[143.522124,-12.834358],[143.597158,-13.400422],[143.561811,-13.763656]]]]}} ]} ================================================ FILE: test/fixtures/world/AUS_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, -21.94304553 ], [ 112.5, -16.63619188 ], [ 118.125, -16.63619188 ], [ 118.125, -21.94304553 ], [ 112.5, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, -31.95216224 ], [ 112.5, -21.94304553 ], [ 123.75, -21.94304553 ], [ 123.75, -31.95216224 ], [ 112.5, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, -36.59788913 ], [ 112.5, -31.95216224 ], [ 118.125, -31.95216224 ], [ 118.125, -36.59788913 ], [ 112.5, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, -16.63619188 ], [ 118.125, -11.17840187 ], [ 123.75, -11.17840187 ], [ 123.75, -16.63619188 ], [ 118.125, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, -21.94304553 ], [ 118.125, -16.63619188 ], [ 123.75, -16.63619188 ], [ 123.75, -21.94304553 ], [ 118.125, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, -36.59788913 ], [ 118.125, -31.95216224 ], [ 123.75, -31.95216224 ], [ 123.75, -36.59788913 ], [ 118.125, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, -21.94304553 ], [ 123.75, -11.17840187 ], [ 135, -11.17840187 ], [ 135, -21.94304553 ], [ 123.75, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, -31.95216224 ], [ 123.75, -21.94304553 ], [ 135, -21.94304553 ], [ 135, -31.95216224 ], [ 123.75, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, -36.59788913 ], [ 123.75, -31.95216224 ], [ 129.375, -31.95216224 ], [ 129.375, -36.59788913 ], [ 123.75, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, -11.17840187 ], [ 129.375, -5.61598582 ], [ 135, -5.61598582 ], [ 135, -11.17840187 ], [ 129.375, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, -36.59788913 ], [ 129.375, -31.95216224 ], [ 135, -31.95216224 ], [ 135, -36.59788913 ], [ 129.375, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, -21.94304553 ], [ 135, -11.17840187 ], [ 146.25, -11.17840187 ], [ 146.25, -21.94304553 ], [ 135, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, -31.95216224 ], [ 135, -21.94304553 ], [ 146.25, -21.94304553 ], [ 146.25, -31.95216224 ], [ 135, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, -40.97989807 ], [ 135, -31.95216224 ], [ 146.25, -31.95216224 ], [ 146.25, -40.97989807 ], [ 135, -40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, -11.17840187 ], [ 140.625, -5.61598582 ], [ 146.25, -5.61598582 ], [ 146.25, -11.17840187 ], [ 140.625, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, -45.08903556 ], [ 140.625, -40.97989807 ], [ 146.25, -40.97989807 ], [ 146.25, -45.08903556 ], [ 140.625, -45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, -21.94304553 ], [ 146.25, -16.63619188 ], [ 151.875, -16.63619188 ], [ 151.875, -21.94304553 ], [ 146.25, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, -31.95216224 ], [ 146.25, -21.94304553 ], [ 157.5, -21.94304553 ], [ 157.5, -31.95216224 ], [ 146.25, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, -36.59788913 ], [ 146.25, -31.95216224 ], [ 151.875, -31.95216224 ], [ 151.875, -36.59788913 ], [ 146.25, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, -40.97989807 ], [ 146.25, -36.59788913 ], [ 151.875, -36.59788913 ], [ 151.875, -40.97989807 ], [ 146.25, -40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, -45.08903556 ], [ 146.25, -40.97989807 ], [ 151.875, -40.97989807 ], [ 151.875, -45.08903556 ], [ 146.25, -45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, -36.59788913 ], [ 151.875, -31.95216224 ], [ 157.5, -31.95216224 ], [ 157.5, -36.59788913 ], [ 151.875, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.397978, -40.792549 ], [ 146.364121, -41.137695 ], [ 146.908584, -41.000546 ], [ 147.689259, -40.808258 ], [ 148.289068, -40.875438 ], [ 148.359865, -42.062445 ], [ 148.017301, -42.407024 ], [ 147.914052, -43.211522 ], [ 147.564564, -42.937689 ], [ 146.870343, -43.634597 ], [ 146.663327, -43.580854 ], [ 146.048378, -43.549745 ], [ 145.43193, -42.693776 ], [ 145.29509, -42.03361 ], [ 144.718071, -41.162552 ], [ 144.743755, -40.703975 ], [ 145.397978, -40.792549 ] ] ], [ [ [ 143.561811, -13.763656 ], [ 143.922099, -14.548311 ], [ 144.563714, -14.171176 ], [ 144.894908, -14.594458 ], [ 145.374724, -14.984976 ], [ 145.271991, -15.428205 ], [ 145.48526, -16.285672 ], [ 145.637033, -16.784918 ], [ 145.888904, -16.906926 ], [ 146.160309, -17.761655 ], [ 146.063674, -18.280073 ], [ 146.387478, -18.958274 ], [ 147.471082, -19.480723 ], [ 148.177602, -19.955939 ], [ 148.848414, -20.39121 ], [ 148.717465, -20.633469 ], [ 149.28942, -21.260511 ], [ 149.678337, -22.342512 ], [ 150.077382, -22.122784 ], [ 150.482939, -22.556142 ], [ 150.727265, -22.402405 ], [ 150.899554, -23.462237 ], [ 151.609175, -24.076256 ], [ 152.07354, -24.457887 ], [ 152.855197, -25.267501 ], [ 153.136162, -26.071173 ], [ 153.161949, -26.641319 ], [ 153.092909, -27.2603 ], [ 153.569469, -28.110067 ], [ 153.512108, -28.995077 ], [ 153.339095, -29.458202 ], [ 153.069241, -30.35024 ], [ 153.089602, -30.923642 ], [ 152.891578, -31.640446 ], [ 152.450002, -32.550003 ], [ 151.709117, -33.041342 ], [ 151.343972, -33.816023 ], [ 151.010555, -34.31036 ], [ 150.714139, -35.17346 ], [ 150.32822, -35.671879 ], [ 150.075212, -36.420206 ], [ 149.946124, -37.109052 ], [ 149.997284, -37.425261 ], [ 149.423882, -37.772681 ], [ 148.304622, -37.809061 ], [ 147.381733, -38.219217 ], [ 146.922123, -38.606532 ], [ 146.317922, -39.035757 ], [ 145.489652, -38.593768 ], [ 144.876976, -38.417448 ], [ 145.032212, -37.896188 ], [ 144.485682, -38.085324 ], [ 143.609974, -38.809465 ], [ 142.745427, -38.538268 ], [ 142.17833, -38.380034 ], [ 141.606582, -38.308514 ], [ 140.638579, -38.019333 ], [ 139.992158, -37.402936 ], [ 139.806588, -36.643603 ], [ 139.574148, -36.138362 ], [ 139.082808, -35.732754 ], [ 138.120748, -35.612296 ], [ 138.449462, -35.127261 ], [ 138.207564, -34.384723 ], [ 137.71917, -35.076825 ], [ 136.829406, -35.260535 ], [ 137.352371, -34.707339 ], [ 137.503886, -34.130268 ], [ 137.890116, -33.640479 ], [ 137.810328, -32.900007 ], [ 136.996837, -33.752771 ], [ 136.372069, -34.094766 ], [ 135.989043, -34.890118 ], [ 135.208213, -34.47867 ], [ 135.239218, -33.947953 ], [ 134.613417, -33.222778 ], [ 134.085904, -32.848072 ], [ 134.273903, -32.617234 ], [ 132.990777, -32.011224 ], [ 132.288081, -31.982647 ], [ 131.326331, -31.495803 ], [ 129.535794, -31.590423 ], [ 128.240938, -31.948489 ], [ 127.102867, -32.282267 ], [ 126.148714, -32.215966 ], [ 125.088623, -32.728751 ], [ 124.221648, -32.959487 ], [ 124.028947, -33.483847 ], [ 123.659667, -33.890179 ], [ 122.811036, -33.914467 ], [ 122.183064, -34.003402 ], [ 121.299191, -33.821036 ], [ 120.580268, -33.930177 ], [ 119.893695, -33.976065 ], [ 119.298899, -34.509366 ], [ 119.007341, -34.464149 ], [ 118.505718, -34.746819 ], [ 118.024972, -35.064733 ], [ 117.295507, -35.025459 ], [ 116.625109, -35.025097 ], [ 115.564347, -34.386428 ], [ 115.026809, -34.196517 ], [ 115.048616, -33.623425 ], [ 115.545123, -33.487258 ], [ 115.714674, -33.259572 ], [ 115.679379, -32.900369 ], [ 115.801645, -32.205062 ], [ 115.689611, -31.612437 ], [ 115.160909, -30.601594 ], [ 114.997043, -30.030725 ], [ 115.040038, -29.461095 ], [ 114.641974, -28.810231 ], [ 114.616498, -28.516399 ], [ 114.173579, -28.118077 ], [ 114.048884, -27.334765 ], [ 113.477498, -26.543134 ], [ 113.338953, -26.116545 ], [ 113.778358, -26.549025 ], [ 113.440962, -25.621278 ], [ 113.936901, -25.911235 ], [ 114.232852, -26.298446 ], [ 114.216161, -25.786281 ], [ 113.721255, -24.998939 ], [ 113.625344, -24.683971 ], [ 113.393523, -24.384764 ], [ 113.502044, -23.80635 ], [ 113.706993, -23.560215 ], [ 113.843418, -23.059987 ], [ 113.736552, -22.475475 ], [ 114.149756, -21.755881 ], [ 114.225307, -22.517488 ], [ 114.647762, -21.82952 ], [ 115.460167, -21.495173 ], [ 115.947373, -21.068688 ], [ 116.711615, -20.701682 ], [ 117.166316, -20.623599 ], [ 117.441545, -20.746899 ], [ 118.229559, -20.374208 ], [ 118.836085, -20.263311 ], [ 118.987807, -20.044203 ], [ 119.252494, -19.952942 ], [ 119.805225, -19.976506 ], [ 120.85622, -19.683708 ], [ 121.399856, -19.239756 ], [ 121.655138, -18.705318 ], [ 122.241665, -18.197649 ], [ 122.286624, -17.798603 ], [ 122.312772, -17.254967 ], [ 123.012574, -16.4052 ], [ 123.433789, -17.268558 ], [ 123.859345, -17.069035 ], [ 123.503242, -16.596506 ], [ 123.817073, -16.111316 ], [ 124.258287, -16.327944 ], [ 124.379726, -15.56706 ], [ 124.926153, -15.0751 ], [ 125.167275, -14.680396 ], [ 125.670087, -14.51007 ], [ 125.685796, -14.230656 ], [ 126.125149, -14.347341 ], [ 126.142823, -14.095987 ], [ 126.582589, -13.952791 ], [ 127.065867, -13.817968 ], [ 127.804633, -14.276906 ], [ 128.35969, -14.86917 ], [ 128.985543, -14.875991 ], [ 129.621473, -14.969784 ], [ 129.4096, -14.42067 ], [ 129.888641, -13.618703 ], [ 130.339466, -13.357376 ], [ 130.183506, -13.10752 ], [ 130.617795, -12.536392 ], [ 131.223495, -12.183649 ], [ 131.735091, -12.302453 ], [ 132.575298, -12.114041 ], [ 132.557212, -11.603012 ], [ 131.824698, -11.273782 ], [ 132.357224, -11.128519 ], [ 133.019561, -11.376411 ], [ 133.550846, -11.786515 ], [ 134.393068, -12.042365 ], [ 134.678632, -11.941183 ], [ 135.298491, -12.248606 ], [ 135.882693, -11.962267 ], [ 136.258381, -12.049342 ], [ 136.492475, -11.857209 ], [ 136.95162, -12.351959 ], [ 136.685125, -12.887223 ], [ 136.305407, -13.29123 ], [ 135.961758, -13.324509 ], [ 136.077617, -13.724278 ], [ 135.783836, -14.223989 ], [ 135.428664, -14.715432 ], [ 135.500184, -14.997741 ], [ 136.295175, -15.550265 ], [ 137.06536, -15.870762 ], [ 137.580471, -16.215082 ], [ 138.303217, -16.807604 ], [ 138.585164, -16.806622 ], [ 139.108543, -17.062679 ], [ 139.260575, -17.371601 ], [ 140.215245, -17.710805 ], [ 140.875463, -17.369069 ], [ 141.07111, -16.832047 ], [ 141.274095, -16.38887 ], [ 141.398222, -15.840532 ], [ 141.702183, -15.044921 ], [ 141.56338, -14.561333 ], [ 141.63552, -14.270395 ], [ 141.519869, -13.698078 ], [ 141.65092, -12.944688 ], [ 141.842691, -12.741548 ], [ 141.68699, -12.407614 ], [ 141.928629, -11.877466 ], [ 142.118488, -11.328042 ], [ 142.143706, -11.042737 ], [ 142.51526, -10.668186 ], [ 142.79731, -11.157355 ], [ 142.866763, -11.784707 ], [ 143.115947, -11.90563 ], [ 143.158632, -12.325656 ], [ 143.522124, -12.834358 ], [ 143.597158, -13.400422 ], [ 143.561811, -13.763656 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/AUT.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"AUT","properties":{"name":"Austria"},"geometry":{"type":"Polygon","coordinates":[[[16.979667,48.123497],[16.903754,47.714866],[16.340584,47.712902],[16.534268,47.496171],[16.202298,46.852386],[16.011664,46.683611],[15.137092,46.658703],[14.632472,46.431817],[13.806475,46.509306],[12.376485,46.767559],[12.153088,47.115393],[11.164828,46.941579],[11.048556,46.751359],[10.442701,46.893546],[9.932448,46.920728],[9.47997,47.10281],[9.632932,47.347601],[9.594226,47.525058],[9.896068,47.580197],[10.402084,47.302488],[10.544504,47.566399],[11.426414,47.523766],[12.141357,47.703083],[12.62076,47.672388],[12.932627,47.467646],[13.025851,47.637584],[12.884103,48.289146],[13.243357,48.416115],[13.595946,48.877172],[14.338898,48.555305],[14.901447,48.964402],[15.253416,49.039074],[16.029647,48.733899],[16.499283,48.785808],[16.960288,48.596982],[16.879983,48.470013],[16.979667,48.123497]]]}} ]} ================================================ FILE: test/fixtures/world/AUT_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 45.08903556 ], [ 11.25, 48.92249926 ], [ 16.875, 48.92249926 ], [ 16.875, 45.08903556 ], [ 11.25, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 48.92249926 ], [ 11.25, 52.48278022 ], [ 16.875, 52.48278022 ], [ 16.875, 48.92249926 ], [ 11.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 45.08903556 ], [ 16.875, 48.92249926 ], [ 22.5, 48.92249926 ], [ 22.5, 45.08903556 ], [ 16.875, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 45.08903556 ], [ 5.625, 48.92249926 ], [ 11.25, 48.92249926 ], [ 11.25, 45.08903556 ], [ 5.625, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.979667, 48.123497 ], [ 16.903754, 47.714866 ], [ 16.340584, 47.712902 ], [ 16.534268, 47.496171 ], [ 16.202298, 46.852386 ], [ 16.011664, 46.683611 ], [ 15.137092, 46.658703 ], [ 14.632472, 46.431817 ], [ 13.806475, 46.509306 ], [ 12.376485, 46.767559 ], [ 12.153088, 47.115393 ], [ 11.164828, 46.941579 ], [ 11.048556, 46.751359 ], [ 10.442701, 46.893546 ], [ 9.932448, 46.920728 ], [ 9.47997, 47.10281 ], [ 9.632932, 47.347601 ], [ 9.594226, 47.525058 ], [ 9.896068, 47.580197 ], [ 10.402084, 47.302488 ], [ 10.544504, 47.566399 ], [ 11.426414, 47.523766 ], [ 12.141357, 47.703083 ], [ 12.62076, 47.672388 ], [ 12.932627, 47.467646 ], [ 13.025851, 47.637584 ], [ 12.884103, 48.289146 ], [ 13.243357, 48.416115 ], [ 13.595946, 48.877172 ], [ 14.338898, 48.555305 ], [ 14.901447, 48.964402 ], [ 15.253416, 49.039074 ], [ 16.029647, 48.733899 ], [ 16.499283, 48.785808 ], [ 16.960288, 48.596982 ], [ 16.879983, 48.470013 ], [ 16.979667, 48.123497 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/AZE.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"AZE","properties":{"name":"Azerbaijan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.001987,39.740004],[45.298145,39.471751],[45.739978,39.473999],[45.735379,39.319719],[46.143623,38.741201],[45.457722,38.874139],[44.952688,39.335765],[44.79399,39.713003],[45.001987,39.740004]]],[[[47.373315,41.219732],[47.815666,41.151416],[47.987283,41.405819],[48.584353,41.80887],[49.110264,41.282287],[49.618915,40.572924],[50.08483,40.526157],[50.392821,40.256561],[49.569202,40.176101],[49.395259,39.399482],[49.223228,39.049219],[48.856532,38.815486],[48.883249,38.320245],[48.634375,38.270378],[48.010744,38.794015],[48.355529,39.288765],[48.060095,39.582235],[47.685079,39.508364],[46.50572,38.770605],[46.483499,39.464155],[46.034534,39.628021],[45.610012,39.899994],[45.891907,40.218476],[45.359175,40.561504],[45.560351,40.81229],[45.179496,40.985354],[44.97248,41.248129],[45.217426,41.411452],[45.962601,41.123873],[46.501637,41.064445],[46.637908,41.181673],[46.145432,41.722802],[46.404951,41.860675],[46.686071,41.827137],[47.373315,41.219732]]]]}} ]} ================================================ FILE: test/fixtures/world/AZE_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 36.59788913 ], [ 39.375, 40.97989807 ], [ 45, 40.97989807 ], [ 45, 36.59788913 ], [ 39.375, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 40.97989807 ], [ 39.375, 45.08903556 ], [ 45, 45.08903556 ], [ 45, 40.97989807 ], [ 39.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 36.59788913 ], [ 45, 40.97989807 ], [ 50.625, 40.97989807 ], [ 50.625, 36.59788913 ], [ 45, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 40.97989807 ], [ 45, 45.08903556 ], [ 50.625, 45.08903556 ], [ 50.625, 40.97989807 ], [ 45, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.001987, 39.740004 ], [ 45.298145, 39.471751 ], [ 45.739978, 39.473999 ], [ 45.735379, 39.319719 ], [ 46.143623, 38.741201 ], [ 45.457722, 38.874139 ], [ 44.952688, 39.335765 ], [ 44.79399, 39.713003 ], [ 45.001987, 39.740004 ] ] ], [ [ [ 47.373315, 41.219732 ], [ 47.815666, 41.151416 ], [ 47.987283, 41.405819 ], [ 48.584353, 41.80887 ], [ 49.110264, 41.282287 ], [ 49.618915, 40.572924 ], [ 50.08483, 40.526157 ], [ 50.392821, 40.256561 ], [ 49.569202, 40.176101 ], [ 49.395259, 39.399482 ], [ 49.223228, 39.049219 ], [ 48.856532, 38.815486 ], [ 48.883249, 38.320245 ], [ 48.634375, 38.270378 ], [ 48.010744, 38.794015 ], [ 48.355529, 39.288765 ], [ 48.060095, 39.582235 ], [ 47.685079, 39.508364 ], [ 46.50572, 38.770605 ], [ 46.483499, 39.464155 ], [ 46.034534, 39.628021 ], [ 45.610012, 39.899994 ], [ 45.891907, 40.218476 ], [ 45.359175, 40.561504 ], [ 45.560351, 40.81229 ], [ 45.179496, 40.985354 ], [ 44.97248, 41.248129 ], [ 45.217426, 41.411452 ], [ 45.962601, 41.123873 ], [ 46.501637, 41.064445 ], [ 46.637908, 41.181673 ], [ 46.145432, 41.722802 ], [ 46.404951, 41.860675 ], [ 46.686071, 41.827137 ], [ 47.373315, 41.219732 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BDI.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BDI","properties":{"name":"Burundi"},"geometry":{"type":"Polygon","coordinates":[[[29.339998,-4.499983],[29.276384,-3.293907],[29.024926,-2.839258],[29.632176,-2.917858],[29.938359,-2.348487],[30.469696,-2.413858],[30.527677,-2.807632],[30.743013,-3.034285],[30.752263,-3.35933],[30.50556,-3.568567],[30.116333,-4.090138],[29.753512,-4.452389],[29.339998,-4.499983]]]}} ]} ================================================ FILE: test/fixtures/world/BDI_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -5.61598582 ], [ 28.125, 0 ], [ 33.75, 0 ], [ 33.75, -5.61598582 ], [ 28.125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.339998, -4.499983 ], [ 29.276384, -3.293907 ], [ 29.024926, -2.839258 ], [ 29.632176, -2.917858 ], [ 29.938359, -2.348487 ], [ 30.469696, -2.413858 ], [ 30.527677, -2.807632 ], [ 30.743013, -3.034285 ], [ 30.752263, -3.35933 ], [ 30.50556, -3.568567 ], [ 30.116333, -4.090138 ], [ 29.753512, -4.452389 ], [ 29.339998, -4.499983 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BEL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BEL","properties":{"name":"Belgium"},"geometry":{"type":"Polygon","coordinates":[[[3.314971,51.345781],[4.047071,51.267259],[4.973991,51.475024],[5.606976,51.037298],[6.156658,50.803721],[6.043073,50.128052],[5.782417,50.090328],[5.674052,49.529484],[4.799222,49.985373],[4.286023,49.907497],[3.588184,50.378992],[3.123252,50.780363],[2.658422,50.796848],[2.513573,51.148506],[3.314971,51.345781]]]}} ]} ================================================ FILE: test/fixtures/world/BEL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 48.92249926 ], [ 0, 52.48278022 ], [ 5.625, 52.48278022 ], [ 5.625, 48.92249926 ], [ 0, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 48.92249926 ], [ 5.625, 52.48278022 ], [ 11.25, 52.48278022 ], [ 11.25, 48.92249926 ], [ 5.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.314971, 51.345781 ], [ 4.047071, 51.267259 ], [ 4.973991, 51.475024 ], [ 5.606976, 51.037298 ], [ 6.156658, 50.803721 ], [ 6.043073, 50.128052 ], [ 5.782417, 50.090328 ], [ 5.674052, 49.529484 ], [ 4.799222, 49.985373 ], [ 4.286023, 49.907497 ], [ 3.588184, 50.378992 ], [ 3.123252, 50.780363 ], [ 2.658422, 50.796848 ], [ 2.513573, 51.148506 ], [ 3.314971, 51.345781 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BEN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BEN","properties":{"name":"Benin"},"geometry":{"type":"Polygon","coordinates":[[[2.691702,6.258817],[1.865241,6.142158],[1.618951,6.832038],[1.664478,9.12859],[1.463043,9.334624],[1.425061,9.825395],[1.077795,10.175607],[0.772336,10.470808],[0.899563,10.997339],[1.24347,11.110511],[1.447178,11.547719],[1.935986,11.64115],[2.154474,11.94015],[2.490164,12.233052],[2.848643,12.235636],[3.61118,11.660167],[3.572216,11.327939],[3.797112,10.734746],[3.60007,10.332186],[3.705438,10.06321],[3.220352,9.444153],[2.912308,9.137608],[2.723793,8.506845],[2.749063,7.870734],[2.691702,6.258817]]]}} ]} ================================================ FILE: test/fixtures/world/BEN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 11.17840187 ], [ 0, 16.63619188 ], [ 5.625, 16.63619188 ], [ 5.625, 11.17840187 ], [ 0, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 5.61598582 ], [ 0, 11.17840187 ], [ 5.625, 11.17840187 ], [ 5.625, 5.61598582 ], [ 0, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.691702, 6.258817 ], [ 1.865241, 6.142158 ], [ 1.618951, 6.832038 ], [ 1.664478, 9.12859 ], [ 1.463043, 9.334624 ], [ 1.425061, 9.825395 ], [ 1.077795, 10.175607 ], [ 0.772336, 10.470808 ], [ 0.899563, 10.997339 ], [ 1.24347, 11.110511 ], [ 1.447178, 11.547719 ], [ 1.935986, 11.64115 ], [ 2.154474, 11.94015 ], [ 2.490164, 12.233052 ], [ 2.848643, 12.235636 ], [ 3.61118, 11.660167 ], [ 3.572216, 11.327939 ], [ 3.797112, 10.734746 ], [ 3.60007, 10.332186 ], [ 3.705438, 10.06321 ], [ 3.220352, 9.444153 ], [ 2.912308, 9.137608 ], [ 2.723793, 8.506845 ], [ 2.749063, 7.870734 ], [ 2.691702, 6.258817 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BFA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BFA","properties":{"name":"Burkina Faso"},"geometry":{"type":"Polygon","coordinates":[[[-2.827496,9.642461],[-3.511899,9.900326],[-3.980449,9.862344],[-4.330247,9.610835],[-4.779884,9.821985],[-4.954653,10.152714],[-5.404342,10.370737],[-5.470565,10.95127],[-5.197843,11.375146],[-5.220942,11.713859],[-4.427166,12.542646],[-4.280405,13.228444],[-4.006391,13.472485],[-3.522803,13.337662],[-3.103707,13.541267],[-2.967694,13.79815],[-2.191825,14.246418],[-2.001035,14.559008],[-1.066363,14.973815],[-0.515854,15.116158],[-0.266257,14.924309],[0.374892,14.928908],[0.295646,14.444235],[0.429928,13.988733],[0.993046,13.33575],[1.024103,12.851826],[2.177108,12.625018],[2.154474,11.94015],[1.935986,11.64115],[1.447178,11.547719],[1.24347,11.110511],[0.899563,10.997339],[0.023803,11.018682],[-0.438702,11.098341],[-0.761576,10.93693],[-1.203358,11.009819],[-2.940409,10.96269],[-2.963896,10.395335],[-2.827496,9.642461]]]}} ]} ================================================ FILE: test/fixtures/world/BFA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 11.17840187 ], [ -5.625, 16.63619188 ], [ 0, 16.63619188 ], [ 0, 11.17840187 ], [ -5.625, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 5.61598582 ], [ -5.625, 11.17840187 ], [ 0, 11.17840187 ], [ 0, 5.61598582 ], [ -5.625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 11.17840187 ], [ 0, 16.63619188 ], [ 5.625, 16.63619188 ], [ 5.625, 11.17840187 ], [ 0, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 5.61598582 ], [ 0, 11.17840187 ], [ 5.625, 11.17840187 ], [ 5.625, 5.61598582 ], [ 0, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.827496, 9.642461 ], [ -3.511899, 9.900326 ], [ -3.980449, 9.862344 ], [ -4.330247, 9.610835 ], [ -4.779884, 9.821985 ], [ -4.954653, 10.152714 ], [ -5.404342, 10.370737 ], [ -5.470565, 10.95127 ], [ -5.197843, 11.375146 ], [ -5.220942, 11.713859 ], [ -4.427166, 12.542646 ], [ -4.280405, 13.228444 ], [ -4.006391, 13.472485 ], [ -3.522803, 13.337662 ], [ -3.103707, 13.541267 ], [ -2.967694, 13.79815 ], [ -2.191825, 14.246418 ], [ -2.001035, 14.559008 ], [ -1.066363, 14.973815 ], [ -0.515854, 15.116158 ], [ -0.266257, 14.924309 ], [ 0.374892, 14.928908 ], [ 0.295646, 14.444235 ], [ 0.429928, 13.988733 ], [ 0.993046, 13.33575 ], [ 1.024103, 12.851826 ], [ 2.177108, 12.625018 ], [ 2.154474, 11.94015 ], [ 1.935986, 11.64115 ], [ 1.447178, 11.547719 ], [ 1.24347, 11.110511 ], [ 0.899563, 10.997339 ], [ 0.023803, 11.018682 ], [ -0.438702, 11.098341 ], [ -0.761576, 10.93693 ], [ -1.203358, 11.009819 ], [ -2.940409, 10.96269 ], [ -2.963896, 10.395335 ], [ -2.827496, 9.642461 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BGD.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BGD","properties":{"name":"Bangladesh"},"geometry":{"type":"Polygon","coordinates":[[[92.672721,22.041239],[92.652257,21.324048],[92.303234,21.475485],[92.368554,20.670883],[92.082886,21.192195],[92.025215,21.70157],[91.834891,22.182936],[91.417087,22.765019],[90.496006,22.805017],[90.586957,22.392794],[90.272971,21.836368],[89.847467,22.039146],[89.70205,21.857116],[89.418863,21.966179],[89.031961,22.055708],[88.876312,22.879146],[88.52977,23.631142],[88.69994,24.233715],[88.084422,24.501657],[88.306373,24.866079],[88.931554,25.238692],[88.209789,25.768066],[88.563049,26.446526],[89.355094,26.014407],[89.832481,25.965082],[89.920693,25.26975],[90.872211,25.132601],[91.799596,25.147432],[92.376202,24.976693],[91.915093,24.130414],[91.46773,24.072639],[91.158963,23.503527],[91.706475,22.985264],[91.869928,23.624346],[92.146035,23.627499],[92.672721,22.041239]]]}} ]} ================================================ FILE: test/fixtures/world/BGD_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 16.63619188 ], [ 84.375, 21.94304553 ], [ 90, 21.94304553 ], [ 90, 16.63619188 ], [ 84.375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 21.94304553 ], [ 84.375, 27.05912578 ], [ 90, 27.05912578 ], [ 90, 21.94304553 ], [ 84.375, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 16.63619188 ], [ 90, 21.94304553 ], [ 95.625, 21.94304553 ], [ 95.625, 16.63619188 ], [ 90, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 21.94304553 ], [ 90, 27.05912578 ], [ 95.625, 27.05912578 ], [ 95.625, 21.94304553 ], [ 90, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.672721, 22.041239 ], [ 92.652257, 21.324048 ], [ 92.303234, 21.475485 ], [ 92.368554, 20.670883 ], [ 92.082886, 21.192195 ], [ 92.025215, 21.70157 ], [ 91.834891, 22.182936 ], [ 91.417087, 22.765019 ], [ 90.496006, 22.805017 ], [ 90.586957, 22.392794 ], [ 90.272971, 21.836368 ], [ 89.847467, 22.039146 ], [ 89.70205, 21.857116 ], [ 89.418863, 21.966179 ], [ 89.031961, 22.055708 ], [ 88.876312, 22.879146 ], [ 88.52977, 23.631142 ], [ 88.69994, 24.233715 ], [ 88.084422, 24.501657 ], [ 88.306373, 24.866079 ], [ 88.931554, 25.238692 ], [ 88.209789, 25.768066 ], [ 88.563049, 26.446526 ], [ 89.355094, 26.014407 ], [ 89.832481, 25.965082 ], [ 89.920693, 25.26975 ], [ 90.872211, 25.132601 ], [ 91.799596, 25.147432 ], [ 92.376202, 24.976693 ], [ 91.915093, 24.130414 ], [ 91.46773, 24.072639 ], [ 91.158963, 23.503527 ], [ 91.706475, 22.985264 ], [ 91.869928, 23.624346 ], [ 92.146035, 23.627499 ], [ 92.672721, 22.041239 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BGR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BGR","properties":{"name":"Bulgaria"},"geometry":{"type":"Polygon","coordinates":[[[22.65715,44.234923],[22.944832,43.823785],[23.332302,43.897011],[24.100679,43.741051],[25.569272,43.688445],[26.065159,43.943494],[27.2424,44.175986],[27.970107,43.812468],[28.558081,43.707462],[28.039095,43.293172],[27.673898,42.577892],[27.99672,42.007359],[27.135739,42.141485],[26.117042,41.826905],[26.106138,41.328899],[25.197201,41.234486],[24.492645,41.583896],[23.692074,41.309081],[22.952377,41.337994],[22.881374,41.999297],[22.380526,42.32026],[22.545012,42.461362],[22.436595,42.580321],[22.604801,42.898519],[22.986019,43.211161],[22.500157,43.642814],[22.410446,44.008063],[22.65715,44.234923]]]}} ]} ================================================ FILE: test/fixtures/world/BGR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 40.97989807 ], [ 16.875, 45.08903556 ], [ 22.5, 45.08903556 ], [ 22.5, 40.97989807 ], [ 16.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 40.97989807 ], [ 22.5, 45.08903556 ], [ 28.125, 45.08903556 ], [ 28.125, 40.97989807 ], [ 22.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 40.97989807 ], [ 28.125, 45.08903556 ], [ 33.75, 45.08903556 ], [ 33.75, 40.97989807 ], [ 28.125, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.65715, 44.234923 ], [ 22.944832, 43.823785 ], [ 23.332302, 43.897011 ], [ 24.100679, 43.741051 ], [ 25.569272, 43.688445 ], [ 26.065159, 43.943494 ], [ 27.2424, 44.175986 ], [ 27.970107, 43.812468 ], [ 28.558081, 43.707462 ], [ 28.039095, 43.293172 ], [ 27.673898, 42.577892 ], [ 27.99672, 42.007359 ], [ 27.135739, 42.141485 ], [ 26.117042, 41.826905 ], [ 26.106138, 41.328899 ], [ 25.197201, 41.234486 ], [ 24.492645, 41.583896 ], [ 23.692074, 41.309081 ], [ 22.952377, 41.337994 ], [ 22.881374, 41.999297 ], [ 22.380526, 42.32026 ], [ 22.545012, 42.461362 ], [ 22.436595, 42.580321 ], [ 22.604801, 42.898519 ], [ 22.986019, 43.211161 ], [ 22.500157, 43.642814 ], [ 22.410446, 44.008063 ], [ 22.65715, 44.234923 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BHS.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BHS","properties":{"name":"The Bahamas"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975]]],[[[-77.82,26.58],[-78.91,26.42],[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58]]],[[[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04],[-77,26.59]]]]}} ]} ================================================ FILE: test/fixtures/world/BHS_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 21.94304553 ], [ -78.75, 27.05912578 ], [ -73.125, 27.05912578 ], [ -73.125, 21.94304553 ], [ -78.75, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 21.94304553 ], [ -84.375, 27.05912578 ], [ -78.75, 27.05912578 ], [ -78.75, 21.94304553 ], [ -84.375, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.53466, 23.75975 ], [ -77.78, 23.71 ], [ -78.03405, 24.28615 ], [ -78.40848, 24.57564 ], [ -78.19087, 25.2103 ], [ -77.89, 25.17 ], [ -77.54, 24.34 ], [ -77.53466, 23.75975 ] ] ], [ [ [ -77.82, 26.58 ], [ -78.91, 26.42 ], [ -78.98, 26.79 ], [ -78.51, 26.87 ], [ -77.85, 26.84 ], [ -77.82, 26.58 ] ] ], [ [ [ -77, 26.59 ], [ -77.17255, 25.87918 ], [ -77.35641, 26.00735 ], [ -77.34, 26.53 ], [ -77.78802, 26.92516 ], [ -77.79, 27.04 ], [ -77, 26.59 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BIH.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BIH","properties":{"name":"Bosnia and Herzegovina"},"geometry":{"type":"Polygon","coordinates":[[[19.005486,44.860234],[19.36803,44.863],[19.11761,44.42307],[19.59976,44.03847],[19.454,43.5681],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674922,43.028563],[17.297373,43.446341],[16.916156,43.667722],[16.456443,44.04124],[16.23966,44.351143],[15.750026,44.818712],[15.959367,45.233777],[16.318157,45.004127],[16.534939,45.211608],[17.002146,45.233777],[17.861783,45.06774],[18.553214,45.08159],[19.005486,44.860234]]]}} ]} ================================================ FILE: test/fixtures/world/BIH_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 40.97989807 ], [ 11.25, 48.92249926 ], [ 22.5, 48.92249926 ], [ 22.5, 40.97989807 ], [ 11.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.005486, 44.860234 ], [ 19.36803, 44.863 ], [ 19.11761, 44.42307 ], [ 19.59976, 44.03847 ], [ 19.454, 43.5681 ], [ 19.21852, 43.52384 ], [ 19.03165, 43.43253 ], [ 18.70648, 43.20011 ], [ 18.56, 42.65 ], [ 17.674922, 43.028563 ], [ 17.297373, 43.446341 ], [ 16.916156, 43.667722 ], [ 16.456443, 44.04124 ], [ 16.23966, 44.351143 ], [ 15.750026, 44.818712 ], [ 15.959367, 45.233777 ], [ 16.318157, 45.004127 ], [ 16.534939, 45.211608 ], [ 17.002146, 45.233777 ], [ 17.861783, 45.06774 ], [ 18.553214, 45.08159 ], [ 19.005486, 44.860234 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BLR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BLR","properties":{"name":"Belarus"},"geometry":{"type":"Polygon","coordinates":[[[23.484128,53.912498],[24.450684,53.905702],[25.536354,54.282423],[25.768433,54.846963],[26.588279,55.167176],[26.494331,55.615107],[27.10246,55.783314],[28.176709,56.16913],[29.229513,55.918344],[29.371572,55.670091],[29.896294,55.789463],[30.873909,55.550976],[30.971836,55.081548],[30.757534,54.811771],[31.384472,54.157056],[31.791424,53.974639],[31.731273,53.794029],[32.405599,53.618045],[32.693643,53.351421],[32.304519,53.132726],[31.497644,53.167427],[31.305201,53.073996],[31.540018,52.742052],[31.785998,52.101678],[30.927549,52.042353],[30.619454,51.822806],[30.555117,51.319503],[30.157364,51.416138],[29.254938,51.368234],[28.992835,51.602044],[28.617613,51.427714],[28.241615,51.572227],[27.454066,51.592303],[26.337959,51.832289],[25.327788,51.910656],[24.553106,51.888461],[24.005078,51.617444],[23.527071,51.578454],[23.508002,52.023647],[23.199494,52.486977],[23.799199,52.691099],[23.804935,53.089731],[23.527536,53.470122],[23.484128,53.912498]]]}} ]} ================================================ FILE: test/fixtures/world/BLR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 48.92249926 ], [ 22.5, 55.77657302 ], [ 33.75, 55.77657302 ], [ 33.75, 48.92249926 ], [ 22.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 55.77657302 ], [ 22.5, 58.81374172 ], [ 28.125, 58.81374172 ], [ 28.125, 55.77657302 ], [ 22.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 55.77657302 ], [ 28.125, 58.81374172 ], [ 33.75, 58.81374172 ], [ 33.75, 55.77657302 ], [ 28.125, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.484128, 53.912498 ], [ 24.450684, 53.905702 ], [ 25.536354, 54.282423 ], [ 25.768433, 54.846963 ], [ 26.588279, 55.167176 ], [ 26.494331, 55.615107 ], [ 27.10246, 55.783314 ], [ 28.176709, 56.16913 ], [ 29.229513, 55.918344 ], [ 29.371572, 55.670091 ], [ 29.896294, 55.789463 ], [ 30.873909, 55.550976 ], [ 30.971836, 55.081548 ], [ 30.757534, 54.811771 ], [ 31.384472, 54.157056 ], [ 31.791424, 53.974639 ], [ 31.731273, 53.794029 ], [ 32.405599, 53.618045 ], [ 32.693643, 53.351421 ], [ 32.304519, 53.132726 ], [ 31.497644, 53.167427 ], [ 31.305201, 53.073996 ], [ 31.540018, 52.742052 ], [ 31.785998, 52.101678 ], [ 30.927549, 52.042353 ], [ 30.619454, 51.822806 ], [ 30.555117, 51.319503 ], [ 30.157364, 51.416138 ], [ 29.254938, 51.368234 ], [ 28.992835, 51.602044 ], [ 28.617613, 51.427714 ], [ 28.241615, 51.572227 ], [ 27.454066, 51.592303 ], [ 26.337959, 51.832289 ], [ 25.327788, 51.910656 ], [ 24.553106, 51.888461 ], [ 24.005078, 51.617444 ], [ 23.527071, 51.578454 ], [ 23.508002, 52.023647 ], [ 23.199494, 52.486977 ], [ 23.799199, 52.691099 ], [ 23.804935, 53.089731 ], [ 23.527536, 53.470122 ], [ 23.484128, 53.912498 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BLZ.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BLZ","properties":{"name":"Belize"},"geometry":{"type":"Polygon","coordinates":[[[-89.14308,17.808319],[-89.150909,17.955468],[-89.029857,18.001511],[-88.848344,17.883198],[-88.490123,18.486831],[-88.300031,18.499982],[-88.296336,18.353273],[-88.106813,18.348674],[-88.123479,18.076675],[-88.285355,17.644143],[-88.197867,17.489475],[-88.302641,17.131694],[-88.239518,17.036066],[-88.355428,16.530774],[-88.551825,16.265467],[-88.732434,16.233635],[-88.930613,15.887273],[-89.229122,15.886938],[-89.150806,17.015577],[-89.14308,17.808319]]]}} ]} ================================================ FILE: test/fixtures/world/BLZ_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 11.17840187 ], [ -90, 16.63619188 ], [ -84.375, 16.63619188 ], [ -84.375, 11.17840187 ], [ -90, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 16.63619188 ], [ -90, 21.94304553 ], [ -84.375, 21.94304553 ], [ -84.375, 16.63619188 ], [ -90, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.14308, 17.808319 ], [ -89.150909, 17.955468 ], [ -89.029857, 18.001511 ], [ -88.848344, 17.883198 ], [ -88.490123, 18.486831 ], [ -88.300031, 18.499982 ], [ -88.296336, 18.353273 ], [ -88.106813, 18.348674 ], [ -88.123479, 18.076675 ], [ -88.285355, 17.644143 ], [ -88.197867, 17.489475 ], [ -88.302641, 17.131694 ], [ -88.239518, 17.036066 ], [ -88.355428, 16.530774 ], [ -88.551825, 16.265467 ], [ -88.732434, 16.233635 ], [ -88.930613, 15.887273 ], [ -89.229122, 15.886938 ], [ -89.150806, 17.015577 ], [ -89.14308, 17.808319 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BMU.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BMU","properties":{"name":"Bermuda"},"geometry":{"type":"Polygon","coordinates":[[[-64.7799734332998,32.3072000581802],[-64.7873319183061,32.3039237143428],[-64.7946942710173,32.3032682700388],[-64.8094297981283,32.3098175728414],[-64.8167896352437,32.3058845718466],[-64.8101968029642,32.3022833180511],[-64.7962291465484,32.2934409732427],[-64.7815086336978,32.2868973114514],[-64.7997025513437,32.2796896417328],[-64.8066707691087,32.2747767569465],[-64.8225587873683,32.2669111289395],[-64.8287548840306,32.2669075473817],[-64.8306732143498,32.2583944840235],[-64.8399924854972,32.254782282336],[-64.8566090462354,32.2547740387514],[-64.8682296789446,32.2616393614322],[-64.8628241459563,32.2724481933959],[-64.8748651338951,32.2757120264753],[-64.8717752856644,32.2819371582026],[-64.8671422127295,32.2930760547989],[-64.8559068764437,32.2960321186471],[-64.8597429072279,32.3015842021933],[-64.8439233486717,32.3140553852543],[-64.8350242329311,32.3242161760006],[-64.8338690593672,32.3294587561557],[-64.8520298651164,32.3110911879954],[-64.8635922932573,32.3048469433363],[-64.8686668994079,32.30910745083],[-64.8721354593415,32.3041908606301],[-64.8779667328485,32.3038632800462],[-64.8780046844321,32.2907757831692],[-64.8849776658292,32.2819261366004],[-64.8783230004629,32.2613001418681],[-64.863194968877,32.2465799485801],[-64.8519819555722,32.2485519134663],[-64.842311980074,32.2492123317296],[-64.8388242605209,32.2475773472534],[-64.8334002575532,32.2462714714698],[-64.8256389530584,32.2472637398594],[-64.8205697556026,32.2531698880328],[-64.8105087275579,32.2561208974156],[-64.7900177727338,32.2659446936992],[-64.7745415970416,32.2718413023427],[-64.7644742436426,32.2855931353214],[-64.7551803442276,32.2908326702531],[-64.7423982971436,32.2996734994024],[-64.7206991797682,32.3137542201258],[-64.7117851247134,32.3176823360806],[-64.6962778813133,32.3275029115532],[-64.6768921127452,32.3324095397555],[-64.6567136927777,32.3451776458469],[-64.6532168823499,32.3494356627941],[-64.6605720384429,32.3589423487763],[-64.65125819471,32.3615600906466],[-64.6462011670816,32.36975169749],[-64.6613227512832,32.3763135008721],[-64.6690666074397,32.388444543924],[-64.6834270548595,32.3854968316788],[-64.6954617672714,32.3763221285869],[-64.70438689565,32.3704254760469],[-64.7117569982798,32.368132600249],[-64.7061764744404,32.3600110593559],[-64.700531552697,32.3590601356818],[-64.6940348033967,32.3640708659835],[-64.6895164826082,32.3633598579866],[-64.6864150099255,32.3547797587266],[-64.6824635995504,32.3540628176846],[-64.6835876652835,32.3626447677968],[-64.6801998697415,32.3631199096979],[-64.6672170444687,32.3597751617473],[-64.6598811264978,32.3497625771755],[-64.6737331235384,32.3390281851635],[-64.6887090648183,32.3342439408053],[-64.706732854446,32.3429010723036],[-64.7149301576112,32.3552188753513],[-64.7185967666669,32.3552239212394],[-64.7214189847314,32.3518830231342],[-64.7270616067222,32.3466461715475],[-64.734962460882,32.3442819830499],[-64.7383521549094,32.3407216514918],[-64.7411729976333,32.3311790864627],[-64.7423019216485,32.323311561213],[-64.7462482354281,32.318538611581],[-64.7566773739613,32.3130509130175],[-64.768738200563,32.3088369816572],[-64.7799734332998,32.3072000581802]]]}} ]} ================================================ FILE: test/fixtures/world/BMU_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 31.95216224 ], [ -67.5, 36.59788913 ], [ -61.875, 36.59788913 ], [ -61.875, 31.95216224 ], [ -67.5, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.77997343, 32.30720006 ], [ -64.78733192, 32.30392371 ], [ -64.79469427, 32.30326827 ], [ -64.8094298, 32.30981757 ], [ -64.81678964, 32.30588457 ], [ -64.8101968, 32.30228332 ], [ -64.79622915, 32.29344097 ], [ -64.78150863, 32.28689731 ], [ -64.79970255, 32.27968964 ], [ -64.80667077, 32.27477676 ], [ -64.82255879, 32.26691113 ], [ -64.82875488, 32.26690755 ], [ -64.83067321, 32.25839448 ], [ -64.83999249, 32.25478228 ], [ -64.85660905, 32.25477404 ], [ -64.86822968, 32.26163936 ], [ -64.86282415, 32.27244819 ], [ -64.87486513, 32.27571203 ], [ -64.87177529, 32.28193716 ], [ -64.86714221, 32.29307605 ], [ -64.85590688, 32.29603212 ], [ -64.85974291, 32.3015842 ], [ -64.84392335, 32.31405539 ], [ -64.83502423, 32.32421618 ], [ -64.83386906, 32.32945876 ], [ -64.85202987, 32.31109119 ], [ -64.86359229, 32.30484694 ], [ -64.8686669, 32.30910745 ], [ -64.87213546, 32.30419086 ], [ -64.87796673, 32.30386328 ], [ -64.87800468, 32.29077578 ], [ -64.88497767, 32.28192614 ], [ -64.878323, 32.26130014 ], [ -64.86319497, 32.24657995 ], [ -64.85198196, 32.24855191 ], [ -64.84231198, 32.24921233 ], [ -64.83882426, 32.24757735 ], [ -64.83340026, 32.24627147 ], [ -64.82563895, 32.24726374 ], [ -64.82056976, 32.25316989 ], [ -64.81050873, 32.2561209 ], [ -64.79001777, 32.26594469 ], [ -64.7745416, 32.2718413 ], [ -64.76447424, 32.28559314 ], [ -64.75518034, 32.29083267 ], [ -64.7423983, 32.2996735 ], [ -64.72069918, 32.31375422 ], [ -64.71178512, 32.31768234 ], [ -64.69627788, 32.32750291 ], [ -64.67689211, 32.33240954 ], [ -64.65671369, 32.34517765 ], [ -64.65321688, 32.34943566 ], [ -64.66057204, 32.35894235 ], [ -64.65125819, 32.36156009 ], [ -64.64620117, 32.3697517 ], [ -64.66132275, 32.3763135 ], [ -64.66906661, 32.38844454 ], [ -64.68342705, 32.38549683 ], [ -64.69546177, 32.37632213 ], [ -64.7043869, 32.37042548 ], [ -64.711757, 32.3681326 ], [ -64.70617647, 32.36001106 ], [ -64.70053155, 32.35906014 ], [ -64.6940348, 32.36407087 ], [ -64.68951648, 32.36335986 ], [ -64.68641501, 32.35477976 ], [ -64.6824636, 32.35406282 ], [ -64.68358767, 32.36264477 ], [ -64.68019987, 32.36311991 ], [ -64.66721704, 32.35977516 ], [ -64.65988113, 32.34976258 ], [ -64.67373312, 32.33902819 ], [ -64.68870906, 32.33424394 ], [ -64.70673285, 32.34290107 ], [ -64.71493016, 32.35521888 ], [ -64.71859677, 32.35522392 ], [ -64.72141898, 32.35188302 ], [ -64.72706161, 32.34664617 ], [ -64.73496246, 32.34428198 ], [ -64.73835215, 32.34072165 ], [ -64.741173, 32.33117909 ], [ -64.74230192, 32.32331156 ], [ -64.74624824, 32.31853861 ], [ -64.75667737, 32.31305091 ], [ -64.7687382, 32.30883698 ], [ -64.77997343, 32.30720006 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BOL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BOL","properties":{"name":"Bolivia"},"geometry":{"type":"Polygon","coordinates":[[[-62.846468,-22.034985],[-63.986838,-21.993644],[-64.377021,-22.798091],[-64.964892,-22.075862],[-66.273339,-21.83231],[-67.106674,-22.735925],[-67.82818,-22.872919],[-68.219913,-21.494347],[-68.757167,-20.372658],[-68.442225,-19.405068],[-68.966818,-18.981683],[-69.100247,-18.260125],[-69.590424,-17.580012],[-68.959635,-16.500698],[-69.389764,-15.660129],[-69.160347,-15.323974],[-69.339535,-14.953195],[-68.948887,-14.453639],[-68.929224,-13.602684],[-68.88008,-12.899729],[-68.66508,-12.5613],[-69.529678,-10.951734],[-68.786158,-11.03638],[-68.271254,-11.014521],[-68.048192,-10.712059],[-67.173801,-10.306812],[-66.646908,-9.931331],[-65.338435,-9.761988],[-65.444837,-10.511451],[-65.321899,-10.895872],[-65.402281,-11.56627],[-64.316353,-12.461978],[-63.196499,-12.627033],[-62.80306,-13.000653],[-62.127081,-13.198781],[-61.713204,-13.489202],[-61.084121,-13.479384],[-60.503304,-13.775955],[-60.459198,-14.354007],[-60.264326,-14.645979],[-60.251149,-15.077219],[-60.542966,-15.09391],[-60.15839,-16.258284],[-58.24122,-16.299573],[-58.388058,-16.877109],[-58.280804,-17.27171],[-57.734558,-17.552468],[-57.498371,-18.174188],[-57.676009,-18.96184],[-57.949997,-19.400004],[-57.853802,-19.969995],[-58.166392,-20.176701],[-58.183471,-19.868399],[-59.115042,-19.356906],[-60.043565,-19.342747],[-61.786326,-19.633737],[-62.265961,-20.513735],[-62.291179,-21.051635],[-62.685057,-22.249029],[-62.846468,-22.034985]]]}} ]} ================================================ FILE: test/fixtures/world/BOL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -11.17840187 ], [ -67.5, -5.61598582 ], [ -61.875, -5.61598582 ], [ -61.875, -11.17840187 ], [ -67.5, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -21.94304553 ], [ -67.5, -11.17840187 ], [ -56.25, -11.17840187 ], [ -56.25, -21.94304553 ], [ -67.5, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -27.05912578 ], [ -67.5, -21.94304553 ], [ -61.875, -21.94304553 ], [ -61.875, -27.05912578 ], [ -67.5, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -11.17840187 ], [ -73.125, -5.61598582 ], [ -67.5, -5.61598582 ], [ -67.5, -11.17840187 ], [ -73.125, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -16.63619188 ], [ -73.125, -11.17840187 ], [ -67.5, -11.17840187 ], [ -67.5, -16.63619188 ], [ -73.125, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -21.94304553 ], [ -73.125, -16.63619188 ], [ -67.5, -16.63619188 ], [ -67.5, -21.94304553 ], [ -73.125, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -27.05912578 ], [ -73.125, -21.94304553 ], [ -67.5, -21.94304553 ], [ -67.5, -27.05912578 ], [ -73.125, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.846468, -22.034985 ], [ -63.986838, -21.993644 ], [ -64.377021, -22.798091 ], [ -64.964892, -22.075862 ], [ -66.273339, -21.83231 ], [ -67.106674, -22.735925 ], [ -67.82818, -22.872919 ], [ -68.219913, -21.494347 ], [ -68.757167, -20.372658 ], [ -68.442225, -19.405068 ], [ -68.966818, -18.981683 ], [ -69.100247, -18.260125 ], [ -69.590424, -17.580012 ], [ -68.959635, -16.500698 ], [ -69.389764, -15.660129 ], [ -69.160347, -15.323974 ], [ -69.339535, -14.953195 ], [ -68.948887, -14.453639 ], [ -68.929224, -13.602684 ], [ -68.88008, -12.899729 ], [ -68.66508, -12.5613 ], [ -69.529678, -10.951734 ], [ -68.786158, -11.03638 ], [ -68.271254, -11.014521 ], [ -68.048192, -10.712059 ], [ -67.173801, -10.306812 ], [ -66.646908, -9.931331 ], [ -65.338435, -9.761988 ], [ -65.444837, -10.511451 ], [ -65.321899, -10.895872 ], [ -65.402281, -11.56627 ], [ -64.316353, -12.461978 ], [ -63.196499, -12.627033 ], [ -62.80306, -13.000653 ], [ -62.127081, -13.198781 ], [ -61.713204, -13.489202 ], [ -61.084121, -13.479384 ], [ -60.503304, -13.775955 ], [ -60.459198, -14.354007 ], [ -60.264326, -14.645979 ], [ -60.251149, -15.077219 ], [ -60.542966, -15.09391 ], [ -60.15839, -16.258284 ], [ -58.24122, -16.299573 ], [ -58.388058, -16.877109 ], [ -58.280804, -17.27171 ], [ -57.734558, -17.552468 ], [ -57.498371, -18.174188 ], [ -57.676009, -18.96184 ], [ -57.949997, -19.400004 ], [ -57.853802, -19.969995 ], [ -58.166392, -20.176701 ], [ -58.183471, -19.868399 ], [ -59.115042, -19.356906 ], [ -60.043565, -19.342747 ], [ -61.786326, -19.633737 ], [ -62.265961, -20.513735 ], [ -62.291179, -21.051635 ], [ -62.685057, -22.249029 ], [ -62.846468, -22.034985 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BRA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BRA","properties":{"name":"Brazil"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.2909,-28.852761],[-55.162286,-27.881915],[-54.490725,-27.474757],[-53.648735,-26.923473],[-53.628349,-26.124865],[-54.13005,-25.547639],[-54.625291,-25.739255],[-54.428946,-25.162185],[-54.293476,-24.5708],[-54.29296,-24.021014],[-54.652834,-23.839578],[-55.027902,-24.001274],[-55.400747,-23.956935],[-55.517639,-23.571998],[-55.610683,-22.655619],[-55.797958,-22.35693],[-56.473317,-22.0863],[-56.88151,-22.282154],[-57.937156,-22.090176],[-57.870674,-20.732688],[-58.166392,-20.176701],[-57.853802,-19.969995],[-57.949997,-19.400004],[-57.676009,-18.96184],[-57.498371,-18.174188],[-57.734558,-17.552468],[-58.280804,-17.27171],[-58.388058,-16.877109],[-58.24122,-16.299573],[-60.15839,-16.258284],[-60.542966,-15.09391],[-60.251149,-15.077219],[-60.264326,-14.645979],[-60.459198,-14.354007],[-60.503304,-13.775955],[-61.084121,-13.479384],[-61.713204,-13.489202],[-62.127081,-13.198781],[-62.80306,-13.000653],[-63.196499,-12.627033],[-64.316353,-12.461978],[-65.402281,-11.56627],[-65.321899,-10.895872],[-65.444837,-10.511451],[-65.338435,-9.761988],[-66.646908,-9.931331],[-67.173801,-10.306812],[-68.048192,-10.712059],[-68.271254,-11.014521],[-68.786158,-11.03638],[-69.529678,-10.951734],[-70.093752,-11.123972],[-70.548686,-11.009147],[-70.481894,-9.490118],[-71.302412,-10.079436],[-72.184891,-10.053598],[-72.563033,-9.520194],[-73.226713,-9.462213],[-73.015383,-9.032833],[-73.571059,-8.424447],[-73.987235,-7.52383],[-73.723401,-7.340999],[-73.724487,-6.918595],[-73.120027,-6.629931],[-73.219711,-6.089189],[-72.964507,-5.741251],[-72.891928,-5.274561],[-71.748406,-4.593983],[-70.928843,-4.401591],[-70.794769,-4.251265],[-69.893635,-4.298187],[-69.444102,-1.556287],[-69.420486,-1.122619],[-69.577065,-0.549992],[-70.020656,-0.185156],[-70.015566,0.541414],[-69.452396,0.706159],[-69.252434,0.602651],[-69.218638,0.985677],[-69.804597,1.089081],[-69.816973,1.714805],[-67.868565,1.692455],[-67.53781,2.037163],[-67.259998,1.719999],[-67.065048,1.130112],[-66.876326,1.253361],[-66.325765,0.724452],[-65.548267,0.789254],[-65.354713,1.095282],[-64.611012,1.328731],[-64.199306,1.492855],[-64.083085,1.916369],[-63.368788,2.2009],[-63.422867,2.411068],[-64.269999,2.497006],[-64.408828,3.126786],[-64.368494,3.79721],[-64.816064,4.056445],[-64.628659,4.148481],[-63.888343,4.02053],[-63.093198,3.770571],[-62.804533,4.006965],[-62.08543,4.162124],[-60.966893,4.536468],[-60.601179,4.918098],[-60.733574,5.200277],[-60.213683,5.244486],[-59.980959,5.014061],[-60.111002,4.574967],[-59.767406,4.423503],[-59.53804,3.958803],[-59.815413,3.606499],[-59.974525,2.755233],[-59.718546,2.24963],[-59.646044,1.786894],[-59.030862,1.317698],[-58.540013,1.268088],[-58.429477,1.463942],[-58.11345,1.507195],[-57.660971,1.682585],[-57.335823,1.948538],[-56.782704,1.863711],[-56.539386,1.899523],[-55.995698,1.817667],[-55.9056,2.021996],[-56.073342,2.220795],[-55.973322,2.510364],[-55.569755,2.421506],[-55.097587,2.523748],[-54.524754,2.311849],[-54.088063,2.105557],[-53.778521,2.376703],[-53.554839,2.334897],[-53.418465,2.053389],[-52.939657,2.124858],[-52.556425,2.504705],[-52.249338,3.241094],[-51.657797,4.156232],[-51.317146,4.203491],[-51.069771,3.650398],[-50.508875,1.901564],[-49.974076,1.736483],[-49.947101,1.04619],[-50.699251,0.222984],[-50.388211,-0.078445],[-48.620567,-0.235489],[-48.584497,-1.237805],[-47.824956,-0.581618],[-46.566584,-0.941028],[-44.905703,-1.55174],[-44.417619,-2.13775],[-44.581589,-2.691308],[-43.418791,-2.38311],[-41.472657,-2.912018],[-39.978665,-2.873054],[-38.500383,-3.700652],[-37.223252,-4.820946],[-36.452937,-5.109404],[-35.597796,-5.149504],[-35.235389,-5.464937],[-34.89603,-6.738193],[-34.729993,-7.343221],[-35.128212,-8.996401],[-35.636967,-9.649282],[-37.046519,-11.040721],[-37.683612,-12.171195],[-38.423877,-13.038119],[-38.673887,-13.057652],[-38.953276,-13.79337],[-38.882298,-15.667054],[-39.161092,-17.208407],[-39.267339,-17.867746],[-39.583521,-18.262296],[-39.760823,-19.599113],[-40.774741,-20.904512],[-40.944756,-21.937317],[-41.754164,-22.370676],[-41.988284,-22.97007],[-43.074704,-22.967693],[-44.647812,-23.351959],[-45.352136,-23.796842],[-46.472093,-24.088969],[-47.648972,-24.885199],[-48.495458,-25.877025],[-48.641005,-26.623698],[-48.474736,-27.175912],[-48.66152,-28.186135],[-48.888457,-28.674115],[-49.587329,-29.224469],[-50.696874,-30.984465],[-51.576226,-31.777698],[-52.256081,-32.24537],[-52.7121,-33.196578],[-53.373662,-33.768378],[-53.650544,-33.202004],[-53.209589,-32.727666],[-53.787952,-32.047243],[-54.572452,-31.494511],[-55.60151,-30.853879],[-55.973245,-30.883076],[-56.976026,-30.109686],[-57.625133,-30.216295]]]}} ]} ================================================ FILE: test/fixtures/world/BRA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, -11.17840187 ], [ -45, 0 ], [ -33.75, 0 ], [ -33.75, -11.17840187 ], [ -45, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, -21.94304553 ], [ -45, -11.17840187 ], [ -33.75, -11.17840187 ], [ -33.75, -21.94304553 ], [ -45, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, -27.05912578 ], [ -45, -21.94304553 ], [ -39.375, -21.94304553 ], [ -39.375, -27.05912578 ], [ -45, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, 0 ], [ -50.625, 5.61598582 ], [ -45, 5.61598582 ], [ -45, 0 ], [ -50.625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -11.17840187 ], [ -56.25, 0 ], [ -45, 0 ], [ -45, -11.17840187 ], [ -56.25, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -21.94304553 ], [ -56.25, -11.17840187 ], [ -45, -11.17840187 ], [ -45, -21.94304553 ], [ -56.25, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -31.95216224 ], [ -56.25, -21.94304553 ], [ -45, -21.94304553 ], [ -45, -31.95216224 ], [ -56.25, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -36.59788913 ], [ -56.25, -31.95216224 ], [ -50.625, -31.95216224 ], [ -50.625, -36.59788913 ], [ -56.25, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 0 ], [ -56.25, 5.61598582 ], [ -50.625, 5.61598582 ], [ -50.625, 0 ], [ -56.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -16.63619188 ], [ -61.875, -11.17840187 ], [ -56.25, -11.17840187 ], [ -56.25, -16.63619188 ], [ -61.875, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -21.94304553 ], [ -61.875, -16.63619188 ], [ -56.25, -16.63619188 ], [ -56.25, -21.94304553 ], [ -61.875, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -27.05912578 ], [ -61.875, -21.94304553 ], [ -56.25, -21.94304553 ], [ -56.25, -27.05912578 ], [ -61.875, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -31.95216224 ], [ -61.875, -27.05912578 ], [ -56.25, -27.05912578 ], [ -56.25, -31.95216224 ], [ -61.875, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 0 ], [ -61.875, 5.61598582 ], [ -56.25, 5.61598582 ], [ -56.25, 0 ], [ -61.875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -11.17840187 ], [ -67.5, 0 ], [ -56.25, 0 ], [ -56.25, -11.17840187 ], [ -67.5, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -16.63619188 ], [ -67.5, -11.17840187 ], [ -61.875, -11.17840187 ], [ -61.875, -16.63619188 ], [ -67.5, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 0 ], [ -67.5, 5.61598582 ], [ -61.875, 5.61598582 ], [ -61.875, 0 ], [ -67.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -11.17840187 ], [ -73.125, -5.61598582 ], [ -67.5, -5.61598582 ], [ -67.5, -11.17840187 ], [ -73.125, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -5.61598582 ], [ -73.125, 0 ], [ -67.5, 0 ], [ -67.5, -5.61598582 ], [ -73.125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 0 ], [ -73.125, 5.61598582 ], [ -67.5, 5.61598582 ], [ -67.5, 0 ], [ -73.125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, -11.17840187 ], [ -78.75, -5.61598582 ], [ -73.125, -5.61598582 ], [ -73.125, -11.17840187 ], [ -78.75, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.625133, -30.216295 ], [ -56.2909, -28.852761 ], [ -55.162286, -27.881915 ], [ -54.490725, -27.474757 ], [ -53.648735, -26.923473 ], [ -53.628349, -26.124865 ], [ -54.13005, -25.547639 ], [ -54.625291, -25.739255 ], [ -54.428946, -25.162185 ], [ -54.293476, -24.5708 ], [ -54.29296, -24.021014 ], [ -54.652834, -23.839578 ], [ -55.027902, -24.001274 ], [ -55.400747, -23.956935 ], [ -55.517639, -23.571998 ], [ -55.610683, -22.655619 ], [ -55.797958, -22.35693 ], [ -56.473317, -22.0863 ], [ -56.88151, -22.282154 ], [ -57.937156, -22.090176 ], [ -57.870674, -20.732688 ], [ -58.166392, -20.176701 ], [ -57.853802, -19.969995 ], [ -57.949997, -19.400004 ], [ -57.676009, -18.96184 ], [ -57.498371, -18.174188 ], [ -57.734558, -17.552468 ], [ -58.280804, -17.27171 ], [ -58.388058, -16.877109 ], [ -58.24122, -16.299573 ], [ -60.15839, -16.258284 ], [ -60.542966, -15.09391 ], [ -60.251149, -15.077219 ], [ -60.264326, -14.645979 ], [ -60.459198, -14.354007 ], [ -60.503304, -13.775955 ], [ -61.084121, -13.479384 ], [ -61.713204, -13.489202 ], [ -62.127081, -13.198781 ], [ -62.80306, -13.000653 ], [ -63.196499, -12.627033 ], [ -64.316353, -12.461978 ], [ -65.402281, -11.56627 ], [ -65.321899, -10.895872 ], [ -65.444837, -10.511451 ], [ -65.338435, -9.761988 ], [ -66.646908, -9.931331 ], [ -67.173801, -10.306812 ], [ -68.048192, -10.712059 ], [ -68.271254, -11.014521 ], [ -68.786158, -11.03638 ], [ -69.529678, -10.951734 ], [ -70.093752, -11.123972 ], [ -70.548686, -11.009147 ], [ -70.481894, -9.490118 ], [ -71.302412, -10.079436 ], [ -72.184891, -10.053598 ], [ -72.563033, -9.520194 ], [ -73.226713, -9.462213 ], [ -73.015383, -9.032833 ], [ -73.571059, -8.424447 ], [ -73.987235, -7.52383 ], [ -73.723401, -7.340999 ], [ -73.724487, -6.918595 ], [ -73.120027, -6.629931 ], [ -73.219711, -6.089189 ], [ -72.964507, -5.741251 ], [ -72.891928, -5.274561 ], [ -71.748406, -4.593983 ], [ -70.928843, -4.401591 ], [ -70.794769, -4.251265 ], [ -69.893635, -4.298187 ], [ -69.444102, -1.556287 ], [ -69.420486, -1.122619 ], [ -69.577065, -0.549992 ], [ -70.020656, -0.185156 ], [ -70.015566, 0.541414 ], [ -69.452396, 0.706159 ], [ -69.252434, 0.602651 ], [ -69.218638, 0.985677 ], [ -69.804597, 1.089081 ], [ -69.816973, 1.714805 ], [ -67.868565, 1.692455 ], [ -67.53781, 2.037163 ], [ -67.259998, 1.719999 ], [ -67.065048, 1.130112 ], [ -66.876326, 1.253361 ], [ -66.325765, 0.724452 ], [ -65.548267, 0.789254 ], [ -65.354713, 1.095282 ], [ -64.611012, 1.328731 ], [ -64.199306, 1.492855 ], [ -64.083085, 1.916369 ], [ -63.368788, 2.2009 ], [ -63.422867, 2.411068 ], [ -64.269999, 2.497006 ], [ -64.408828, 3.126786 ], [ -64.368494, 3.79721 ], [ -64.816064, 4.056445 ], [ -64.628659, 4.148481 ], [ -63.888343, 4.02053 ], [ -63.093198, 3.770571 ], [ -62.804533, 4.006965 ], [ -62.08543, 4.162124 ], [ -60.966893, 4.536468 ], [ -60.601179, 4.918098 ], [ -60.733574, 5.200277 ], [ -60.213683, 5.244486 ], [ -59.980959, 5.014061 ], [ -60.111002, 4.574967 ], [ -59.767406, 4.423503 ], [ -59.53804, 3.958803 ], [ -59.815413, 3.606499 ], [ -59.974525, 2.755233 ], [ -59.718546, 2.24963 ], [ -59.646044, 1.786894 ], [ -59.030862, 1.317698 ], [ -58.540013, 1.268088 ], [ -58.429477, 1.463942 ], [ -58.11345, 1.507195 ], [ -57.660971, 1.682585 ], [ -57.335823, 1.948538 ], [ -56.782704, 1.863711 ], [ -56.539386, 1.899523 ], [ -55.995698, 1.817667 ], [ -55.9056, 2.021996 ], [ -56.073342, 2.220795 ], [ -55.973322, 2.510364 ], [ -55.569755, 2.421506 ], [ -55.097587, 2.523748 ], [ -54.524754, 2.311849 ], [ -54.088063, 2.105557 ], [ -53.778521, 2.376703 ], [ -53.554839, 2.334897 ], [ -53.418465, 2.053389 ], [ -52.939657, 2.124858 ], [ -52.556425, 2.504705 ], [ -52.249338, 3.241094 ], [ -51.657797, 4.156232 ], [ -51.317146, 4.203491 ], [ -51.069771, 3.650398 ], [ -50.508875, 1.901564 ], [ -49.974076, 1.736483 ], [ -49.947101, 1.04619 ], [ -50.699251, 0.222984 ], [ -50.388211, -0.078445 ], [ -48.620567, -0.235489 ], [ -48.584497, -1.237805 ], [ -47.824956, -0.581618 ], [ -46.566584, -0.941028 ], [ -44.905703, -1.55174 ], [ -44.417619, -2.13775 ], [ -44.581589, -2.691308 ], [ -43.418791, -2.38311 ], [ -41.472657, -2.912018 ], [ -39.978665, -2.873054 ], [ -38.500383, -3.700652 ], [ -37.223252, -4.820946 ], [ -36.452937, -5.109404 ], [ -35.597796, -5.149504 ], [ -35.235389, -5.464937 ], [ -34.89603, -6.738193 ], [ -34.729993, -7.343221 ], [ -35.128212, -8.996401 ], [ -35.636967, -9.649282 ], [ -37.046519, -11.040721 ], [ -37.683612, -12.171195 ], [ -38.423877, -13.038119 ], [ -38.673887, -13.057652 ], [ -38.953276, -13.79337 ], [ -38.882298, -15.667054 ], [ -39.161092, -17.208407 ], [ -39.267339, -17.867746 ], [ -39.583521, -18.262296 ], [ -39.760823, -19.599113 ], [ -40.774741, -20.904512 ], [ -40.944756, -21.937317 ], [ -41.754164, -22.370676 ], [ -41.988284, -22.97007 ], [ -43.074704, -22.967693 ], [ -44.647812, -23.351959 ], [ -45.352136, -23.796842 ], [ -46.472093, -24.088969 ], [ -47.648972, -24.885199 ], [ -48.495458, -25.877025 ], [ -48.641005, -26.623698 ], [ -48.474736, -27.175912 ], [ -48.66152, -28.186135 ], [ -48.888457, -28.674115 ], [ -49.587329, -29.224469 ], [ -50.696874, -30.984465 ], [ -51.576226, -31.777698 ], [ -52.256081, -32.24537 ], [ -52.7121, -33.196578 ], [ -53.373662, -33.768378 ], [ -53.650544, -33.202004 ], [ -53.209589, -32.727666 ], [ -53.787952, -32.047243 ], [ -54.572452, -31.494511 ], [ -55.60151, -30.853879 ], [ -55.973245, -30.883076 ], [ -56.976026, -30.109686 ], [ -57.625133, -30.216295 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BRN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BRN","properties":{"name":"Brunei"},"geometry":{"type":"Polygon","coordinates":[[[114.204017,4.525874],[114.599961,4.900011],[115.45071,5.44773],[115.4057,4.955228],[115.347461,4.316636],[114.869557,4.348314],[114.659596,4.007637],[114.204017,4.525874]]]}} ]} ================================================ FILE: test/fixtures/world/BRN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 0 ], [ 112.5, 5.61598582 ], [ 118.125, 5.61598582 ], [ 118.125, 0 ], [ 112.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.204017, 4.525874 ], [ 114.599961, 4.900011 ], [ 115.45071, 5.44773 ], [ 115.4057, 4.955228 ], [ 115.347461, 4.316636 ], [ 114.869557, 4.348314 ], [ 114.659596, 4.007637 ], [ 114.204017, 4.525874 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BTN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BTN","properties":{"name":"Bhutan"},"geometry":{"type":"Polygon","coordinates":[[[91.696657,27.771742],[92.103712,27.452614],[92.033484,26.83831],[91.217513,26.808648],[90.373275,26.875724],[89.744528,26.719403],[88.835643,27.098966],[88.814248,27.299316],[89.47581,28.042759],[90.015829,28.296439],[90.730514,28.064954],[91.258854,28.040614],[91.696657,27.771742]]]}} ]} ================================================ FILE: test/fixtures/world/BTN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 21.94304553 ], [ 84.375, 27.05912578 ], [ 90, 27.05912578 ], [ 90, 21.94304553 ], [ 84.375, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 27.05912578 ], [ 84.375, 31.95216224 ], [ 90, 31.95216224 ], [ 90, 27.05912578 ], [ 84.375, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 21.94304553 ], [ 90, 27.05912578 ], [ 95.625, 27.05912578 ], [ 95.625, 21.94304553 ], [ 90, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 27.05912578 ], [ 90, 31.95216224 ], [ 95.625, 31.95216224 ], [ 95.625, 27.05912578 ], [ 90, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.696657, 27.771742 ], [ 92.103712, 27.452614 ], [ 92.033484, 26.83831 ], [ 91.217513, 26.808648 ], [ 90.373275, 26.875724 ], [ 89.744528, 26.719403 ], [ 88.835643, 27.098966 ], [ 88.814248, 27.299316 ], [ 89.47581, 28.042759 ], [ 90.015829, 28.296439 ], [ 90.730514, 28.064954 ], [ 91.258854, 28.040614 ], [ 91.696657, 27.771742 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/BWA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"BWA","properties":{"name":"Botswana"},"geometry":{"type":"Polygon","coordinates":[[[25.649163,-18.536026],[25.850391,-18.714413],[26.164791,-19.293086],[27.296505,-20.39152],[27.724747,-20.499059],[27.727228,-20.851802],[28.02137,-21.485975],[28.794656,-21.639454],[29.432188,-22.091313],[28.017236,-22.827754],[27.11941,-23.574323],[26.786407,-24.240691],[26.485753,-24.616327],[25.941652,-24.696373],[25.765849,-25.174845],[25.664666,-25.486816],[25.025171,-25.71967],[24.211267,-25.670216],[23.73357,-25.390129],[23.312097,-25.26869],[22.824271,-25.500459],[22.579532,-25.979448],[22.105969,-26.280256],[21.605896,-26.726534],[20.889609,-26.828543],[20.66647,-26.477453],[20.758609,-25.868136],[20.165726,-24.917962],[19.895768,-24.76779],[19.895458,-21.849157],[20.881134,-21.814327],[20.910641,-18.252219],[21.65504,-18.219146],[23.196858,-17.869038],[23.579006,-18.281261],[24.217365,-17.889347],[24.520705,-17.887125],[25.084443,-17.661816],[25.264226,-17.73654],[25.649163,-18.536026]]]}} ]} ================================================ FILE: test/fixtures/world/BWA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -21.94304553 ], [ 16.875, -16.63619188 ], [ 22.5, -16.63619188 ], [ 22.5, -21.94304553 ], [ 16.875, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -27.05912578 ], [ 16.875, -21.94304553 ], [ 22.5, -21.94304553 ], [ 22.5, -27.05912578 ], [ 16.875, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -21.94304553 ], [ 22.5, -16.63619188 ], [ 28.125, -16.63619188 ], [ 28.125, -21.94304553 ], [ 22.5, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -27.05912578 ], [ 22.5, -21.94304553 ], [ 28.125, -21.94304553 ], [ 28.125, -27.05912578 ], [ 22.5, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -21.94304553 ], [ 28.125, -16.63619188 ], [ 33.75, -16.63619188 ], [ 33.75, -21.94304553 ], [ 28.125, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -27.05912578 ], [ 28.125, -21.94304553 ], [ 33.75, -21.94304553 ], [ 33.75, -27.05912578 ], [ 28.125, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.649163, -18.536026 ], [ 25.850391, -18.714413 ], [ 26.164791, -19.293086 ], [ 27.296505, -20.39152 ], [ 27.724747, -20.499059 ], [ 27.727228, -20.851802 ], [ 28.02137, -21.485975 ], [ 28.794656, -21.639454 ], [ 29.432188, -22.091313 ], [ 28.017236, -22.827754 ], [ 27.11941, -23.574323 ], [ 26.786407, -24.240691 ], [ 26.485753, -24.616327 ], [ 25.941652, -24.696373 ], [ 25.765849, -25.174845 ], [ 25.664666, -25.486816 ], [ 25.025171, -25.71967 ], [ 24.211267, -25.670216 ], [ 23.73357, -25.390129 ], [ 23.312097, -25.26869 ], [ 22.824271, -25.500459 ], [ 22.579532, -25.979448 ], [ 22.105969, -26.280256 ], [ 21.605896, -26.726534 ], [ 20.889609, -26.828543 ], [ 20.66647, -26.477453 ], [ 20.758609, -25.868136 ], [ 20.165726, -24.917962 ], [ 19.895768, -24.76779 ], [ 19.895458, -21.849157 ], [ 20.881134, -21.814327 ], [ 20.910641, -18.252219 ], [ 21.65504, -18.219146 ], [ 23.196858, -17.869038 ], [ 23.579006, -18.281261 ], [ 24.217365, -17.889347 ], [ 24.520705, -17.887125 ], [ 25.084443, -17.661816 ], [ 25.264226, -17.73654 ], [ 25.649163, -18.536026 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CAF.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CAF","properties":{"name":"Central African Republic"},"geometry":{"type":"Polygon","coordinates":[[[15.27946,7.421925],[16.106232,7.497088],[16.290562,7.754307],[16.456185,7.734774],[16.705988,7.508328],[17.96493,7.890914],[18.389555,8.281304],[18.911022,8.630895],[18.81201,8.982915],[19.094008,9.074847],[20.059685,9.012706],[21.000868,9.475985],[21.723822,10.567056],[22.231129,10.971889],[22.864165,11.142395],[22.977544,10.714463],[23.554304,10.089255],[23.55725,9.681218],[23.394779,9.265068],[23.459013,8.954286],[23.805813,8.666319],[24.567369,8.229188],[25.114932,7.825104],[25.124131,7.500085],[25.796648,6.979316],[26.213418,6.546603],[26.465909,5.946717],[27.213409,5.550953],[27.374226,5.233944],[27.044065,5.127853],[26.402761,5.150875],[25.650455,5.256088],[25.278798,5.170408],[25.128833,4.927245],[24.805029,4.897247],[24.410531,5.108784],[23.297214,4.609693],[22.84148,4.710126],[22.704124,4.633051],[22.405124,4.02916],[21.659123,4.224342],[20.927591,4.322786],[20.290679,4.691678],[19.467784,5.031528],[18.932312,4.709506],[18.542982,4.201785],[18.453065,3.504386],[17.8099,3.560196],[17.133042,3.728197],[16.537058,3.198255],[16.012852,2.26764],[15.907381,2.557389],[15.862732,3.013537],[15.405396,3.335301],[15.03622,3.851367],[14.950953,4.210389],[14.478372,4.732605],[14.558936,5.030598],[14.459407,5.451761],[14.53656,6.226959],[14.776545,6.408498],[15.27946,7.421925]]]}} ]} ================================================ FILE: test/fixtures/world/CAF_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 0 ], [ 11.25, 11.17840187 ], [ 22.5, 11.17840187 ], [ 22.5, 0 ], [ 11.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 0 ], [ 22.5, 5.61598582 ], [ 28.125, 5.61598582 ], [ 28.125, 0 ], [ 22.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 5.61598582 ], [ 22.5, 11.17840187 ], [ 28.125, 11.17840187 ], [ 28.125, 5.61598582 ], [ 22.5, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.27946, 7.421925 ], [ 16.106232, 7.497088 ], [ 16.290562, 7.754307 ], [ 16.456185, 7.734774 ], [ 16.705988, 7.508328 ], [ 17.96493, 7.890914 ], [ 18.389555, 8.281304 ], [ 18.911022, 8.630895 ], [ 18.81201, 8.982915 ], [ 19.094008, 9.074847 ], [ 20.059685, 9.012706 ], [ 21.000868, 9.475985 ], [ 21.723822, 10.567056 ], [ 22.231129, 10.971889 ], [ 22.864165, 11.142395 ], [ 22.977544, 10.714463 ], [ 23.554304, 10.089255 ], [ 23.55725, 9.681218 ], [ 23.394779, 9.265068 ], [ 23.459013, 8.954286 ], [ 23.805813, 8.666319 ], [ 24.567369, 8.229188 ], [ 25.114932, 7.825104 ], [ 25.124131, 7.500085 ], [ 25.796648, 6.979316 ], [ 26.213418, 6.546603 ], [ 26.465909, 5.946717 ], [ 27.213409, 5.550953 ], [ 27.374226, 5.233944 ], [ 27.044065, 5.127853 ], [ 26.402761, 5.150875 ], [ 25.650455, 5.256088 ], [ 25.278798, 5.170408 ], [ 25.128833, 4.927245 ], [ 24.805029, 4.897247 ], [ 24.410531, 5.108784 ], [ 23.297214, 4.609693 ], [ 22.84148, 4.710126 ], [ 22.704124, 4.633051 ], [ 22.405124, 4.02916 ], [ 21.659123, 4.224342 ], [ 20.927591, 4.322786 ], [ 20.290679, 4.691678 ], [ 19.467784, 5.031528 ], [ 18.932312, 4.709506 ], [ 18.542982, 4.201785 ], [ 18.453065, 3.504386 ], [ 17.8099, 3.560196 ], [ 17.133042, 3.728197 ], [ 16.537058, 3.198255 ], [ 16.012852, 2.26764 ], [ 15.907381, 2.557389 ], [ 15.862732, 3.013537 ], [ 15.405396, 3.335301 ], [ 15.03622, 3.851367 ], [ 14.950953, 4.210389 ], [ 14.478372, 4.732605 ], [ 14.558936, 5.030598 ], [ 14.459407, 5.451761 ], [ 14.53656, 6.226959 ], [ 14.776545, 6.408498 ], [ 15.27946, 7.421925 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CAN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CAN","properties":{"name":"Canada"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506]]],[[[-123.510002,48.510011],[-124.012891,48.370846],[-125.655013,48.825005],[-125.954994,49.179996],[-126.850004,49.53],[-127.029993,49.814996],[-128.059336,49.994959],[-128.444584,50.539138],[-128.358414,50.770648],[-127.308581,50.552574],[-126.695001,50.400903],[-125.755007,50.295018],[-125.415002,49.950001],[-124.920768,49.475275],[-123.922509,49.062484],[-123.510002,48.510011]]],[[[-56.134036,50.68701],[-56.795882,49.812309],[-56.143105,50.150117],[-55.471492,49.935815],[-55.822401,49.587129],[-54.935143,49.313011],[-54.473775,49.556691],[-53.476549,49.249139],[-53.786014,48.516781],[-53.086134,48.687804],[-52.958648,48.157164],[-52.648099,47.535548],[-53.069158,46.655499],[-53.521456,46.618292],[-54.178936,46.807066],[-53.961869,47.625207],[-54.240482,47.752279],[-55.400773,46.884994],[-55.997481,46.91972],[-55.291219,47.389562],[-56.250799,47.632545],[-57.325229,47.572807],[-59.266015,47.603348],[-59.419494,47.899454],[-58.796586,48.251525],[-59.231625,48.523188],[-58.391805,49.125581],[-57.35869,50.718274],[-56.73865,51.287438],[-55.870977,51.632094],[-55.406974,51.588273],[-55.600218,51.317075],[-56.134036,50.68701]]],[[[-132.710008,54.040009],[-131.74999,54.120004],[-132.04948,52.984621],[-131.179043,52.180433],[-131.57783,52.182371],[-132.180428,52.639707],[-132.549992,53.100015],[-133.054611,53.411469],[-133.239664,53.85108],[-133.180004,54.169975],[-132.710008,54.040009]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108]]],[[[-85.161308,65.657285],[-84.975764,65.217518],[-84.464012,65.371772],[-83.882626,65.109618],[-82.787577,64.766693],[-81.642014,64.455136],[-81.55344,63.979609],[-80.817361,64.057486],[-80.103451,63.725981],[-80.99102,63.411246],[-82.547178,63.651722],[-83.108798,64.101876],[-84.100417,63.569712],[-85.523405,63.052379],[-85.866769,63.637253],[-87.221983,63.541238],[-86.35276,64.035833],[-86.224886,64.822917],[-85.883848,65.738778],[-85.161308,65.657285]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425],[-75.86588,67.14886]]],[[[-95.647681,69.10769],[-96.269521,68.75704],[-97.617401,69.06003],[-98.431801,68.9507],[-99.797401,69.40003],[-98.917401,69.71003],[-98.218261,70.14354],[-97.157401,69.86003],[-96.557401,69.68003],[-96.257401,69.49003],[-95.647681,69.10769]]],[[[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.018459],[-76.820034,43.628784],[-77.737885,43.629056],[-78.72028,43.625089],[-79.171674,43.466339],[-79.01,43.27],[-78.92,42.965],[-78.939362,42.863611],[-80.247448,42.3662],[-81.277747,42.209026],[-82.439278,41.675105],[-82.690089,41.675105],[-83.02981,41.832796],[-83.142,41.975681],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.137642,43.571088],[-82.337763,44.44],[-82.550925,45.347517],[-83.592851,45.816894],[-83.469551,45.994686],[-83.616131,46.116927],[-83.890765,46.116927],[-84.091851,46.275419],[-84.14212,46.512226],[-84.3367,46.40877],[-84.6049,46.4396],[-84.543749,46.538684],[-84.779238,46.637102],[-84.87608,46.900083],[-85.652363,47.220219],[-86.461991,47.553338],[-87.439793,47.94],[-88.378114,48.302918],[-89.272917,48.019808],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.15907,49],[-97.22872,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49],[-122.97421,49.002538],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766]]],[[[-114.16717,73.12145],[-114.66634,72.65277],[-112.44102,72.9554],[-111.05039,72.4504],[-109.92035,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46476,70.99297],[-102.78537,70.49776],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.09329,69.11962],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18],[-107.12254,69.11922],[-109,68.78],[-111.534149,68.630059],[-113.3132,68.53554],[-113.85496,69.00744],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96],[-116.67473,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.102685],[-76.251404,72.826385],[-77.314438,72.855545],[-78.39167,72.876656],[-79.486252,72.742203],[-79.775833,72.802902],[-80.876099,73.333183],[-80.833885,73.693184],[-80.353058,73.75972],[-78.064438,73.651932],[-76.34,73.102685]]],[[[-86.562179,73.157447],[-85.774371,72.534126],[-84.850112,73.340278],[-82.31559,73.750951],[-80.600088,72.716544],[-80.748942,72.061907],[-78.770639,72.352173],[-77.824624,72.749617],[-75.605845,72.243678],[-74.228616,71.767144],[-74.099141,71.33084],[-72.242226,71.556925],[-71.200015,70.920013],[-68.786054,70.525024],[-67.91497,70.121948],[-66.969033,69.186087],[-68.805123,68.720198],[-66.449866,68.067163],[-64.862314,67.847539],[-63.424934,66.928473],[-61.851981,66.862121],[-62.163177,66.160251],[-63.918444,64.998669],[-65.14886,65.426033],[-66.721219,66.388041],[-68.015016,66.262726],[-68.141287,65.689789],[-67.089646,65.108455],[-65.73208,64.648406],[-65.320168,64.382737],[-64.669406,63.392927],[-65.013804,62.674185],[-66.275045,62.945099],[-68.783186,63.74567],[-67.369681,62.883966],[-66.328297,62.280075],[-66.165568,61.930897],[-68.877367,62.330149],[-71.023437,62.910708],[-72.235379,63.397836],[-71.886278,63.679989],[-73.378306,64.193963],[-74.834419,64.679076],[-74.818503,64.389093],[-77.70998,64.229542],[-78.555949,64.572906],[-77.897281,65.309192],[-76.018274,65.326969],[-73.959795,65.454765],[-74.293883,65.811771],[-73.944912,66.310578],[-72.651167,67.284576],[-72.92606,67.726926],[-73.311618,68.069437],[-74.843307,68.554627],[-76.869101,68.894736],[-76.228649,69.147769],[-77.28737,69.76954],[-78.168634,69.826488],[-78.957242,70.16688],[-79.492455,69.871808],[-81.305471,69.743185],[-84.944706,69.966634],[-87.060003,70.260001],[-88.681713,70.410741],[-89.51342,70.762038],[-88.467721,71.218186],[-89.888151,71.222552],[-90.20516,72.235074],[-89.436577,73.129464],[-88.408242,73.537889],[-85.826151,73.803816],[-86.562179,73.157447]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.196296,72.771992],[-94.269047,72.024596],[-95.409856,72.061881],[-96.033745,72.940277],[-96.018268,73.43743],[-95.495793,73.862417],[-94.503658,74.134907],[-92.420012,74.100025],[-90.509793,73.856732],[-92.003965,72.966244],[-93.196296,72.771992]]],[[[-120.46,71.383602],[-123.09219,70.90164],[-123.62,71.34],[-125.928949,71.868688],[-125.5,72.292261],[-124.80729,73.02256],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893],[-120.10978,74.24135],[-117.55564,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76794,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.383602]]],[[[-93.612756,74.979997],[-94.156909,74.592347],[-95.608681,74.666864],[-96.820932,74.927623],[-96.288587,75.377828],[-94.85082,75.647218],[-93.977747,75.29649],[-93.612756,74.979997]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-94.684086,77.097878],[-93.573921,76.776296],[-91.605023,76.778518],[-90.741846,76.449597],[-90.969661,76.074013],[-89.822238,75.847774],[-89.187083,75.610166],[-87.838276,75.566189],[-86.379192,75.482421],[-84.789625,75.699204],[-82.753445,75.784315],[-81.128531,75.713983],[-80.057511,75.336849],[-79.833933,74.923127],[-80.457771,74.657304],[-81.948843,74.442459],[-83.228894,74.564028],[-86.097452,74.410032],[-88.15035,74.392307],[-89.764722,74.515555],[-92.422441,74.837758],[-92.768285,75.38682],[-92.889906,75.882655],[-93.893824,76.319244],[-95.962457,76.441381],[-97.121379,76.751078],[-96.745123,77.161389],[-94.684086,77.097878]]],[[[-116.198587,77.645287],[-116.335813,76.876962],[-117.106051,76.530032],[-118.040412,76.481172],[-119.899318,76.053213],[-121.499995,75.900019],[-122.854924,76.116543],[-122.854925,76.116543],[-121.157535,76.864508],[-119.103939,77.51222],[-117.570131,77.498319],[-116.198587,77.645287]]],[[[-93.840003,77.519997],[-94.295608,77.491343],[-96.169654,77.555111],[-96.436304,77.834629],[-94.422577,77.820005],[-93.720656,77.634331],[-93.840003,77.519997]]],[[[-110.186938,77.697015],[-112.051191,77.409229],[-113.534279,77.732207],[-112.724587,78.05105],[-111.264443,78.152956],[-109.854452,77.996325],[-110.186938,77.697015]]],[[[-109.663146,78.601973],[-110.881314,78.40692],[-112.542091,78.407902],[-112.525891,78.550555],[-111.50001,78.849994],[-110.963661,78.804441],[-109.663146,78.601973]]],[[[-95.830295,78.056941],[-97.309843,77.850597],[-98.124289,78.082857],[-98.552868,78.458105],[-98.631984,78.87193],[-97.337231,78.831984],[-96.754399,78.765813],[-95.559278,78.418315],[-95.830295,78.056941]]],[[[-100.060192,78.324754],[-99.670939,77.907545],[-101.30394,78.018985],[-102.949809,78.343229],[-105.176133,78.380332],[-104.210429,78.67742],[-105.41958,78.918336],[-105.492289,79.301594],[-103.529282,79.165349],[-100.825158,78.800462],[-100.060192,78.324754]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.509322],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.106322],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.430162],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.970222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.408696,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.652273],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.172059],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.169781],[-68.5,83.106322]]]]}} ]} ================================================ FILE: test/fixtures/world/CAN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 48.92249926 ], [ -101.25, 55.77657302 ], [ -90, 55.77657302 ], [ -90, 48.92249926 ], [ -101.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 79.17133464 ], [ -101.25, 81.09321385 ], [ -90, 81.09321385 ], [ -90, 79.17133464 ], [ -101.25, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.875, 79.17133464 ], [ -106.875, 80.1787135 ], [ -101.25, 80.1787135 ], [ -101.25, 79.17133464 ], [ -106.875, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 48.92249926 ], [ -112.5, 55.77657302 ], [ -101.25, 55.77657302 ], [ -101.25, 48.92249926 ], [ -112.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 55.77657302 ], [ -112.5, 66.51326044 ], [ -90, 66.51326044 ], [ -90, 55.77657302 ], [ -112.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 66.51326044 ], [ -112.5, 74.01954331 ], [ -90, 74.01954331 ], [ -90, 66.51326044 ], [ -112.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 74.01954331 ], [ -112.5, 79.17133464 ], [ -90, 79.17133464 ], [ -90, 74.01954331 ], [ -112.5, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 76.84081641 ], [ -118.125, 78.06198919 ], [ -112.5, 78.06198919 ], [ -112.5, 76.84081641 ], [ -118.125, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 78.06198919 ], [ -118.125, 79.17133464 ], [ -112.5, 79.17133464 ], [ -112.5, 78.06198919 ], [ -118.125, 78.06198919 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 45.08903556 ], [ -123.75, 48.92249926 ], [ -118.125, 48.92249926 ], [ -118.125, 45.08903556 ], [ -123.75, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 48.92249926 ], [ -123.75, 55.77657302 ], [ -112.5, 55.77657302 ], [ -112.5, 48.92249926 ], [ -123.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 66.51326044 ], [ -123.75, 70.61261424 ], [ -112.5, 70.61261424 ], [ -112.5, 66.51326044 ], [ -123.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 70.61261424 ], [ -123.75, 74.01954331 ], [ -112.5, 74.01954331 ], [ -112.5, 70.61261424 ], [ -123.75, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 74.01954331 ], [ -123.75, 76.84081641 ], [ -112.5, 76.84081641 ], [ -112.5, 74.01954331 ], [ -123.75, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 76.84081641 ], [ -123.75, 78.06198919 ], [ -118.125, 78.06198919 ], [ -118.125, 76.84081641 ], [ -123.75, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.375, 45.08903556 ], [ -129.375, 48.92249926 ], [ -123.75, 48.92249926 ], [ -123.75, 45.08903556 ], [ -129.375, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.375, 70.61261424 ], [ -129.375, 72.39570571 ], [ -123.75, 72.39570571 ], [ -123.75, 70.61261424 ], [ -129.375, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.375, 72.39570571 ], [ -129.375, 74.01954331 ], [ -123.75, 74.01954331 ], [ -123.75, 72.39570571 ], [ -129.375, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.375, 74.01954331 ], [ -129.375, 75.49715732 ], [ -123.75, 75.49715732 ], [ -123.75, 74.01954331 ], [ -129.375, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -135, 48.92249926 ], [ -135, 55.77657302 ], [ -123.75, 55.77657302 ], [ -123.75, 48.92249926 ], [ -135, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -135, 55.77657302 ], [ -135, 66.51326044 ], [ -112.5, 66.51326044 ], [ -112.5, 55.77657302 ], [ -135, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -135, 66.51326044 ], [ -135, 70.61261424 ], [ -123.75, 70.61261424 ], [ -123.75, 66.51326044 ], [ -135, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.625, 58.81374172 ], [ -140.625, 61.60639637 ], [ -135, 61.60639637 ], [ -135, 58.81374172 ], [ -140.625, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.25, 58.81374172 ], [ -146.25, 61.60639637 ], [ -140.625, 61.60639637 ], [ -140.625, 58.81374172 ], [ -146.25, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.25, 61.60639637 ], [ -146.25, 66.51326044 ], [ -135, 66.51326044 ], [ -135, 61.60639637 ], [ -146.25, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.25, 66.51326044 ], [ -146.25, 70.61261424 ], [ -135, 70.61261424 ], [ -135, 66.51326044 ], [ -146.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 45.08903556 ], [ -56.25, 48.92249926 ], [ -50.625, 48.92249926 ], [ -50.625, 45.08903556 ], [ -56.25, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 48.92249926 ], [ -56.25, 52.48278022 ], [ -50.625, 52.48278022 ], [ -50.625, 48.92249926 ], [ -56.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 52.48278022 ], [ -56.25, 55.77657302 ], [ -50.625, 55.77657302 ], [ -50.625, 52.48278022 ], [ -56.25, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 55.77657302 ], [ -61.875, 58.81374172 ], [ -56.25, 58.81374172 ], [ -56.25, 55.77657302 ], [ -61.875, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 66.51326044 ], [ -61.875, 68.65655498 ], [ -56.25, 68.65655498 ], [ -56.25, 66.51326044 ], [ -61.875, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 81.92318633 ], [ -61.875, 82.67628498 ], [ -56.25, 82.67628498 ], [ -56.25, 81.92318633 ], [ -61.875, 81.92318633 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 40.97989807 ], [ -67.5, 48.92249926 ], [ -56.25, 48.92249926 ], [ -56.25, 40.97989807 ], [ -67.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 48.92249926 ], [ -67.5, 55.77657302 ], [ -56.25, 55.77657302 ], [ -56.25, 48.92249926 ], [ -67.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 55.77657302 ], [ -67.5, 58.81374172 ], [ -61.875, 58.81374172 ], [ -61.875, 55.77657302 ], [ -67.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 58.81374172 ], [ -67.5, 61.60639637 ], [ -61.875, 61.60639637 ], [ -61.875, 58.81374172 ], [ -67.5, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 61.60639637 ], [ -67.5, 64.1681069 ], [ -61.875, 64.1681069 ], [ -61.875, 61.60639637 ], [ -67.5, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 64.1681069 ], [ -67.5, 66.51326044 ], [ -61.875, 66.51326044 ], [ -61.875, 64.1681069 ], [ -67.5, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 66.51326044 ], [ -67.5, 68.65655498 ], [ -61.875, 68.65655498 ], [ -61.875, 66.51326044 ], [ -67.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 68.65655498 ], [ -67.5, 70.61261424 ], [ -61.875, 70.61261424 ], [ -61.875, 68.65655498 ], [ -67.5, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 80.1787135 ], [ -67.5, 81.09321385 ], [ -61.875, 81.09321385 ], [ -61.875, 80.1787135 ], [ -67.5, 80.1787135 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 81.09321385 ], [ -67.5, 81.92318633 ], [ -61.875, 81.92318633 ], [ -61.875, 81.09321385 ], [ -67.5, 81.09321385 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 81.92318633 ], [ -67.5, 82.67628498 ], [ -61.875, 82.67628498 ], [ -61.875, 81.92318633 ], [ -67.5, 81.92318633 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 82.67628498 ], [ -67.5, 83.35951133 ], [ -61.875, 83.35951133 ], [ -61.875, 82.67628498 ], [ -67.5, 82.67628498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 70.61261424 ], [ -73.125, 72.39570571 ], [ -67.5, 72.39570571 ], [ -67.5, 70.61261424 ], [ -73.125, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 82.67628498 ], [ -73.125, 83.35951133 ], [ -67.5, 83.35951133 ], [ -67.5, 82.67628498 ], [ -73.125, 82.67628498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 40.97989807 ], [ -78.75, 48.92249926 ], [ -67.5, 48.92249926 ], [ -67.5, 40.97989807 ], [ -78.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 48.92249926 ], [ -78.75, 55.77657302 ], [ -67.5, 55.77657302 ], [ -67.5, 48.92249926 ], [ -78.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 55.77657302 ], [ -78.75, 61.60639637 ], [ -67.5, 61.60639637 ], [ -67.5, 55.77657302 ], [ -78.75, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 61.60639637 ], [ -78.75, 66.51326044 ], [ -67.5, 66.51326044 ], [ -67.5, 61.60639637 ], [ -78.75, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 66.51326044 ], [ -78.75, 70.61261424 ], [ -67.5, 70.61261424 ], [ -67.5, 66.51326044 ], [ -78.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 70.61261424 ], [ -78.75, 72.39570571 ], [ -73.125, 72.39570571 ], [ -73.125, 70.61261424 ], [ -78.75, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 72.39570571 ], [ -78.75, 74.01954331 ], [ -73.125, 74.01954331 ], [ -73.125, 72.39570571 ], [ -78.75, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 75.49715732 ], [ -78.75, 76.84081641 ], [ -73.125, 76.84081641 ], [ -73.125, 75.49715732 ], [ -78.75, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 76.84081641 ], [ -78.75, 78.06198919 ], [ -73.125, 78.06198919 ], [ -73.125, 76.84081641 ], [ -78.75, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 78.06198919 ], [ -78.75, 79.17133464 ], [ -73.125, 79.17133464 ], [ -73.125, 78.06198919 ], [ -78.75, 78.06198919 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 82.67628498 ], [ -78.75, 83.35951133 ], [ -73.125, 83.35951133 ], [ -73.125, 82.67628498 ], [ -78.75, 82.67628498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 40.97989807 ], [ -84.375, 45.08903556 ], [ -78.75, 45.08903556 ], [ -78.75, 40.97989807 ], [ -84.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 45.08903556 ], [ -84.375, 48.92249926 ], [ -78.75, 48.92249926 ], [ -78.75, 45.08903556 ], [ -84.375, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 82.67628498 ], [ -84.375, 83.35951133 ], [ -78.75, 83.35951133 ], [ -78.75, 82.67628498 ], [ -84.375, 82.67628498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 45.08903556 ], [ -90, 48.92249926 ], [ -84.375, 48.92249926 ], [ -84.375, 45.08903556 ], [ -90, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 48.92249926 ], [ -90, 55.77657302 ], [ -78.75, 55.77657302 ], [ -78.75, 48.92249926 ], [ -90, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 55.77657302 ], [ -90, 58.81374172 ], [ -84.375, 58.81374172 ], [ -84.375, 55.77657302 ], [ -90, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 61.60639637 ], [ -90, 66.51326044 ], [ -78.75, 66.51326044 ], [ -78.75, 61.60639637 ], [ -90, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 66.51326044 ], [ -90, 70.61261424 ], [ -78.75, 70.61261424 ], [ -78.75, 66.51326044 ], [ -90, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 70.61261424 ], [ -90, 74.01954331 ], [ -78.75, 74.01954331 ], [ -78.75, 70.61261424 ], [ -90, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 74.01954331 ], [ -90, 76.84081641 ], [ -78.75, 76.84081641 ], [ -78.75, 74.01954331 ], [ -90, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 76.84081641 ], [ -90, 79.17133464 ], [ -78.75, 79.17133464 ], [ -78.75, 76.84081641 ], [ -90, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 79.17133464 ], [ -90, 82.67628498 ], [ -67.5, 82.67628498 ], [ -67.5, 79.17133464 ], [ -90, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 45.08903556 ], [ -95.625, 48.92249926 ], [ -90, 48.92249926 ], [ -90, 45.08903556 ], [ -95.625, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 81.09321385 ], [ -95.625, 81.92318633 ], [ -90, 81.92318633 ], [ -90, 81.09321385 ], [ -95.625, 81.09321385 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 81.92318633 ], [ -95.625, 82.67628498 ], [ -90, 82.67628498 ], [ -90, 81.92318633 ], [ -95.625, 81.92318633 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.6645, 46.55001 ], [ -62.9393, 46.41587 ], [ -62.01208, 46.44314 ], [ -62.50391, 46.03339 ], [ -62.87433, 45.96818 ], [ -64.1428, 46.39265 ], [ -64.39261, 46.72747 ], [ -64.01486, 47.03601 ], [ -63.6645, 46.55001 ] ] ], [ [ [ -61.806305, 49.10506 ], [ -62.29318, 49.08717 ], [ -63.58926, 49.40069 ], [ -64.51912, 49.87304 ], [ -64.17322, 49.95718 ], [ -62.85829, 49.70641 ], [ -61.835585, 49.28855 ], [ -61.806305, 49.10506 ] ] ], [ [ [ -123.510002, 48.510011 ], [ -124.012891, 48.370846 ], [ -125.655013, 48.825005 ], [ -125.954994, 49.179996 ], [ -126.850004, 49.53 ], [ -127.029993, 49.814996 ], [ -128.059336, 49.994959 ], [ -128.444584, 50.539138 ], [ -128.358414, 50.770648 ], [ -127.308581, 50.552574 ], [ -126.695001, 50.400903 ], [ -125.755007, 50.295018 ], [ -125.415002, 49.950001 ], [ -124.920768, 49.475275 ], [ -123.922509, 49.062484 ], [ -123.510002, 48.510011 ] ] ], [ [ [ -56.134036, 50.68701 ], [ -56.795882, 49.812309 ], [ -56.143105, 50.150117 ], [ -55.471492, 49.935815 ], [ -55.822401, 49.587129 ], [ -54.935143, 49.313011 ], [ -54.473775, 49.556691 ], [ -53.476549, 49.249139 ], [ -53.786014, 48.516781 ], [ -53.086134, 48.687804 ], [ -52.958648, 48.157164 ], [ -52.648099, 47.535548 ], [ -53.069158, 46.655499 ], [ -53.521456, 46.618292 ], [ -54.178936, 46.807066 ], [ -53.961869, 47.625207 ], [ -54.240482, 47.752279 ], [ -55.400773, 46.884994 ], [ -55.997481, 46.91972 ], [ -55.291219, 47.389562 ], [ -56.250799, 47.632545 ], [ -57.325229, 47.572807 ], [ -59.266015, 47.603348 ], [ -59.419494, 47.899454 ], [ -58.796586, 48.251525 ], [ -59.231625, 48.523188 ], [ -58.391805, 49.125581 ], [ -57.35869, 50.718274 ], [ -56.73865, 51.287438 ], [ -55.870977, 51.632094 ], [ -55.406974, 51.588273 ], [ -55.600218, 51.317075 ], [ -56.134036, 50.68701 ] ] ], [ [ [ -132.710008, 54.040009 ], [ -131.74999, 54.120004 ], [ -132.04948, 52.984621 ], [ -131.179043, 52.180433 ], [ -131.57783, 52.182371 ], [ -132.180428, 52.639707 ], [ -132.549992, 53.100015 ], [ -133.054611, 53.411469 ], [ -133.239664, 53.85108 ], [ -133.180004, 54.169975 ], [ -132.710008, 54.040009 ] ] ], [ [ [ -79.26582, 62.158675 ], [ -79.65752, 61.63308 ], [ -80.09956, 61.7181 ], [ -80.36215, 62.01649 ], [ -80.315395, 62.085565 ], [ -79.92939, 62.3856 ], [ -79.52002, 62.36371 ], [ -79.26582, 62.158675 ] ] ], [ [ [ -81.89825, 62.7108 ], [ -83.06857, 62.15922 ], [ -83.77462, 62.18231 ], [ -83.99367, 62.4528 ], [ -83.25048, 62.91409 ], [ -81.87699, 62.90458 ], [ -81.89825, 62.7108 ] ] ], [ [ [ -85.161308, 65.657285 ], [ -84.975764, 65.217518 ], [ -84.464012, 65.371772 ], [ -83.882626, 65.109618 ], [ -82.787577, 64.766693 ], [ -81.642014, 64.455136 ], [ -81.55344, 63.979609 ], [ -80.817361, 64.057486 ], [ -80.103451, 63.725981 ], [ -80.99102, 63.411246 ], [ -82.547178, 63.651722 ], [ -83.108798, 64.101876 ], [ -84.100417, 63.569712 ], [ -85.523405, 63.052379 ], [ -85.866769, 63.637253 ], [ -87.221983, 63.541238 ], [ -86.35276, 64.035833 ], [ -86.224886, 64.822917 ], [ -85.883848, 65.738778 ], [ -85.161308, 65.657285 ] ] ], [ [ [ -75.86588, 67.14886 ], [ -76.98687, 67.09873 ], [ -77.2364, 67.58809 ], [ -76.81166, 68.14856 ], [ -75.89521, 68.28721 ], [ -75.1145, 68.01036 ], [ -75.10333, 67.58202 ], [ -75.21597, 67.44425 ], [ -75.86588, 67.14886 ] ] ], [ [ [ -95.647681, 69.10769 ], [ -96.269521, 68.75704 ], [ -97.617401, 69.06003 ], [ -98.431801, 68.9507 ], [ -99.797401, 69.40003 ], [ -98.917401, 69.71003 ], [ -98.218261, 70.14354 ], [ -97.157401, 69.86003 ], [ -96.557401, 69.68003 ], [ -96.257401, 69.49003 ], [ -95.647681, 69.10769 ] ] ], [ [ [ -90.5471, 69.49766 ], [ -90.55151, 68.47499 ], [ -89.21515, 69.25873 ], [ -88.01966, 68.61508 ], [ -88.31749, 67.87338 ], [ -87.35017, 67.19872 ], [ -86.30607, 67.92146 ], [ -85.57664, 68.78456 ], [ -85.52197, 69.88211 ], [ -84.10081, 69.80539 ], [ -82.62258, 69.65826 ], [ -81.28043, 69.16202 ], [ -81.2202, 68.66567 ], [ -81.96436, 68.13253 ], [ -81.25928, 67.59716 ], [ -81.38653, 67.11078 ], [ -83.34456, 66.41154 ], [ -84.73542, 66.2573 ], [ -85.76943, 66.55833 ], [ -86.0676, 66.05625 ], [ -87.03143, 65.21297 ], [ -87.32324, 64.77563 ], [ -88.48296, 64.09897 ], [ -89.91444, 64.03273 ], [ -90.70398, 63.61017 ], [ -90.77004, 62.96021 ], [ -91.93342, 62.83508 ], [ -93.15698, 62.02469 ], [ -94.24153, 60.89865 ], [ -94.62931, 60.11021 ], [ -94.6846, 58.94882 ], [ -93.21502, 58.78212 ], [ -92.76462, 57.84571 ], [ -92.29703, 57.08709 ], [ -90.89769, 57.28468 ], [ -89.03953, 56.85172 ], [ -88.03978, 56.47162 ], [ -87.32421, 55.99914 ], [ -86.07121, 55.72383 ], [ -85.01181, 55.3026 ], [ -83.36055, 55.24489 ], [ -82.27285, 55.14832 ], [ -82.4362, 54.28227 ], [ -82.12502, 53.27703 ], [ -81.40075, 52.15788 ], [ -79.91289, 51.20842 ], [ -79.14301, 51.53393 ], [ -78.60191, 52.56208 ], [ -79.12421, 54.14145 ], [ -79.82958, 54.66772 ], [ -78.22874, 55.13645 ], [ -77.0956, 55.83741 ], [ -76.54137, 56.53423 ], [ -76.62319, 57.20263 ], [ -77.30226, 58.05209 ], [ -78.51688, 58.80458 ], [ -77.33676, 59.85261 ], [ -77.77272, 60.75788 ], [ -78.10687, 62.31964 ], [ -77.41067, 62.55053 ], [ -75.69621, 62.2784 ], [ -74.6682, 62.18111 ], [ -73.83988, 62.4438 ], [ -72.90853, 62.10507 ], [ -71.67708, 61.52535 ], [ -71.37369, 61.13717 ], [ -69.59042, 61.06141 ], [ -69.62033, 60.22125 ], [ -69.2879, 58.95736 ], [ -68.37455, 58.80106 ], [ -67.64976, 58.21206 ], [ -66.20178, 58.76731 ], [ -65.24517, 59.87071 ], [ -64.58352, 60.33558 ], [ -63.80475, 59.4426 ], [ -62.50236, 58.16708 ], [ -61.39655, 56.96745 ], [ -61.79866, 56.33945 ], [ -60.46853, 55.77548 ], [ -59.56962, 55.20407 ], [ -57.97508, 54.94549 ], [ -57.3332, 54.6265 ], [ -56.93689, 53.78032 ], [ -56.15811, 53.64749 ], [ -55.75632, 53.27036 ], [ -55.68338, 52.14664 ], [ -56.40916, 51.7707 ], [ -57.12691, 51.41972 ], [ -58.77482, 51.0643 ], [ -60.03309, 50.24277 ], [ -61.72366, 50.08046 ], [ -63.86251, 50.29099 ], [ -65.36331, 50.2982 ], [ -66.39905, 50.22897 ], [ -67.23631, 49.51156 ], [ -68.51114, 49.06836 ], [ -69.95362, 47.74488 ], [ -71.10458, 46.82171 ], [ -70.25522, 46.98606 ], [ -68.65, 48.3 ], [ -66.55243, 49.1331 ], [ -65.05626, 49.23278 ], [ -64.17099, 48.74248 ], [ -65.11545, 48.07085 ], [ -64.79854, 46.99297 ], [ -64.47219, 46.23849 ], [ -63.17329, 45.73902 ], [ -61.52072, 45.88377 ], [ -60.51815, 47.00793 ], [ -60.4486, 46.28264 ], [ -59.80287, 45.9204 ], [ -61.03988, 45.26525 ], [ -63.25471, 44.67014 ], [ -64.24656, 44.26553 ], [ -65.36406, 43.54523 ], [ -66.1234, 43.61867 ], [ -66.16173, 44.46512 ], [ -64.42549, 45.29204 ], [ -66.02605, 45.25931 ], [ -67.13741, 45.13753 ], [ -67.79134, 45.70281 ], [ -67.79046, 47.06636 ], [ -68.23444, 47.35486 ], [ -68.905, 47.185 ], [ -69.237216, 47.447781 ], [ -69.99997, 46.69307 ], [ -70.305, 45.915 ], [ -70.66, 45.46 ], [ -71.08482, 45.30524 ], [ -71.405, 45.255 ], [ -71.50506, 45.0082 ], [ -73.34783, 45.00738 ], [ -74.867, 45.00048 ], [ -75.31821, 44.81645 ], [ -76.375, 44.09631 ], [ -76.5, 44.018459 ], [ -76.820034, 43.628784 ], [ -77.737885, 43.629056 ], [ -78.72028, 43.625089 ], [ -79.171674, 43.466339 ], [ -79.01, 43.27 ], [ -78.92, 42.965 ], [ -78.939362, 42.863611 ], [ -80.247448, 42.3662 ], [ -81.277747, 42.209026 ], [ -82.439278, 41.675105 ], [ -82.690089, 41.675105 ], [ -83.02981, 41.832796 ], [ -83.142, 41.975681 ], [ -83.12, 42.08 ], [ -82.9, 42.43 ], [ -82.43, 42.98 ], [ -82.137642, 43.571088 ], [ -82.337763, 44.44 ], [ -82.550925, 45.347517 ], [ -83.592851, 45.816894 ], [ -83.469551, 45.994686 ], [ -83.616131, 46.116927 ], [ -83.890765, 46.116927 ], [ -84.091851, 46.275419 ], [ -84.14212, 46.512226 ], [ -84.3367, 46.40877 ], [ -84.6049, 46.4396 ], [ -84.543749, 46.538684 ], [ -84.779238, 46.637102 ], [ -84.87608, 46.900083 ], [ -85.652363, 47.220219 ], [ -86.461991, 47.553338 ], [ -87.439793, 47.94 ], [ -88.378114, 48.302918 ], [ -89.272917, 48.019808 ], [ -89.6, 48.01 ], [ -90.83, 48.27 ], [ -91.64, 48.14 ], [ -92.61, 48.45 ], [ -93.63087, 48.60926 ], [ -94.32914, 48.67074 ], [ -94.64, 48.84 ], [ -94.81758, 49.38905 ], [ -95.15609, 49.38425 ], [ -95.15907, 49 ], [ -97.22872, 49.0007 ], [ -100.65, 49 ], [ -104.04826, 48.99986 ], [ -107.05, 49 ], [ -110.05, 49 ], [ -113, 49 ], [ -116.04818, 49 ], [ -117.03121, 49 ], [ -120, 49 ], [ -122.84, 49 ], [ -122.97421, 49.002538 ], [ -124.91024, 49.98456 ], [ -125.62461, 50.41656 ], [ -127.43561, 50.83061 ], [ -127.99276, 51.71583 ], [ -127.85032, 52.32961 ], [ -129.12979, 52.75538 ], [ -129.30523, 53.56159 ], [ -130.51497, 54.28757 ], [ -130.53611, 54.80278 ], [ -129.98, 55.285 ], [ -130.00778, 55.91583 ], [ -131.70781, 56.55212 ], [ -132.73042, 57.69289 ], [ -133.35556, 58.41028 ], [ -134.27111, 58.86111 ], [ -134.945, 59.27056 ], [ -135.47583, 59.78778 ], [ -136.47972, 59.46389 ], [ -137.4525, 58.905 ], [ -138.34089, 59.56211 ], [ -139.039, 60 ], [ -140.013, 60.27682 ], [ -140.99778, 60.30639 ], [ -140.9925, 66.00003 ], [ -140.986, 69.712 ], [ -139.12052, 69.47102 ], [ -137.54636, 68.99002 ], [ -136.50358, 68.89804 ], [ -135.62576, 69.31512 ], [ -134.41464, 69.62743 ], [ -132.92925, 69.50534 ], [ -131.43136, 69.94451 ], [ -129.79471, 70.19369 ], [ -129.10773, 69.77927 ], [ -128.36156, 70.01286 ], [ -128.13817, 70.48384 ], [ -127.44712, 70.37721 ], [ -125.75632, 69.48058 ], [ -124.42483, 70.1584 ], [ -124.28968, 69.39969 ], [ -123.06108, 69.56372 ], [ -122.6835, 69.85553 ], [ -121.47226, 69.79778 ], [ -119.94288, 69.37786 ], [ -117.60268, 69.01128 ], [ -116.22643, 68.84151 ], [ -115.2469, 68.90591 ], [ -113.89794, 68.3989 ], [ -115.30489, 67.90261 ], [ -113.49727, 67.68815 ], [ -110.798, 67.80612 ], [ -109.94619, 67.98104 ], [ -108.8802, 67.38144 ], [ -107.79239, 67.88736 ], [ -108.81299, 68.31164 ], [ -108.16721, 68.65392 ], [ -106.95, 68.7 ], [ -106.15, 68.8 ], [ -105.34282, 68.56122 ], [ -104.33791, 68.018 ], [ -103.22115, 68.09775 ], [ -101.45433, 67.64689 ], [ -99.90195, 67.80566 ], [ -98.4432, 67.78165 ], [ -98.5586, 68.40394 ], [ -97.66948, 68.57864 ], [ -96.11991, 68.23939 ], [ -96.12588, 67.29338 ], [ -95.48943, 68.0907 ], [ -94.685, 68.06383 ], [ -94.23282, 69.06903 ], [ -95.30408, 69.68571 ], [ -96.47131, 70.08976 ], [ -96.39115, 71.19482 ], [ -95.2088, 71.92053 ], [ -93.88997, 71.76015 ], [ -92.87818, 71.31869 ], [ -91.51964, 70.19129 ], [ -92.40692, 69.69997 ], [ -90.5471, 69.49766 ] ] ], [ [ [ -114.16717, 73.12145 ], [ -114.66634, 72.65277 ], [ -112.44102, 72.9554 ], [ -111.05039, 72.4504 ], [ -109.92035, 72.96113 ], [ -109.00654, 72.63335 ], [ -108.18835, 71.65089 ], [ -107.68599, 72.06548 ], [ -108.39639, 73.08953 ], [ -107.51645, 73.23598 ], [ -106.52259, 73.07601 ], [ -105.40246, 72.67259 ], [ -104.77484, 71.6984 ], [ -104.46476, 70.99297 ], [ -102.78537, 70.49776 ], [ -100.98078, 70.02432 ], [ -101.08929, 69.58447 ], [ -102.73116, 69.50402 ], [ -102.09329, 69.11962 ], [ -102.43024, 68.75282 ], [ -104.24, 68.91 ], [ -105.96, 69.18 ], [ -107.12254, 69.11922 ], [ -109, 68.78 ], [ -111.534149, 68.630059 ], [ -113.3132, 68.53554 ], [ -113.85496, 69.00744 ], [ -115.22, 69.28 ], [ -116.10794, 69.16821 ], [ -117.34, 69.96 ], [ -116.67473, 70.06655 ], [ -115.13112, 70.2373 ], [ -113.72141, 70.19237 ], [ -112.4161, 70.36638 ], [ -114.35, 70.6 ], [ -116.48684, 70.52045 ], [ -117.9048, 70.54056 ], [ -118.43238, 70.9092 ], [ -116.11311, 71.30918 ], [ -117.65568, 71.2952 ], [ -119.40199, 71.55859 ], [ -118.56267, 72.30785 ], [ -117.86642, 72.70594 ], [ -115.18909, 73.31459 ], [ -114.16717, 73.12145 ] ] ], [ [ [ -104.5, 73.42 ], [ -105.38, 72.76 ], [ -106.94, 73.46 ], [ -106.6, 73.6 ], [ -105.26, 73.64 ], [ -104.5, 73.42 ] ] ], [ [ [ -76.34, 73.102685 ], [ -76.251404, 72.826385 ], [ -77.314438, 72.855545 ], [ -78.39167, 72.876656 ], [ -79.486252, 72.742203 ], [ -79.775833, 72.802902 ], [ -80.876099, 73.333183 ], [ -80.833885, 73.693184 ], [ -80.353058, 73.75972 ], [ -78.064438, 73.651932 ], [ -76.34, 73.102685 ] ] ], [ [ [ -86.562179, 73.157447 ], [ -85.774371, 72.534126 ], [ -84.850112, 73.340278 ], [ -82.31559, 73.750951 ], [ -80.600088, 72.716544 ], [ -80.748942, 72.061907 ], [ -78.770639, 72.352173 ], [ -77.824624, 72.749617 ], [ -75.605845, 72.243678 ], [ -74.228616, 71.767144 ], [ -74.099141, 71.33084 ], [ -72.242226, 71.556925 ], [ -71.200015, 70.920013 ], [ -68.786054, 70.525024 ], [ -67.91497, 70.121948 ], [ -66.969033, 69.186087 ], [ -68.805123, 68.720198 ], [ -66.449866, 68.067163 ], [ -64.862314, 67.847539 ], [ -63.424934, 66.928473 ], [ -61.851981, 66.862121 ], [ -62.163177, 66.160251 ], [ -63.918444, 64.998669 ], [ -65.14886, 65.426033 ], [ -66.721219, 66.388041 ], [ -68.015016, 66.262726 ], [ -68.141287, 65.689789 ], [ -67.089646, 65.108455 ], [ -65.73208, 64.648406 ], [ -65.320168, 64.382737 ], [ -64.669406, 63.392927 ], [ -65.013804, 62.674185 ], [ -66.275045, 62.945099 ], [ -68.783186, 63.74567 ], [ -67.369681, 62.883966 ], [ -66.328297, 62.280075 ], [ -66.165568, 61.930897 ], [ -68.877367, 62.330149 ], [ -71.023437, 62.910708 ], [ -72.235379, 63.397836 ], [ -71.886278, 63.679989 ], [ -73.378306, 64.193963 ], [ -74.834419, 64.679076 ], [ -74.818503, 64.389093 ], [ -77.70998, 64.229542 ], [ -78.555949, 64.572906 ], [ -77.897281, 65.309192 ], [ -76.018274, 65.326969 ], [ -73.959795, 65.454765 ], [ -74.293883, 65.811771 ], [ -73.944912, 66.310578 ], [ -72.651167, 67.284576 ], [ -72.92606, 67.726926 ], [ -73.311618, 68.069437 ], [ -74.843307, 68.554627 ], [ -76.869101, 68.894736 ], [ -76.228649, 69.147769 ], [ -77.28737, 69.76954 ], [ -78.168634, 69.826488 ], [ -78.957242, 70.16688 ], [ -79.492455, 69.871808 ], [ -81.305471, 69.743185 ], [ -84.944706, 69.966634 ], [ -87.060003, 70.260001 ], [ -88.681713, 70.410741 ], [ -89.51342, 70.762038 ], [ -88.467721, 71.218186 ], [ -89.888151, 71.222552 ], [ -90.20516, 72.235074 ], [ -89.436577, 73.129464 ], [ -88.408242, 73.537889 ], [ -85.826151, 73.803816 ], [ -86.562179, 73.157447 ] ] ], [ [ [ -100.35642, 73.84389 ], [ -99.16387, 73.63339 ], [ -97.38, 73.76 ], [ -97.12, 73.47 ], [ -98.05359, 72.99052 ], [ -96.54, 72.56 ], [ -96.72, 71.66 ], [ -98.35966, 71.27285 ], [ -99.32286, 71.35639 ], [ -100.01482, 71.73827 ], [ -102.5, 72.51 ], [ -102.48, 72.83 ], [ -100.43836, 72.70588 ], [ -101.54, 73.36 ], [ -100.35642, 73.84389 ] ] ], [ [ [ -93.196296, 72.771992 ], [ -94.269047, 72.024596 ], [ -95.409856, 72.061881 ], [ -96.033745, 72.940277 ], [ -96.018268, 73.43743 ], [ -95.495793, 73.862417 ], [ -94.503658, 74.134907 ], [ -92.420012, 74.100025 ], [ -90.509793, 73.856732 ], [ -92.003965, 72.966244 ], [ -93.196296, 72.771992 ] ] ], [ [ [ -120.46, 71.383602 ], [ -123.09219, 70.90164 ], [ -123.62, 71.34 ], [ -125.928949, 71.868688 ], [ -125.5, 72.292261 ], [ -124.80729, 73.02256 ], [ -123.94, 73.68 ], [ -124.91775, 74.29275 ], [ -121.53788, 74.44893 ], [ -120.10978, 74.24135 ], [ -117.55564, 74.18577 ], [ -116.58442, 73.89607 ], [ -115.51081, 73.47519 ], [ -116.76794, 73.22292 ], [ -119.22, 72.52 ], [ -120.46, 71.82 ], [ -120.46, 71.383602 ] ] ], [ [ [ -93.612756, 74.979997 ], [ -94.156909, 74.592347 ], [ -95.608681, 74.666864 ], [ -96.820932, 74.927623 ], [ -96.288587, 75.377828 ], [ -94.85082, 75.647218 ], [ -93.977747, 75.29649 ], [ -93.612756, 74.979997 ] ] ], [ [ [ -98.5, 76.72 ], [ -97.735585, 76.25656 ], [ -97.704415, 75.74344 ], [ -98.16, 75 ], [ -99.80874, 74.89744 ], [ -100.88366, 75.05736 ], [ -100.86292, 75.64075 ], [ -102.50209, 75.5638 ], [ -102.56552, 76.3366 ], [ -101.48973, 76.30537 ], [ -99.98349, 76.64634 ], [ -98.57699, 76.58859 ], [ -98.5, 76.72 ] ] ], [ [ [ -108.21141, 76.20168 ], [ -107.81943, 75.84552 ], [ -106.92893, 76.01282 ], [ -105.881, 75.9694 ], [ -105.70498, 75.47951 ], [ -106.31347, 75.00527 ], [ -109.7, 74.85 ], [ -112.22307, 74.41696 ], [ -113.74381, 74.39427 ], [ -113.87135, 74.72029 ], [ -111.79421, 75.1625 ], [ -116.31221, 75.04343 ], [ -117.7104, 75.2222 ], [ -116.34602, 76.19903 ], [ -115.40487, 76.47887 ], [ -112.59056, 76.14134 ], [ -110.81422, 75.54919 ], [ -109.0671, 75.47321 ], [ -110.49726, 76.42982 ], [ -109.5811, 76.79417 ], [ -108.54859, 76.67832 ], [ -108.21141, 76.20168 ] ] ], [ [ [ -94.684086, 77.097878 ], [ -93.573921, 76.776296 ], [ -91.605023, 76.778518 ], [ -90.741846, 76.449597 ], [ -90.969661, 76.074013 ], [ -89.822238, 75.847774 ], [ -89.187083, 75.610166 ], [ -87.838276, 75.566189 ], [ -86.379192, 75.482421 ], [ -84.789625, 75.699204 ], [ -82.753445, 75.784315 ], [ -81.128531, 75.713983 ], [ -80.057511, 75.336849 ], [ -79.833933, 74.923127 ], [ -80.457771, 74.657304 ], [ -81.948843, 74.442459 ], [ -83.228894, 74.564028 ], [ -86.097452, 74.410032 ], [ -88.15035, 74.392307 ], [ -89.764722, 74.515555 ], [ -92.422441, 74.837758 ], [ -92.768285, 75.38682 ], [ -92.889906, 75.882655 ], [ -93.893824, 76.319244 ], [ -95.962457, 76.441381 ], [ -97.121379, 76.751078 ], [ -96.745123, 77.161389 ], [ -94.684086, 77.097878 ] ] ], [ [ [ -116.198587, 77.645287 ], [ -116.335813, 76.876962 ], [ -117.106051, 76.530032 ], [ -118.040412, 76.481172 ], [ -119.899318, 76.053213 ], [ -121.499995, 75.900019 ], [ -122.854924, 76.116543 ], [ -122.854925, 76.116543 ], [ -121.157535, 76.864508 ], [ -119.103939, 77.51222 ], [ -117.570131, 77.498319 ], [ -116.198587, 77.645287 ] ] ], [ [ [ -93.840003, 77.519997 ], [ -94.295608, 77.491343 ], [ -96.169654, 77.555111 ], [ -96.436304, 77.834629 ], [ -94.422577, 77.820005 ], [ -93.720656, 77.634331 ], [ -93.840003, 77.519997 ] ] ], [ [ [ -110.186938, 77.697015 ], [ -112.051191, 77.409229 ], [ -113.534279, 77.732207 ], [ -112.724587, 78.05105 ], [ -111.264443, 78.152956 ], [ -109.854452, 77.996325 ], [ -110.186938, 77.697015 ] ] ], [ [ [ -109.663146, 78.601973 ], [ -110.881314, 78.40692 ], [ -112.542091, 78.407902 ], [ -112.525891, 78.550555 ], [ -111.50001, 78.849994 ], [ -110.963661, 78.804441 ], [ -109.663146, 78.601973 ] ] ], [ [ [ -95.830295, 78.056941 ], [ -97.309843, 77.850597 ], [ -98.124289, 78.082857 ], [ -98.552868, 78.458105 ], [ -98.631984, 78.87193 ], [ -97.337231, 78.831984 ], [ -96.754399, 78.765813 ], [ -95.559278, 78.418315 ], [ -95.830295, 78.056941 ] ] ], [ [ [ -100.060192, 78.324754 ], [ -99.670939, 77.907545 ], [ -101.30394, 78.018985 ], [ -102.949809, 78.343229 ], [ -105.176133, 78.380332 ], [ -104.210429, 78.67742 ], [ -105.41958, 78.918336 ], [ -105.492289, 79.301594 ], [ -103.529282, 79.165349 ], [ -100.825158, 78.800462 ], [ -100.060192, 78.324754 ] ] ], [ [ [ -87.02, 79.66 ], [ -85.81435, 79.3369 ], [ -87.18756, 79.0393 ], [ -89.03535, 78.28723 ], [ -90.80436, 78.21533 ], [ -92.87669, 78.34333 ], [ -93.95116, 78.75099 ], [ -93.93574, 79.11373 ], [ -93.14524, 79.3801 ], [ -94.974, 79.37248 ], [ -96.07614, 79.70502 ], [ -96.70972, 80.15777 ], [ -96.01644, 80.60233 ], [ -95.32345, 80.90729 ], [ -94.29843, 80.97727 ], [ -94.73542, 81.20646 ], [ -92.40984, 81.25739 ], [ -91.13289, 80.72345 ], [ -89.45, 80.509322 ], [ -87.81, 80.32 ], [ -87.02, 79.66 ] ] ], [ [ [ -68.5, 83.106322 ], [ -65.82735, 83.02801 ], [ -63.68, 82.9 ], [ -61.85, 82.6286 ], [ -61.89388, 82.36165 ], [ -64.334, 81.92775 ], [ -66.75342, 81.72527 ], [ -67.65755, 81.50141 ], [ -65.48031, 81.50657 ], [ -67.84, 80.9 ], [ -69.4697, 80.61683 ], [ -71.18, 79.8 ], [ -73.2428, 79.63415 ], [ -73.88, 79.430162 ], [ -76.90773, 79.32309 ], [ -75.52924, 79.19766 ], [ -76.22046, 79.01907 ], [ -75.39345, 78.52581 ], [ -76.34354, 78.18296 ], [ -77.88851, 77.89991 ], [ -78.36269, 77.50859 ], [ -79.75951, 77.20968 ], [ -79.61965, 76.98336 ], [ -77.91089, 77.022045 ], [ -77.88911, 76.777955 ], [ -80.56125, 76.17812 ], [ -83.17439, 76.45403 ], [ -86.11184, 76.29901 ], [ -87.6, 76.42 ], [ -89.49068, 76.47239 ], [ -89.6161, 76.95213 ], [ -87.76739, 77.17833 ], [ -88.26, 77.9 ], [ -87.65, 77.970222 ], [ -84.97634, 77.53873 ], [ -86.34, 78.18 ], [ -87.96192, 78.37181 ], [ -87.15198, 78.75867 ], [ -85.37868, 78.9969 ], [ -85.09495, 79.34543 ], [ -86.50734, 79.73624 ], [ -86.93179, 80.25145 ], [ -84.19844, 80.20836 ], [ -83.408696, 80.1 ], [ -81.84823, 80.46442 ], [ -84.1, 80.58 ], [ -87.59895, 80.51627 ], [ -89.36663, 80.85569 ], [ -90.2, 81.26 ], [ -91.36786, 81.5531 ], [ -91.58702, 81.89429 ], [ -90.1, 82.085 ], [ -88.93227, 82.11751 ], [ -86.97024, 82.27961 ], [ -85.5, 82.652273 ], [ -84.260005, 82.6 ], [ -83.18, 82.32 ], [ -82.42, 82.86 ], [ -81.1, 83.02 ], [ -79.30664, 83.13056 ], [ -76.25, 83.172059 ], [ -75.71878, 83.06404 ], [ -72.83153, 83.23324 ], [ -70.665765, 83.169781 ], [ -68.5, 83.106322 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CHE.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CHE","properties":{"name":"Switzerland"},"geometry":{"type":"Polygon","coordinates":[[[9.594226,47.525058],[9.632932,47.347601],[9.47997,47.10281],[9.932448,46.920728],[10.442701,46.893546],[10.363378,46.483571],[9.922837,46.314899],[9.182882,46.440215],[8.966306,46.036932],[8.489952,46.005151],[8.31663,46.163642],[7.755992,45.82449],[7.273851,45.776948],[6.843593,45.991147],[6.5001,46.429673],[6.022609,46.27299],[6.037389,46.725779],[6.768714,47.287708],[6.736571,47.541801],[7.192202,47.449766],[7.466759,47.620582],[8.317301,47.61358],[8.522612,47.830828],[9.594226,47.525058]]]}} ]} ================================================ FILE: test/fixtures/world/CHE_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 45.08903556 ], [ 5.625, 48.92249926 ], [ 11.25, 48.92249926 ], [ 11.25, 45.08903556 ], [ 5.625, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.594226, 47.525058 ], [ 9.632932, 47.347601 ], [ 9.47997, 47.10281 ], [ 9.932448, 46.920728 ], [ 10.442701, 46.893546 ], [ 10.363378, 46.483571 ], [ 9.922837, 46.314899 ], [ 9.182882, 46.440215 ], [ 8.966306, 46.036932 ], [ 8.489952, 46.005151 ], [ 8.31663, 46.163642 ], [ 7.755992, 45.82449 ], [ 7.273851, 45.776948 ], [ 6.843593, 45.991147 ], [ 6.5001, 46.429673 ], [ 6.022609, 46.27299 ], [ 6.037389, 46.725779 ], [ 6.768714, 47.287708 ], [ 6.736571, 47.541801 ], [ 7.192202, 47.449766 ], [ 7.466759, 47.620582 ], [ 8.317301, 47.61358 ], [ 8.522612, 47.830828 ], [ 9.594226, 47.525058 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CHL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CHL","properties":{"name":"Chile"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.63401,-52.63637],[-68.63335,-54.8695],[-67.56244,-54.87001],[-66.95992,-54.89681],[-67.29103,-55.30124],[-68.14863,-55.61183],[-68.639991,-55.580018],[-69.2321,-55.49906],[-69.95809,-55.19843],[-71.00568,-55.05383],[-72.2639,-54.49514],[-73.2852,-53.95752],[-74.66253,-52.83749],[-73.8381,-53.04743],[-72.43418,-53.7154],[-71.10773,-54.07433],[-70.59178,-53.61583],[-70.26748,-52.93123],[-69.34565,-52.5183],[-68.63401,-52.63637]]],[[[-68.219913,-21.494347],[-67.82818,-22.872919],[-67.106674,-22.735925],[-66.985234,-22.986349],[-67.328443,-24.025303],[-68.417653,-24.518555],[-68.386001,-26.185016],[-68.5948,-26.506909],[-68.295542,-26.89934],[-69.001235,-27.521214],[-69.65613,-28.459141],[-70.01355,-29.367923],[-69.919008,-30.336339],[-70.535069,-31.36501],[-70.074399,-33.09121],[-69.814777,-33.273886],[-69.817309,-34.193571],[-70.388049,-35.169688],[-70.364769,-36.005089],[-71.121881,-36.658124],[-71.118625,-37.576827],[-70.814664,-38.552995],[-71.413517,-38.916022],[-71.680761,-39.808164],[-71.915734,-40.832339],[-71.746804,-42.051386],[-72.148898,-42.254888],[-71.915424,-43.408565],[-71.464056,-43.787611],[-71.793623,-44.207172],[-71.329801,-44.407522],[-71.222779,-44.784243],[-71.659316,-44.973689],[-71.552009,-45.560733],[-71.917258,-46.884838],[-72.447355,-47.738533],[-72.331161,-48.244238],[-72.648247,-48.878618],[-73.415436,-49.318436],[-73.328051,-50.378785],[-72.975747,-50.74145],[-72.309974,-50.67701],[-72.329404,-51.425956],[-71.914804,-52.009022],[-69.498362,-52.142761],[-68.571545,-52.299444],[-69.461284,-52.291951],[-69.94278,-52.537931],[-70.845102,-52.899201],[-71.006332,-53.833252],[-71.429795,-53.856455],[-72.557943,-53.53141],[-73.702757,-52.835069],[-73.702757,-52.83507],[-74.946763,-52.262754],[-75.260026,-51.629355],[-74.976632,-51.043396],[-75.479754,-50.378372],[-75.608015,-48.673773],[-75.18277,-47.711919],[-74.126581,-46.939253],[-75.644395,-46.647643],[-74.692154,-45.763976],[-74.351709,-44.103044],[-73.240356,-44.454961],[-72.717804,-42.383356],[-73.3889,-42.117532],[-73.701336,-43.365776],[-74.331943,-43.224958],[-74.017957,-41.794813],[-73.677099,-39.942213],[-73.217593,-39.258689],[-73.505559,-38.282883],[-73.588061,-37.156285],[-73.166717,-37.12378],[-72.553137,-35.50884],[-71.861732,-33.909093],[-71.43845,-32.418899],[-71.668721,-30.920645],[-71.370083,-30.095682],[-71.489894,-28.861442],[-70.905124,-27.64038],[-70.724954,-25.705924],[-70.403966,-23.628997],[-70.091246,-21.393319],[-70.16442,-19.756468],[-70.372572,-18.347975],[-69.858444,-18.092694],[-69.590424,-17.580012],[-69.100247,-18.260125],[-68.966818,-18.981683],[-68.442225,-19.405068],[-68.757167,-20.372658],[-68.219913,-21.494347]]]]}} ]} ================================================ FILE: test/fixtures/world/CHL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -27.05912578 ], [ -67.5, -21.94304553 ], [ -61.875, -21.94304553 ], [ -61.875, -27.05912578 ], [ -67.5, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -55.77657302 ], [ -67.5, -52.48278022 ], [ -61.875, -52.48278022 ], [ -61.875, -55.77657302 ], [ -67.5, -55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -21.94304553 ], [ -73.125, -16.63619188 ], [ -67.5, -16.63619188 ], [ -67.5, -21.94304553 ], [ -73.125, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -27.05912578 ], [ -73.125, -21.94304553 ], [ -67.5, -21.94304553 ], [ -67.5, -27.05912578 ], [ -73.125, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -31.95216224 ], [ -73.125, -27.05912578 ], [ -67.5, -27.05912578 ], [ -67.5, -31.95216224 ], [ -73.125, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -36.59788913 ], [ -73.125, -31.95216224 ], [ -67.5, -31.95216224 ], [ -67.5, -36.59788913 ], [ -73.125, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -40.97989807 ], [ -73.125, -36.59788913 ], [ -67.5, -36.59788913 ], [ -67.5, -40.97989807 ], [ -73.125, -40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, -40.97989807 ], [ -78.75, -36.59788913 ], [ -73.125, -36.59788913 ], [ -73.125, -40.97989807 ], [ -78.75, -40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, -48.92249926 ], [ -78.75, -40.97989807 ], [ -67.5, -40.97989807 ], [ -67.5, -48.92249926 ], [ -78.75, -48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, -55.77657302 ], [ -78.75, -48.92249926 ], [ -67.5, -48.92249926 ], [ -67.5, -55.77657302 ], [ -78.75, -55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.63401, -52.63637 ], [ -68.63335, -54.8695 ], [ -67.56244, -54.87001 ], [ -66.95992, -54.89681 ], [ -67.29103, -55.30124 ], [ -68.14863, -55.61183 ], [ -68.639991, -55.580018 ], [ -69.2321, -55.49906 ], [ -69.95809, -55.19843 ], [ -71.00568, -55.05383 ], [ -72.2639, -54.49514 ], [ -73.2852, -53.95752 ], [ -74.66253, -52.83749 ], [ -73.8381, -53.04743 ], [ -72.43418, -53.7154 ], [ -71.10773, -54.07433 ], [ -70.59178, -53.61583 ], [ -70.26748, -52.93123 ], [ -69.34565, -52.5183 ], [ -68.63401, -52.63637 ] ] ], [ [ [ -68.219913, -21.494347 ], [ -67.82818, -22.872919 ], [ -67.106674, -22.735925 ], [ -66.985234, -22.986349 ], [ -67.328443, -24.025303 ], [ -68.417653, -24.518555 ], [ -68.386001, -26.185016 ], [ -68.5948, -26.506909 ], [ -68.295542, -26.89934 ], [ -69.001235, -27.521214 ], [ -69.65613, -28.459141 ], [ -70.01355, -29.367923 ], [ -69.919008, -30.336339 ], [ -70.535069, -31.36501 ], [ -70.074399, -33.09121 ], [ -69.814777, -33.273886 ], [ -69.817309, -34.193571 ], [ -70.388049, -35.169688 ], [ -70.364769, -36.005089 ], [ -71.121881, -36.658124 ], [ -71.118625, -37.576827 ], [ -70.814664, -38.552995 ], [ -71.413517, -38.916022 ], [ -71.680761, -39.808164 ], [ -71.915734, -40.832339 ], [ -71.746804, -42.051386 ], [ -72.148898, -42.254888 ], [ -71.915424, -43.408565 ], [ -71.464056, -43.787611 ], [ -71.793623, -44.207172 ], [ -71.329801, -44.407522 ], [ -71.222779, -44.784243 ], [ -71.659316, -44.973689 ], [ -71.552009, -45.560733 ], [ -71.917258, -46.884838 ], [ -72.447355, -47.738533 ], [ -72.331161, -48.244238 ], [ -72.648247, -48.878618 ], [ -73.415436, -49.318436 ], [ -73.328051, -50.378785 ], [ -72.975747, -50.74145 ], [ -72.309974, -50.67701 ], [ -72.329404, -51.425956 ], [ -71.914804, -52.009022 ], [ -69.498362, -52.142761 ], [ -68.571545, -52.299444 ], [ -69.461284, -52.291951 ], [ -69.94278, -52.537931 ], [ -70.845102, -52.899201 ], [ -71.006332, -53.833252 ], [ -71.429795, -53.856455 ], [ -72.557943, -53.53141 ], [ -73.702757, -52.835069 ], [ -73.702757, -52.83507 ], [ -74.946763, -52.262754 ], [ -75.260026, -51.629355 ], [ -74.976632, -51.043396 ], [ -75.479754, -50.378372 ], [ -75.608015, -48.673773 ], [ -75.18277, -47.711919 ], [ -74.126581, -46.939253 ], [ -75.644395, -46.647643 ], [ -74.692154, -45.763976 ], [ -74.351709, -44.103044 ], [ -73.240356, -44.454961 ], [ -72.717804, -42.383356 ], [ -73.3889, -42.117532 ], [ -73.701336, -43.365776 ], [ -74.331943, -43.224958 ], [ -74.017957, -41.794813 ], [ -73.677099, -39.942213 ], [ -73.217593, -39.258689 ], [ -73.505559, -38.282883 ], [ -73.588061, -37.156285 ], [ -73.166717, -37.12378 ], [ -72.553137, -35.50884 ], [ -71.861732, -33.909093 ], [ -71.43845, -32.418899 ], [ -71.668721, -30.920645 ], [ -71.370083, -30.095682 ], [ -71.489894, -28.861442 ], [ -70.905124, -27.64038 ], [ -70.724954, -25.705924 ], [ -70.403966, -23.628997 ], [ -70.091246, -21.393319 ], [ -70.16442, -19.756468 ], [ -70.372572, -18.347975 ], [ -69.858444, -18.092694 ], [ -69.590424, -17.580012 ], [ -69.100247, -18.260125 ], [ -68.966818, -18.981683 ], [ -68.442225, -19.405068 ], [ -68.757167, -20.372658 ], [ -68.219913, -21.494347 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CHN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CHN","properties":{"name":"China"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.339188,18.678395],[109.47521,18.197701],[108.655208,18.507682],[108.626217,19.367888],[109.119056,19.821039],[110.211599,20.101254],[110.786551,20.077534],[111.010051,19.69593],[110.570647,19.255879],[110.339188,18.678395]]],[[[127.657407,49.76027],[129.397818,49.4406],[130.582293,48.729687],[130.987282,47.790132],[132.506672,47.78897],[133.373596,48.183442],[135.026311,48.47823],[134.500814,47.57844],[134.112362,47.212467],[133.769644,46.116927],[133.097127,45.144066],[131.883454,45.321162],[131.025212,44.967953],[131.288555,44.11152],[131.144688,42.92999],[130.633866,42.903015],[130.640016,42.395009],[129.994267,42.985387],[129.596669,42.424982],[128.052215,41.994285],[128.208433,41.466772],[127.343783,41.503152],[126.869083,41.816569],[126.182045,41.107336],[125.079942,40.569824],[124.265625,39.928493],[122.86757,39.637788],[122.131388,39.170452],[121.054554,38.897471],[121.585995,39.360854],[121.376757,39.750261],[122.168595,40.422443],[121.640359,40.94639],[120.768629,40.593388],[119.639602,39.898056],[119.023464,39.252333],[118.042749,39.204274],[117.532702,38.737636],[118.059699,38.061476],[118.87815,37.897325],[118.911636,37.448464],[119.702802,37.156389],[120.823457,37.870428],[121.711259,37.481123],[122.357937,37.454484],[122.519995,36.930614],[121.104164,36.651329],[120.637009,36.11144],[119.664562,35.609791],[119.151208,34.909859],[120.227525,34.360332],[120.620369,33.376723],[121.229014,32.460319],[121.908146,31.692174],[121.891919,30.949352],[121.264257,30.676267],[121.503519,30.142915],[122.092114,29.83252],[121.938428,29.018022],[121.684439,28.225513],[121.125661,28.135673],[120.395473,27.053207],[119.585497,25.740781],[118.656871,24.547391],[117.281606,23.624501],[115.890735,22.782873],[114.763827,22.668074],[114.152547,22.22376],[113.80678,22.54834],[113.241078,22.051367],[111.843592,21.550494],[110.785466,21.397144],[110.444039,20.341033],[109.889861,20.282457],[109.627655,21.008227],[109.864488,21.395051],[108.522813,21.715212],[108.05018,21.55238],[107.04342,21.811899],[106.567273,22.218205],[106.725403,22.794268],[105.811247,22.976892],[105.329209,23.352063],[104.476858,22.81915],[103.504515,22.703757],[102.706992,22.708795],[102.170436,22.464753],[101.652018,22.318199],[101.80312,21.174367],[101.270026,21.201652],[101.180005,21.436573],[101.150033,21.849984],[100.416538,21.558839],[99.983489,21.742937],[99.240899,22.118314],[99.531992,22.949039],[98.898749,23.142722],[98.660262,24.063286],[97.60472,23.897405],[97.724609,25.083637],[98.671838,25.918703],[98.712094,26.743536],[98.68269,27.508812],[98.246231,27.747221],[97.911988,28.335945],[97.327114,28.261583],[96.248833,28.411031],[96.586591,28.83098],[96.117679,29.452802],[95.404802,29.031717],[94.56599,29.277438],[93.413348,28.640629],[92.503119,27.896876],[91.696657,27.771742],[91.258854,28.040614],[90.730514,28.064954],[90.015829,28.296439],[89.47581,28.042759],[88.814248,27.299316],[88.730326,28.086865],[88.120441,27.876542],[86.954517,27.974262],[85.82332,28.203576],[85.011638,28.642774],[84.23458,28.839894],[83.898993,29.320226],[83.337115,29.463732],[82.327513,30.115268],[81.525804,30.422717],[81.111256,30.183481],[79.721367,30.882715],[78.738894,31.515906],[78.458446,32.618164],[79.176129,32.48378],[79.208892,32.994395],[78.811086,33.506198],[78.912269,34.321936],[77.837451,35.49401],[76.192848,35.898403],[75.896897,36.666806],[75.158028,37.133031],[74.980002,37.41999],[74.829986,37.990007],[74.864816,38.378846],[74.257514,38.606507],[73.928852,38.505815],[73.675379,39.431237],[73.960013,39.660008],[73.822244,39.893973],[74.776862,40.366425],[75.467828,40.562072],[76.526368,40.427946],[76.904484,41.066486],[78.187197,41.185316],[78.543661,41.582243],[80.11943,42.123941],[80.25999,42.349999],[80.18015,42.920068],[80.866206,43.180362],[79.966106,44.917517],[81.947071,45.317027],[82.458926,45.53965],[83.180484,47.330031],[85.16429,47.000956],[85.720484,47.452969],[85.768233,48.455751],[86.598776,48.549182],[87.35997,49.214981],[87.751264,49.297198],[88.013832,48.599463],[88.854298,48.069082],[90.280826,47.693549],[90.970809,46.888146],[90.585768,45.719716],[90.94554,45.286073],[92.133891,45.115076],[93.480734,44.975472],[94.688929,44.352332],[95.306875,44.241331],[95.762455,43.319449],[96.349396,42.725635],[97.451757,42.74889],[99.515817,42.524691],[100.845866,42.663804],[101.83304,42.514873],[103.312278,41.907468],[104.522282,41.908347],[104.964994,41.59741],[106.129316,42.134328],[107.744773,42.481516],[109.243596,42.519446],[110.412103,42.871234],[111.129682,43.406834],[111.829588,43.743118],[111.667737,44.073176],[111.348377,44.457442],[111.873306,45.102079],[112.436062,45.011646],[113.463907,44.808893],[114.460332,45.339817],[115.985096,45.727235],[116.717868,46.388202],[117.421701,46.672733],[118.874326,46.805412],[119.66327,46.69268],[119.772824,47.048059],[118.866574,47.74706],[118.064143,48.06673],[117.295507,47.697709],[116.308953,47.85341],[115.742837,47.726545],[115.485282,48.135383],[116.191802,49.134598],[116.678801,49.888531],[117.879244,49.510983],[119.288461,50.142883],[119.279366,50.582908],[120.18205,51.643566],[120.738191,51.964115],[120.725789,52.516226],[120.177089,52.753886],[121.003085,53.251401],[122.245748,53.431726],[123.571507,53.458804],[125.068211,53.161045],[125.946349,52.792799],[126.564399,51.784255],[126.939157,51.353894],[127.287456,50.739797],[127.657407,49.76027]]]]}} ]} ================================================ FILE: test/fixtures/world/CHN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 16.63619188 ], [ 101.25, 21.94304553 ], [ 106.875, 21.94304553 ], [ 106.875, 16.63619188 ], [ 101.25, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 21.94304553 ], [ 101.25, 31.95216224 ], [ 112.5, 31.95216224 ], [ 112.5, 21.94304553 ], [ 101.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 31.95216224 ], [ 101.25, 40.97989807 ], [ 112.5, 40.97989807 ], [ 112.5, 31.95216224 ], [ 101.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 40.97989807 ], [ 101.25, 45.08903556 ], [ 106.875, 45.08903556 ], [ 106.875, 40.97989807 ], [ 101.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 16.63619188 ], [ 106.875, 21.94304553 ], [ 112.5, 21.94304553 ], [ 112.5, 16.63619188 ], [ 106.875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 40.97989807 ], [ 106.875, 45.08903556 ], [ 112.5, 45.08903556 ], [ 112.5, 40.97989807 ], [ 106.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 45.08903556 ], [ 106.875, 48.92249926 ], [ 112.5, 48.92249926 ], [ 112.5, 45.08903556 ], [ 106.875, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 16.63619188 ], [ 112.5, 21.94304553 ], [ 118.125, 21.94304553 ], [ 118.125, 16.63619188 ], [ 112.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 21.94304553 ], [ 112.5, 31.95216224 ], [ 123.75, 31.95216224 ], [ 123.75, 21.94304553 ], [ 112.5, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 31.95216224 ], [ 112.5, 40.97989807 ], [ 123.75, 40.97989807 ], [ 123.75, 31.95216224 ], [ 112.5, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 40.97989807 ], [ 112.5, 48.92249926 ], [ 123.75, 48.92249926 ], [ 123.75, 40.97989807 ], [ 112.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 48.92249926 ], [ 112.5, 52.48278022 ], [ 118.125, 52.48278022 ], [ 118.125, 48.92249926 ], [ 112.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 48.92249926 ], [ 118.125, 52.48278022 ], [ 123.75, 52.48278022 ], [ 123.75, 48.92249926 ], [ 118.125, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 52.48278022 ], [ 118.125, 55.77657302 ], [ 123.75, 55.77657302 ], [ 123.75, 52.48278022 ], [ 118.125, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 36.59788913 ], [ 123.75, 40.97989807 ], [ 129.375, 40.97989807 ], [ 129.375, 36.59788913 ], [ 123.75, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 40.97989807 ], [ 123.75, 48.92249926 ], [ 135, 48.92249926 ], [ 135, 40.97989807 ], [ 123.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 48.92249926 ], [ 123.75, 52.48278022 ], [ 129.375, 52.48278022 ], [ 129.375, 48.92249926 ], [ 123.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 52.48278022 ], [ 123.75, 55.77657302 ], [ 129.375, 55.77657302 ], [ 129.375, 52.48278022 ], [ 123.75, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 48.92249926 ], [ 129.375, 52.48278022 ], [ 135, 52.48278022 ], [ 135, 48.92249926 ], [ 129.375, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 45.08903556 ], [ 135, 48.92249926 ], [ 140.625, 48.92249926 ], [ 140.625, 45.08903556 ], [ 135, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 27.05912578 ], [ 73.125, 31.95216224 ], [ 78.75, 31.95216224 ], [ 78.75, 27.05912578 ], [ 73.125, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 31.95216224 ], [ 73.125, 36.59788913 ], [ 78.75, 36.59788913 ], [ 78.75, 31.95216224 ], [ 73.125, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 36.59788913 ], [ 73.125, 40.97989807 ], [ 78.75, 40.97989807 ], [ 78.75, 36.59788913 ], [ 73.125, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 40.97989807 ], [ 73.125, 45.08903556 ], [ 78.75, 45.08903556 ], [ 78.75, 40.97989807 ], [ 73.125, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 27.05912578 ], [ 78.75, 31.95216224 ], [ 84.375, 31.95216224 ], [ 84.375, 27.05912578 ], [ 78.75, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 31.95216224 ], [ 78.75, 40.97989807 ], [ 90, 40.97989807 ], [ 90, 31.95216224 ], [ 78.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 40.97989807 ], [ 78.75, 48.92249926 ], [ 90, 48.92249926 ], [ 90, 40.97989807 ], [ 78.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 27.05912578 ], [ 84.375, 31.95216224 ], [ 90, 31.95216224 ], [ 90, 27.05912578 ], [ 84.375, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 48.92249926 ], [ 84.375, 52.48278022 ], [ 90, 52.48278022 ], [ 90, 48.92249926 ], [ 84.375, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 27.05912578 ], [ 90, 31.95216224 ], [ 95.625, 31.95216224 ], [ 95.625, 27.05912578 ], [ 90, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 31.95216224 ], [ 90, 40.97989807 ], [ 101.25, 40.97989807 ], [ 101.25, 31.95216224 ], [ 90, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 40.97989807 ], [ 90, 45.08903556 ], [ 95.625, 45.08903556 ], [ 95.625, 40.97989807 ], [ 90, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 45.08903556 ], [ 90, 48.92249926 ], [ 95.625, 48.92249926 ], [ 95.625, 45.08903556 ], [ 90, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 16.63619188 ], [ 95.625, 21.94304553 ], [ 101.25, 21.94304553 ], [ 101.25, 16.63619188 ], [ 95.625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 21.94304553 ], [ 95.625, 27.05912578 ], [ 101.25, 27.05912578 ], [ 101.25, 21.94304553 ], [ 95.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 27.05912578 ], [ 95.625, 31.95216224 ], [ 101.25, 31.95216224 ], [ 101.25, 27.05912578 ], [ 95.625, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 40.97989807 ], [ 95.625, 45.08903556 ], [ 101.25, 45.08903556 ], [ 101.25, 40.97989807 ], [ 95.625, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.339188, 18.678395 ], [ 109.47521, 18.197701 ], [ 108.655208, 18.507682 ], [ 108.626217, 19.367888 ], [ 109.119056, 19.821039 ], [ 110.211599, 20.101254 ], [ 110.786551, 20.077534 ], [ 111.010051, 19.69593 ], [ 110.570647, 19.255879 ], [ 110.339188, 18.678395 ] ] ], [ [ [ 127.657407, 49.76027 ], [ 129.397818, 49.4406 ], [ 130.582293, 48.729687 ], [ 130.987282, 47.790132 ], [ 132.506672, 47.78897 ], [ 133.373596, 48.183442 ], [ 135.026311, 48.47823 ], [ 134.500814, 47.57844 ], [ 134.112362, 47.212467 ], [ 133.769644, 46.116927 ], [ 133.097127, 45.144066 ], [ 131.883454, 45.321162 ], [ 131.025212, 44.967953 ], [ 131.288555, 44.11152 ], [ 131.144688, 42.92999 ], [ 130.633866, 42.903015 ], [ 130.640016, 42.395009 ], [ 129.994267, 42.985387 ], [ 129.596669, 42.424982 ], [ 128.052215, 41.994285 ], [ 128.208433, 41.466772 ], [ 127.343783, 41.503152 ], [ 126.869083, 41.816569 ], [ 126.182045, 41.107336 ], [ 125.079942, 40.569824 ], [ 124.265625, 39.928493 ], [ 122.86757, 39.637788 ], [ 122.131388, 39.170452 ], [ 121.054554, 38.897471 ], [ 121.585995, 39.360854 ], [ 121.376757, 39.750261 ], [ 122.168595, 40.422443 ], [ 121.640359, 40.94639 ], [ 120.768629, 40.593388 ], [ 119.639602, 39.898056 ], [ 119.023464, 39.252333 ], [ 118.042749, 39.204274 ], [ 117.532702, 38.737636 ], [ 118.059699, 38.061476 ], [ 118.87815, 37.897325 ], [ 118.911636, 37.448464 ], [ 119.702802, 37.156389 ], [ 120.823457, 37.870428 ], [ 121.711259, 37.481123 ], [ 122.357937, 37.454484 ], [ 122.519995, 36.930614 ], [ 121.104164, 36.651329 ], [ 120.637009, 36.11144 ], [ 119.664562, 35.609791 ], [ 119.151208, 34.909859 ], [ 120.227525, 34.360332 ], [ 120.620369, 33.376723 ], [ 121.229014, 32.460319 ], [ 121.908146, 31.692174 ], [ 121.891919, 30.949352 ], [ 121.264257, 30.676267 ], [ 121.503519, 30.142915 ], [ 122.092114, 29.83252 ], [ 121.938428, 29.018022 ], [ 121.684439, 28.225513 ], [ 121.125661, 28.135673 ], [ 120.395473, 27.053207 ], [ 119.585497, 25.740781 ], [ 118.656871, 24.547391 ], [ 117.281606, 23.624501 ], [ 115.890735, 22.782873 ], [ 114.763827, 22.668074 ], [ 114.152547, 22.22376 ], [ 113.80678, 22.54834 ], [ 113.241078, 22.051367 ], [ 111.843592, 21.550494 ], [ 110.785466, 21.397144 ], [ 110.444039, 20.341033 ], [ 109.889861, 20.282457 ], [ 109.627655, 21.008227 ], [ 109.864488, 21.395051 ], [ 108.522813, 21.715212 ], [ 108.05018, 21.55238 ], [ 107.04342, 21.811899 ], [ 106.567273, 22.218205 ], [ 106.725403, 22.794268 ], [ 105.811247, 22.976892 ], [ 105.329209, 23.352063 ], [ 104.476858, 22.81915 ], [ 103.504515, 22.703757 ], [ 102.706992, 22.708795 ], [ 102.170436, 22.464753 ], [ 101.652018, 22.318199 ], [ 101.80312, 21.174367 ], [ 101.270026, 21.201652 ], [ 101.180005, 21.436573 ], [ 101.150033, 21.849984 ], [ 100.416538, 21.558839 ], [ 99.983489, 21.742937 ], [ 99.240899, 22.118314 ], [ 99.531992, 22.949039 ], [ 98.898749, 23.142722 ], [ 98.660262, 24.063286 ], [ 97.60472, 23.897405 ], [ 97.724609, 25.083637 ], [ 98.671838, 25.918703 ], [ 98.712094, 26.743536 ], [ 98.68269, 27.508812 ], [ 98.246231, 27.747221 ], [ 97.911988, 28.335945 ], [ 97.327114, 28.261583 ], [ 96.248833, 28.411031 ], [ 96.586591, 28.83098 ], [ 96.117679, 29.452802 ], [ 95.404802, 29.031717 ], [ 94.56599, 29.277438 ], [ 93.413348, 28.640629 ], [ 92.503119, 27.896876 ], [ 91.696657, 27.771742 ], [ 91.258854, 28.040614 ], [ 90.730514, 28.064954 ], [ 90.015829, 28.296439 ], [ 89.47581, 28.042759 ], [ 88.814248, 27.299316 ], [ 88.730326, 28.086865 ], [ 88.120441, 27.876542 ], [ 86.954517, 27.974262 ], [ 85.82332, 28.203576 ], [ 85.011638, 28.642774 ], [ 84.23458, 28.839894 ], [ 83.898993, 29.320226 ], [ 83.337115, 29.463732 ], [ 82.327513, 30.115268 ], [ 81.525804, 30.422717 ], [ 81.111256, 30.183481 ], [ 79.721367, 30.882715 ], [ 78.738894, 31.515906 ], [ 78.458446, 32.618164 ], [ 79.176129, 32.48378 ], [ 79.208892, 32.994395 ], [ 78.811086, 33.506198 ], [ 78.912269, 34.321936 ], [ 77.837451, 35.49401 ], [ 76.192848, 35.898403 ], [ 75.896897, 36.666806 ], [ 75.158028, 37.133031 ], [ 74.980002, 37.41999 ], [ 74.829986, 37.990007 ], [ 74.864816, 38.378846 ], [ 74.257514, 38.606507 ], [ 73.928852, 38.505815 ], [ 73.675379, 39.431237 ], [ 73.960013, 39.660008 ], [ 73.822244, 39.893973 ], [ 74.776862, 40.366425 ], [ 75.467828, 40.562072 ], [ 76.526368, 40.427946 ], [ 76.904484, 41.066486 ], [ 78.187197, 41.185316 ], [ 78.543661, 41.582243 ], [ 80.11943, 42.123941 ], [ 80.25999, 42.349999 ], [ 80.18015, 42.920068 ], [ 80.866206, 43.180362 ], [ 79.966106, 44.917517 ], [ 81.947071, 45.317027 ], [ 82.458926, 45.53965 ], [ 83.180484, 47.330031 ], [ 85.16429, 47.000956 ], [ 85.720484, 47.452969 ], [ 85.768233, 48.455751 ], [ 86.598776, 48.549182 ], [ 87.35997, 49.214981 ], [ 87.751264, 49.297198 ], [ 88.013832, 48.599463 ], [ 88.854298, 48.069082 ], [ 90.280826, 47.693549 ], [ 90.970809, 46.888146 ], [ 90.585768, 45.719716 ], [ 90.94554, 45.286073 ], [ 92.133891, 45.115076 ], [ 93.480734, 44.975472 ], [ 94.688929, 44.352332 ], [ 95.306875, 44.241331 ], [ 95.762455, 43.319449 ], [ 96.349396, 42.725635 ], [ 97.451757, 42.74889 ], [ 99.515817, 42.524691 ], [ 100.845866, 42.663804 ], [ 101.83304, 42.514873 ], [ 103.312278, 41.907468 ], [ 104.522282, 41.908347 ], [ 104.964994, 41.59741 ], [ 106.129316, 42.134328 ], [ 107.744773, 42.481516 ], [ 109.243596, 42.519446 ], [ 110.412103, 42.871234 ], [ 111.129682, 43.406834 ], [ 111.829588, 43.743118 ], [ 111.667737, 44.073176 ], [ 111.348377, 44.457442 ], [ 111.873306, 45.102079 ], [ 112.436062, 45.011646 ], [ 113.463907, 44.808893 ], [ 114.460332, 45.339817 ], [ 115.985096, 45.727235 ], [ 116.717868, 46.388202 ], [ 117.421701, 46.672733 ], [ 118.874326, 46.805412 ], [ 119.66327, 46.69268 ], [ 119.772824, 47.048059 ], [ 118.866574, 47.74706 ], [ 118.064143, 48.06673 ], [ 117.295507, 47.697709 ], [ 116.308953, 47.85341 ], [ 115.742837, 47.726545 ], [ 115.485282, 48.135383 ], [ 116.191802, 49.134598 ], [ 116.678801, 49.888531 ], [ 117.879244, 49.510983 ], [ 119.288461, 50.142883 ], [ 119.279366, 50.582908 ], [ 120.18205, 51.643566 ], [ 120.738191, 51.964115 ], [ 120.725789, 52.516226 ], [ 120.177089, 52.753886 ], [ 121.003085, 53.251401 ], [ 122.245748, 53.431726 ], [ 123.571507, 53.458804 ], [ 125.068211, 53.161045 ], [ 125.946349, 52.792799 ], [ 126.564399, 51.784255 ], [ 126.939157, 51.353894 ], [ 127.287456, 50.739797 ], [ 127.657407, 49.76027 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CIV.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CIV","properties":{"name":"Ivory Coast"},"geometry":{"type":"Polygon","coordinates":[[[-2.856125,4.994476],[-3.311084,4.984296],[-4.00882,5.179813],[-4.649917,5.168264],[-5.834496,4.993701],[-6.528769,4.705088],[-7.518941,4.338288],[-7.712159,4.364566],[-7.635368,5.188159],[-7.539715,5.313345],[-7.570153,5.707352],[-7.993693,6.12619],[-8.311348,6.193033],[-8.60288,6.467564],[-8.385452,6.911801],[-8.485446,7.395208],[-8.439298,7.686043],[-8.280703,7.68718],[-8.221792,8.123329],[-8.299049,8.316444],[-8.203499,8.455453],[-7.8321,8.575704],[-8.079114,9.376224],[-8.309616,9.789532],[-8.229337,10.12902],[-8.029944,10.206535],[-7.89959,10.297382],[-7.622759,10.147236],[-6.850507,10.138994],[-6.666461,10.430811],[-6.493965,10.411303],[-6.205223,10.524061],[-6.050452,10.096361],[-5.816926,10.222555],[-5.404342,10.370737],[-4.954653,10.152714],[-4.779884,9.821985],[-4.330247,9.610835],[-3.980449,9.862344],[-3.511899,9.900326],[-2.827496,9.642461],[-2.56219,8.219628],[-2.983585,7.379705],[-3.24437,6.250472],[-2.810701,5.389051],[-2.856125,4.994476]]]}} ]} ================================================ FILE: test/fixtures/world/CIV_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 0 ], [ -11.25, 11.17840187 ], [ 0, 11.17840187 ], [ 0, 0 ], [ -11.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.856125, 4.994476 ], [ -3.311084, 4.984296 ], [ -4.00882, 5.179813 ], [ -4.649917, 5.168264 ], [ -5.834496, 4.993701 ], [ -6.528769, 4.705088 ], [ -7.518941, 4.338288 ], [ -7.712159, 4.364566 ], [ -7.635368, 5.188159 ], [ -7.539715, 5.313345 ], [ -7.570153, 5.707352 ], [ -7.993693, 6.12619 ], [ -8.311348, 6.193033 ], [ -8.60288, 6.467564 ], [ -8.385452, 6.911801 ], [ -8.485446, 7.395208 ], [ -8.439298, 7.686043 ], [ -8.280703, 7.68718 ], [ -8.221792, 8.123329 ], [ -8.299049, 8.316444 ], [ -8.203499, 8.455453 ], [ -7.8321, 8.575704 ], [ -8.079114, 9.376224 ], [ -8.309616, 9.789532 ], [ -8.229337, 10.12902 ], [ -8.029944, 10.206535 ], [ -7.89959, 10.297382 ], [ -7.622759, 10.147236 ], [ -6.850507, 10.138994 ], [ -6.666461, 10.430811 ], [ -6.493965, 10.411303 ], [ -6.205223, 10.524061 ], [ -6.050452, 10.096361 ], [ -5.816926, 10.222555 ], [ -5.404342, 10.370737 ], [ -4.954653, 10.152714 ], [ -4.779884, 9.821985 ], [ -4.330247, 9.610835 ], [ -3.980449, 9.862344 ], [ -3.511899, 9.900326 ], [ -2.827496, 9.642461 ], [ -2.56219, 8.219628 ], [ -2.983585, 7.379705 ], [ -3.24437, 6.250472 ], [ -2.810701, 5.389051 ], [ -2.856125, 4.994476 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CMR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CMR","properties":{"name":"Cameroon"},"geometry":{"type":"Polygon","coordinates":[[[13.075822,2.267097],[12.951334,2.321616],[12.35938,2.192812],[11.751665,2.326758],[11.276449,2.261051],[9.649158,2.283866],[9.795196,3.073404],[9.404367,3.734527],[8.948116,3.904129],[8.744924,4.352215],[8.488816,4.495617],[8.500288,4.771983],[8.757533,5.479666],[9.233163,6.444491],[9.522706,6.453482],[10.118277,7.03877],[10.497375,7.055358],[11.058788,6.644427],[11.745774,6.981383],[11.839309,7.397042],[12.063946,7.799808],[12.218872,8.305824],[12.753672,8.717763],[12.955468,9.417772],[13.1676,9.640626],[13.308676,10.160362],[13.57295,10.798566],[14.415379,11.572369],[14.468192,11.904752],[14.577178,12.085361],[14.181336,12.483657],[14.213531,12.802035],[14.495787,12.859396],[14.893386,12.219048],[14.960152,11.555574],[14.923565,10.891325],[15.467873,9.982337],[14.909354,9.992129],[14.627201,9.920919],[14.171466,10.021378],[13.954218,9.549495],[14.544467,8.965861],[14.979996,8.796104],[15.120866,8.38215],[15.436092,7.692812],[15.27946,7.421925],[14.776545,6.408498],[14.53656,6.226959],[14.459407,5.451761],[14.558936,5.030598],[14.478372,4.732605],[14.950953,4.210389],[15.03622,3.851367],[15.405396,3.335301],[15.862732,3.013537],[15.907381,2.557389],[16.012852,2.26764],[15.940919,1.727673],[15.146342,1.964015],[14.337813,2.227875],[13.075822,2.267097]]]}} ]} ================================================ FILE: test/fixtures/world/CMR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 0 ], [ 11.25, 5.61598582 ], [ 16.875, 5.61598582 ], [ 16.875, 0 ], [ 11.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 11.17840187 ], [ 11.25, 16.63619188 ], [ 16.875, 16.63619188 ], [ 16.875, 11.17840187 ], [ 11.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 5.61598582 ], [ 11.25, 11.17840187 ], [ 16.875, 11.17840187 ], [ 16.875, 5.61598582 ], [ 11.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 0 ], [ 5.625, 5.61598582 ], [ 11.25, 5.61598582 ], [ 11.25, 0 ], [ 5.625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 5.61598582 ], [ 5.625, 11.17840187 ], [ 11.25, 11.17840187 ], [ 11.25, 5.61598582 ], [ 5.625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.075822, 2.267097 ], [ 12.951334, 2.321616 ], [ 12.35938, 2.192812 ], [ 11.751665, 2.326758 ], [ 11.276449, 2.261051 ], [ 9.649158, 2.283866 ], [ 9.795196, 3.073404 ], [ 9.404367, 3.734527 ], [ 8.948116, 3.904129 ], [ 8.744924, 4.352215 ], [ 8.488816, 4.495617 ], [ 8.500288, 4.771983 ], [ 8.757533, 5.479666 ], [ 9.233163, 6.444491 ], [ 9.522706, 6.453482 ], [ 10.118277, 7.03877 ], [ 10.497375, 7.055358 ], [ 11.058788, 6.644427 ], [ 11.745774, 6.981383 ], [ 11.839309, 7.397042 ], [ 12.063946, 7.799808 ], [ 12.218872, 8.305824 ], [ 12.753672, 8.717763 ], [ 12.955468, 9.417772 ], [ 13.1676, 9.640626 ], [ 13.308676, 10.160362 ], [ 13.57295, 10.798566 ], [ 14.415379, 11.572369 ], [ 14.468192, 11.904752 ], [ 14.577178, 12.085361 ], [ 14.181336, 12.483657 ], [ 14.213531, 12.802035 ], [ 14.495787, 12.859396 ], [ 14.893386, 12.219048 ], [ 14.960152, 11.555574 ], [ 14.923565, 10.891325 ], [ 15.467873, 9.982337 ], [ 14.909354, 9.992129 ], [ 14.627201, 9.920919 ], [ 14.171466, 10.021378 ], [ 13.954218, 9.549495 ], [ 14.544467, 8.965861 ], [ 14.979996, 8.796104 ], [ 15.120866, 8.38215 ], [ 15.436092, 7.692812 ], [ 15.27946, 7.421925 ], [ 14.776545, 6.408498 ], [ 14.53656, 6.226959 ], [ 14.459407, 5.451761 ], [ 14.558936, 5.030598 ], [ 14.478372, 4.732605 ], [ 14.950953, 4.210389 ], [ 15.03622, 3.851367 ], [ 15.405396, 3.335301 ], [ 15.862732, 3.013537 ], [ 15.907381, 2.557389 ], [ 16.012852, 2.26764 ], [ 15.940919, 1.727673 ], [ 15.146342, 1.964015 ], [ 14.337813, 2.227875 ], [ 13.075822, 2.267097 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/COD.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"COD","properties":{"name":"Democratic Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[30.83386,3.509166],[30.773347,2.339883],[31.174149,2.204465],[30.85267,1.849396],[30.468508,1.583805],[30.086154,1.062313],[29.875779,0.59738],[29.819503,-0.20531],[29.587838,-0.587406],[29.579466,-1.341313],[29.291887,-1.620056],[29.254835,-2.21511],[29.117479,-2.292211],[29.024926,-2.839258],[29.276384,-3.293907],[29.339998,-4.499983],[29.519987,-5.419979],[29.419993,-5.939999],[29.620032,-6.520015],[30.199997,-7.079981],[30.740015,-8.340007],[30.346086,-8.238257],[29.002912,-8.407032],[28.734867,-8.526559],[28.449871,-9.164918],[28.673682,-9.605925],[28.49607,-10.789884],[28.372253,-11.793647],[28.642417,-11.971569],[29.341548,-12.360744],[29.616001,-12.178895],[29.699614,-13.257227],[28.934286,-13.248958],[28.523562,-12.698604],[28.155109,-12.272481],[27.388799,-12.132747],[27.16442,-11.608748],[26.553088,-11.92444],[25.75231,-11.784965],[25.418118,-11.330936],[24.78317,-11.238694],[24.314516,-11.262826],[24.257155,-10.951993],[23.912215,-10.926826],[23.456791,-10.867863],[22.837345,-11.017622],[22.402798,-10.993075],[22.155268,-11.084801],[22.208753,-9.894796],[21.875182,-9.523708],[21.801801,-8.908707],[21.949131,-8.305901],[21.746456,-7.920085],[21.728111,-7.290872],[20.514748,-7.299606],[20.601823,-6.939318],[20.091622,-6.94309],[20.037723,-7.116361],[19.417502,-7.155429],[19.166613,-7.738184],[19.016752,-7.988246],[18.464176,-7.847014],[18.134222,-7.987678],[17.47297,-8.068551],[17.089996,-7.545689],[16.860191,-7.222298],[16.57318,-6.622645],[16.326528,-5.87747],[13.375597,-5.864241],[13.024869,-5.984389],[12.735171,-5.965682],[12.322432,-6.100092],[12.182337,-5.789931],[12.436688,-5.684304],[12.468004,-5.248362],[12.631612,-4.991271],[12.995517,-4.781103],[13.25824,-4.882957],[13.600235,-4.500138],[14.144956,-4.510009],[14.209035,-4.793092],[14.582604,-4.970239],[15.170992,-4.343507],[15.75354,-3.855165],[16.00629,-3.535133],[15.972803,-2.712392],[16.407092,-1.740927],[16.865307,-1.225816],[17.523716,-0.74383],[17.638645,-0.424832],[17.663553,-0.058084],[17.82654,0.288923],[17.774192,0.855659],[17.898835,1.741832],[18.094276,2.365722],[18.393792,2.900443],[18.453065,3.504386],[18.542982,4.201785],[18.932312,4.709506],[19.467784,5.031528],[20.290679,4.691678],[20.927591,4.322786],[21.659123,4.224342],[22.405124,4.02916],[22.704124,4.633051],[22.84148,4.710126],[23.297214,4.609693],[24.410531,5.108784],[24.805029,4.897247],[25.128833,4.927245],[25.278798,5.170408],[25.650455,5.256088],[26.402761,5.150875],[27.044065,5.127853],[27.374226,5.233944],[27.979977,4.408413],[28.428994,4.287155],[28.696678,4.455077],[29.159078,4.389267],[29.715995,4.600805],[29.9535,4.173699],[30.83386,3.509166]]]}} ]} ================================================ FILE: test/fixtures/world/COD_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, -11.17840187 ], [ 11.25, 0 ], [ 22.5, 0 ], [ 22.5, -11.17840187 ], [ 11.25, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 0 ], [ 16.875, 5.61598582 ], [ 22.5, 5.61598582 ], [ 22.5, 0 ], [ 16.875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -11.17840187 ], [ 22.5, 0 ], [ 33.75, 0 ], [ 33.75, -11.17840187 ], [ 22.5, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -16.63619188 ], [ 22.5, -11.17840187 ], [ 28.125, -11.17840187 ], [ 28.125, -16.63619188 ], [ 22.5, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 0 ], [ 22.5, 5.61598582 ], [ 28.125, 5.61598582 ], [ 28.125, 0 ], [ 22.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -16.63619188 ], [ 28.125, -11.17840187 ], [ 33.75, -11.17840187 ], [ 33.75, -16.63619188 ], [ 28.125, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 0 ], [ 28.125, 5.61598582 ], [ 33.75, 5.61598582 ], [ 33.75, 0 ], [ 28.125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.83386, 3.509166 ], [ 30.773347, 2.339883 ], [ 31.174149, 2.204465 ], [ 30.85267, 1.849396 ], [ 30.468508, 1.583805 ], [ 30.086154, 1.062313 ], [ 29.875779, 0.59738 ], [ 29.819503, -0.20531 ], [ 29.587838, -0.587406 ], [ 29.579466, -1.341313 ], [ 29.291887, -1.620056 ], [ 29.254835, -2.21511 ], [ 29.117479, -2.292211 ], [ 29.024926, -2.839258 ], [ 29.276384, -3.293907 ], [ 29.339998, -4.499983 ], [ 29.519987, -5.419979 ], [ 29.419993, -5.939999 ], [ 29.620032, -6.520015 ], [ 30.199997, -7.079981 ], [ 30.740015, -8.340007 ], [ 30.346086, -8.238257 ], [ 29.002912, -8.407032 ], [ 28.734867, -8.526559 ], [ 28.449871, -9.164918 ], [ 28.673682, -9.605925 ], [ 28.49607, -10.789884 ], [ 28.372253, -11.793647 ], [ 28.642417, -11.971569 ], [ 29.341548, -12.360744 ], [ 29.616001, -12.178895 ], [ 29.699614, -13.257227 ], [ 28.934286, -13.248958 ], [ 28.523562, -12.698604 ], [ 28.155109, -12.272481 ], [ 27.388799, -12.132747 ], [ 27.16442, -11.608748 ], [ 26.553088, -11.92444 ], [ 25.75231, -11.784965 ], [ 25.418118, -11.330936 ], [ 24.78317, -11.238694 ], [ 24.314516, -11.262826 ], [ 24.257155, -10.951993 ], [ 23.912215, -10.926826 ], [ 23.456791, -10.867863 ], [ 22.837345, -11.017622 ], [ 22.402798, -10.993075 ], [ 22.155268, -11.084801 ], [ 22.208753, -9.894796 ], [ 21.875182, -9.523708 ], [ 21.801801, -8.908707 ], [ 21.949131, -8.305901 ], [ 21.746456, -7.920085 ], [ 21.728111, -7.290872 ], [ 20.514748, -7.299606 ], [ 20.601823, -6.939318 ], [ 20.091622, -6.94309 ], [ 20.037723, -7.116361 ], [ 19.417502, -7.155429 ], [ 19.166613, -7.738184 ], [ 19.016752, -7.988246 ], [ 18.464176, -7.847014 ], [ 18.134222, -7.987678 ], [ 17.47297, -8.068551 ], [ 17.089996, -7.545689 ], [ 16.860191, -7.222298 ], [ 16.57318, -6.622645 ], [ 16.326528, -5.87747 ], [ 13.375597, -5.864241 ], [ 13.024869, -5.984389 ], [ 12.735171, -5.965682 ], [ 12.322432, -6.100092 ], [ 12.182337, -5.789931 ], [ 12.436688, -5.684304 ], [ 12.468004, -5.248362 ], [ 12.631612, -4.991271 ], [ 12.995517, -4.781103 ], [ 13.25824, -4.882957 ], [ 13.600235, -4.500138 ], [ 14.144956, -4.510009 ], [ 14.209035, -4.793092 ], [ 14.582604, -4.970239 ], [ 15.170992, -4.343507 ], [ 15.75354, -3.855165 ], [ 16.00629, -3.535133 ], [ 15.972803, -2.712392 ], [ 16.407092, -1.740927 ], [ 16.865307, -1.225816 ], [ 17.523716, -0.74383 ], [ 17.638645, -0.424832 ], [ 17.663553, -0.058084 ], [ 17.82654, 0.288923 ], [ 17.774192, 0.855659 ], [ 17.898835, 1.741832 ], [ 18.094276, 2.365722 ], [ 18.393792, 2.900443 ], [ 18.453065, 3.504386 ], [ 18.542982, 4.201785 ], [ 18.932312, 4.709506 ], [ 19.467784, 5.031528 ], [ 20.290679, 4.691678 ], [ 20.927591, 4.322786 ], [ 21.659123, 4.224342 ], [ 22.405124, 4.02916 ], [ 22.704124, 4.633051 ], [ 22.84148, 4.710126 ], [ 23.297214, 4.609693 ], [ 24.410531, 5.108784 ], [ 24.805029, 4.897247 ], [ 25.128833, 4.927245 ], [ 25.278798, 5.170408 ], [ 25.650455, 5.256088 ], [ 26.402761, 5.150875 ], [ 27.044065, 5.127853 ], [ 27.374226, 5.233944 ], [ 27.979977, 4.408413 ], [ 28.428994, 4.287155 ], [ 28.696678, 4.455077 ], [ 29.159078, 4.389267 ], [ 29.715995, 4.600805 ], [ 29.9535, 4.173699 ], [ 30.83386, 3.509166 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/COG.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"COG","properties":{"name":"Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[12.995517,-4.781103],[12.62076,-4.438023],[12.318608,-4.60623],[11.914963,-5.037987],[11.093773,-3.978827],[11.855122,-3.426871],[11.478039,-2.765619],[11.820964,-2.514161],[12.495703,-2.391688],[12.575284,-1.948511],[13.109619,-2.42874],[13.992407,-2.470805],[14.29921,-1.998276],[14.425456,-1.333407],[14.316418,-0.552627],[13.843321,0.038758],[14.276266,1.19693],[14.026669,1.395677],[13.282631,1.314184],[13.003114,1.830896],[13.075822,2.267097],[14.337813,2.227875],[15.146342,1.964015],[15.940919,1.727673],[16.012852,2.26764],[16.537058,3.198255],[17.133042,3.728197],[17.8099,3.560196],[18.453065,3.504386],[18.393792,2.900443],[18.094276,2.365722],[17.898835,1.741832],[17.774192,0.855659],[17.82654,0.288923],[17.663553,-0.058084],[17.638645,-0.424832],[17.523716,-0.74383],[16.865307,-1.225816],[16.407092,-1.740927],[15.972803,-2.712392],[16.00629,-3.535133],[15.75354,-3.855165],[15.170992,-4.343507],[14.582604,-4.970239],[14.209035,-4.793092],[14.144956,-4.510009],[13.600235,-4.500138],[13.25824,-4.882957],[12.995517,-4.781103]]]}} ]} ================================================ FILE: test/fixtures/world/COG_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, -5.61598582 ], [ 11.25, 0 ], [ 16.875, 0 ], [ 16.875, -5.61598582 ], [ 11.25, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 0 ], [ 11.25, 5.61598582 ], [ 16.875, 5.61598582 ], [ 16.875, 0 ], [ 11.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -5.61598582 ], [ 16.875, 0 ], [ 22.5, 0 ], [ 22.5, -5.61598582 ], [ 16.875, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 0 ], [ 16.875, 5.61598582 ], [ 22.5, 5.61598582 ], [ 22.5, 0 ], [ 16.875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, -5.61598582 ], [ 5.625, 0 ], [ 11.25, 0 ], [ 11.25, -5.61598582 ], [ 5.625, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.995517, -4.781103 ], [ 12.62076, -4.438023 ], [ 12.318608, -4.60623 ], [ 11.914963, -5.037987 ], [ 11.093773, -3.978827 ], [ 11.855122, -3.426871 ], [ 11.478039, -2.765619 ], [ 11.820964, -2.514161 ], [ 12.495703, -2.391688 ], [ 12.575284, -1.948511 ], [ 13.109619, -2.42874 ], [ 13.992407, -2.470805 ], [ 14.29921, -1.998276 ], [ 14.425456, -1.333407 ], [ 14.316418, -0.552627 ], [ 13.843321, 0.038758 ], [ 14.276266, 1.19693 ], [ 14.026669, 1.395677 ], [ 13.282631, 1.314184 ], [ 13.003114, 1.830896 ], [ 13.075822, 2.267097 ], [ 14.337813, 2.227875 ], [ 15.146342, 1.964015 ], [ 15.940919, 1.727673 ], [ 16.012852, 2.26764 ], [ 16.537058, 3.198255 ], [ 17.133042, 3.728197 ], [ 17.8099, 3.560196 ], [ 18.453065, 3.504386 ], [ 18.393792, 2.900443 ], [ 18.094276, 2.365722 ], [ 17.898835, 1.741832 ], [ 17.774192, 0.855659 ], [ 17.82654, 0.288923 ], [ 17.663553, -0.058084 ], [ 17.638645, -0.424832 ], [ 17.523716, -0.74383 ], [ 16.865307, -1.225816 ], [ 16.407092, -1.740927 ], [ 15.972803, -2.712392 ], [ 16.00629, -3.535133 ], [ 15.75354, -3.855165 ], [ 15.170992, -4.343507 ], [ 14.582604, -4.970239 ], [ 14.209035, -4.793092 ], [ 14.144956, -4.510009 ], [ 13.600235, -4.500138 ], [ 13.25824, -4.882957 ], [ 12.995517, -4.781103 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/COL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"COL","properties":{"name":"Colombia"},"geometry":{"type":"Polygon","coordinates":[[[-75.373223,-0.152032],[-75.801466,0.084801],[-76.292314,0.416047],[-76.57638,0.256936],[-77.424984,0.395687],[-77.668613,0.825893],[-77.855061,0.809925],[-78.855259,1.380924],[-78.990935,1.69137],[-78.617831,1.766404],[-78.662118,2.267355],[-78.42761,2.629556],[-77.931543,2.696606],[-77.510431,3.325017],[-77.12769,3.849636],[-77.496272,4.087606],[-77.307601,4.667984],[-77.533221,5.582812],[-77.318815,5.845354],[-77.476661,6.691116],[-77.881571,7.223771],[-77.753414,7.70984],[-77.431108,7.638061],[-77.242566,7.935278],[-77.474723,8.524286],[-77.353361,8.670505],[-76.836674,8.638749],[-76.086384,9.336821],[-75.6746,9.443248],[-75.664704,9.774003],[-75.480426,10.61899],[-74.906895,11.083045],[-74.276753,11.102036],[-74.197223,11.310473],[-73.414764,11.227015],[-72.627835,11.731972],[-72.238195,11.95555],[-71.75409,12.437303],[-71.399822,12.376041],[-71.137461,12.112982],[-71.331584,11.776284],[-71.973922,11.608672],[-72.227575,11.108702],[-72.614658,10.821975],[-72.905286,10.450344],[-73.027604,9.73677],[-73.304952,9.152],[-72.78873,9.085027],[-72.660495,8.625288],[-72.439862,8.405275],[-72.360901,8.002638],[-72.479679,7.632506],[-72.444487,7.423785],[-72.198352,7.340431],[-71.960176,6.991615],[-70.674234,7.087785],[-70.093313,6.960376],[-69.38948,6.099861],[-68.985319,6.206805],[-68.265052,6.153268],[-67.695087,6.267318],[-67.34144,6.095468],[-67.521532,5.55687],[-67.744697,5.221129],[-67.823012,4.503937],[-67.621836,3.839482],[-67.337564,3.542342],[-67.303173,3.318454],[-67.809938,2.820655],[-67.447092,2.600281],[-67.181294,2.250638],[-66.876326,1.253361],[-67.065048,1.130112],[-67.259998,1.719999],[-67.53781,2.037163],[-67.868565,1.692455],[-69.816973,1.714805],[-69.804597,1.089081],[-69.218638,0.985677],[-69.252434,0.602651],[-69.452396,0.706159],[-70.015566,0.541414],[-70.020656,-0.185156],[-69.577065,-0.549992],[-69.420486,-1.122619],[-69.444102,-1.556287],[-69.893635,-4.298187],[-70.394044,-3.766591],[-70.692682,-3.742872],[-70.047709,-2.725156],[-70.813476,-2.256865],[-71.413646,-2.342802],[-71.774761,-2.16979],[-72.325787,-2.434218],[-73.070392,-2.308954],[-73.659504,-1.260491],[-74.122395,-1.002833],[-74.441601,-0.53082],[-75.106625,-0.057205],[-75.373223,-0.152032]]]}} ]} ================================================ FILE: test/fixtures/world/COL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 0 ], [ -67.5, 5.61598582 ], [ -61.875, 5.61598582 ], [ -61.875, 0 ], [ -67.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 5.61598582 ], [ -67.5, 11.17840187 ], [ -61.875, 11.17840187 ], [ -61.875, 5.61598582 ], [ -67.5, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -5.61598582 ], [ -73.125, 0 ], [ -67.5, 0 ], [ -67.5, -5.61598582 ], [ -73.125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 11.17840187 ], [ -73.125, 16.63619188 ], [ -67.5, 16.63619188 ], [ -67.5, 11.17840187 ], [ -73.125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, -5.61598582 ], [ -78.75, 0 ], [ -73.125, 0 ], [ -73.125, -5.61598582 ], [ -78.75, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 0 ], [ -78.75, 11.17840187 ], [ -67.5, 11.17840187 ], [ -67.5, 0 ], [ -78.75, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 11.17840187 ], [ -78.75, 16.63619188 ], [ -73.125, 16.63619188 ], [ -73.125, 11.17840187 ], [ -78.75, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 0 ], [ -84.375, 5.61598582 ], [ -78.75, 5.61598582 ], [ -78.75, 0 ], [ -84.375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.373223, -0.152032 ], [ -75.801466, 0.084801 ], [ -76.292314, 0.416047 ], [ -76.57638, 0.256936 ], [ -77.424984, 0.395687 ], [ -77.668613, 0.825893 ], [ -77.855061, 0.809925 ], [ -78.855259, 1.380924 ], [ -78.990935, 1.69137 ], [ -78.617831, 1.766404 ], [ -78.662118, 2.267355 ], [ -78.42761, 2.629556 ], [ -77.931543, 2.696606 ], [ -77.510431, 3.325017 ], [ -77.12769, 3.849636 ], [ -77.496272, 4.087606 ], [ -77.307601, 4.667984 ], [ -77.533221, 5.582812 ], [ -77.318815, 5.845354 ], [ -77.476661, 6.691116 ], [ -77.881571, 7.223771 ], [ -77.753414, 7.70984 ], [ -77.431108, 7.638061 ], [ -77.242566, 7.935278 ], [ -77.474723, 8.524286 ], [ -77.353361, 8.670505 ], [ -76.836674, 8.638749 ], [ -76.086384, 9.336821 ], [ -75.6746, 9.443248 ], [ -75.664704, 9.774003 ], [ -75.480426, 10.61899 ], [ -74.906895, 11.083045 ], [ -74.276753, 11.102036 ], [ -74.197223, 11.310473 ], [ -73.414764, 11.227015 ], [ -72.627835, 11.731972 ], [ -72.238195, 11.95555 ], [ -71.75409, 12.437303 ], [ -71.399822, 12.376041 ], [ -71.137461, 12.112982 ], [ -71.331584, 11.776284 ], [ -71.973922, 11.608672 ], [ -72.227575, 11.108702 ], [ -72.614658, 10.821975 ], [ -72.905286, 10.450344 ], [ -73.027604, 9.73677 ], [ -73.304952, 9.152 ], [ -72.78873, 9.085027 ], [ -72.660495, 8.625288 ], [ -72.439862, 8.405275 ], [ -72.360901, 8.002638 ], [ -72.479679, 7.632506 ], [ -72.444487, 7.423785 ], [ -72.198352, 7.340431 ], [ -71.960176, 6.991615 ], [ -70.674234, 7.087785 ], [ -70.093313, 6.960376 ], [ -69.38948, 6.099861 ], [ -68.985319, 6.206805 ], [ -68.265052, 6.153268 ], [ -67.695087, 6.267318 ], [ -67.34144, 6.095468 ], [ -67.521532, 5.55687 ], [ -67.744697, 5.221129 ], [ -67.823012, 4.503937 ], [ -67.621836, 3.839482 ], [ -67.337564, 3.542342 ], [ -67.303173, 3.318454 ], [ -67.809938, 2.820655 ], [ -67.447092, 2.600281 ], [ -67.181294, 2.250638 ], [ -66.876326, 1.253361 ], [ -67.065048, 1.130112 ], [ -67.259998, 1.719999 ], [ -67.53781, 2.037163 ], [ -67.868565, 1.692455 ], [ -69.816973, 1.714805 ], [ -69.804597, 1.089081 ], [ -69.218638, 0.985677 ], [ -69.252434, 0.602651 ], [ -69.452396, 0.706159 ], [ -70.015566, 0.541414 ], [ -70.020656, -0.185156 ], [ -69.577065, -0.549992 ], [ -69.420486, -1.122619 ], [ -69.444102, -1.556287 ], [ -69.893635, -4.298187 ], [ -70.394044, -3.766591 ], [ -70.692682, -3.742872 ], [ -70.047709, -2.725156 ], [ -70.813476, -2.256865 ], [ -71.413646, -2.342802 ], [ -71.774761, -2.16979 ], [ -72.325787, -2.434218 ], [ -73.070392, -2.308954 ], [ -73.659504, -1.260491 ], [ -74.122395, -1.002833 ], [ -74.441601, -0.53082 ], [ -75.106625, -0.057205 ], [ -75.373223, -0.152032 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CRI.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CRI","properties":{"name":"Costa Rica"},"geometry":{"type":"Polygon","coordinates":[[[-82.965783,8.225028],[-83.508437,8.446927],[-83.711474,8.656836],[-83.596313,8.830443],[-83.632642,9.051386],[-83.909886,9.290803],[-84.303402,9.487354],[-84.647644,9.615537],[-84.713351,9.908052],[-84.97566,10.086723],[-84.911375,9.795992],[-85.110923,9.55704],[-85.339488,9.834542],[-85.660787,9.933347],[-85.797445,10.134886],[-85.791709,10.439337],[-85.659314,10.754331],[-85.941725,10.895278],[-85.71254,11.088445],[-85.561852,11.217119],[-84.903003,10.952303],[-84.673069,11.082657],[-84.355931,10.999226],[-84.190179,10.79345],[-83.895054,10.726839],[-83.655612,10.938764],[-83.40232,10.395438],[-83.015677,9.992982],[-82.546196,9.566135],[-82.932891,9.476812],[-82.927155,9.07433],[-82.719183,8.925709],[-82.868657,8.807266],[-82.829771,8.626295],[-82.913176,8.423517],[-82.965783,8.225028]]]}} ]} ================================================ FILE: test/fixtures/world/CRI_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 5.61598582 ], [ -84.375, 11.17840187 ], [ -78.75, 11.17840187 ], [ -78.75, 5.61598582 ], [ -84.375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 11.17840187 ], [ -90, 16.63619188 ], [ -84.375, 16.63619188 ], [ -84.375, 11.17840187 ], [ -90, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 5.61598582 ], [ -90, 11.17840187 ], [ -84.375, 11.17840187 ], [ -84.375, 5.61598582 ], [ -90, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.965783, 8.225028 ], [ -83.508437, 8.446927 ], [ -83.711474, 8.656836 ], [ -83.596313, 8.830443 ], [ -83.632642, 9.051386 ], [ -83.909886, 9.290803 ], [ -84.303402, 9.487354 ], [ -84.647644, 9.615537 ], [ -84.713351, 9.908052 ], [ -84.97566, 10.086723 ], [ -84.911375, 9.795992 ], [ -85.110923, 9.55704 ], [ -85.339488, 9.834542 ], [ -85.660787, 9.933347 ], [ -85.797445, 10.134886 ], [ -85.791709, 10.439337 ], [ -85.659314, 10.754331 ], [ -85.941725, 10.895278 ], [ -85.71254, 11.088445 ], [ -85.561852, 11.217119 ], [ -84.903003, 10.952303 ], [ -84.673069, 11.082657 ], [ -84.355931, 10.999226 ], [ -84.190179, 10.79345 ], [ -83.895054, 10.726839 ], [ -83.655612, 10.938764 ], [ -83.40232, 10.395438 ], [ -83.015677, 9.992982 ], [ -82.546196, 9.566135 ], [ -82.932891, 9.476812 ], [ -82.927155, 9.07433 ], [ -82.719183, 8.925709 ], [ -82.868657, 8.807266 ], [ -82.829771, 8.626295 ], [ -82.913176, 8.423517 ], [ -82.965783, 8.225028 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CS-KM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CS-KM","properties":{"name":"Kosovo"},"geometry":{"type":"Polygon","coordinates":[[[20.76216,42.05186],[20.71731,41.84711],[20.59023,41.85541],[20.52295,42.21787],[20.28374,42.32025],[20.0707,42.58863],[20.25758,42.81275],[20.49679,42.88469],[20.63508,43.21671],[20.81448,43.27205],[20.95651,43.13094],[21.143395,43.068685],[21.27421,42.90959],[21.43866,42.86255],[21.63302,42.67717],[21.77505,42.6827],[21.66292,42.43922],[21.54332,42.32025],[21.576636,42.245224],[21.3527,42.2068],[20.76216,42.05186]]]}} ]} ================================================ FILE: test/fixtures/world/CS-KM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 40.97989807 ], [ 16.875, 45.08903556 ], [ 22.5, 45.08903556 ], [ 22.5, 40.97989807 ], [ 16.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.76216, 42.05186 ], [ 20.71731, 41.84711 ], [ 20.59023, 41.85541 ], [ 20.52295, 42.21787 ], [ 20.28374, 42.32025 ], [ 20.0707, 42.58863 ], [ 20.25758, 42.81275 ], [ 20.49679, 42.88469 ], [ 20.63508, 43.21671 ], [ 20.81448, 43.27205 ], [ 20.95651, 43.13094 ], [ 21.143395, 43.068685 ], [ 21.27421, 42.90959 ], [ 21.43866, 42.86255 ], [ 21.63302, 42.67717 ], [ 21.77505, 42.6827 ], [ 21.66292, 42.43922 ], [ 21.54332, 42.32025 ], [ 21.576636, 42.245224 ], [ 21.3527, 42.2068 ], [ 20.76216, 42.05186 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CUB.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CUB","properties":{"name":"Cuba"},"geometry":{"type":"Polygon","coordinates":[[[-82.268151,23.188611],[-81.404457,23.117271],[-80.618769,23.10598],[-79.679524,22.765303],[-79.281486,22.399202],[-78.347434,22.512166],[-77.993296,22.277194],[-77.146422,21.657851],[-76.523825,21.20682],[-76.19462,21.220565],[-75.598222,21.016624],[-75.67106,20.735091],[-74.933896,20.693905],[-74.178025,20.284628],[-74.296648,20.050379],[-74.961595,19.923435],[-75.63468,19.873774],[-76.323656,19.952891],[-77.755481,19.855481],[-77.085108,20.413354],[-77.492655,20.673105],[-78.137292,20.739949],[-78.482827,21.028613],[-78.719867,21.598114],[-79.285,21.559175],[-80.217475,21.827324],[-80.517535,22.037079],[-81.820943,22.192057],[-82.169992,22.387109],[-81.795002,22.636965],[-82.775898,22.68815],[-83.494459,22.168518],[-83.9088,22.154565],[-84.052151,21.910575],[-84.54703,21.801228],[-84.974911,21.896028],[-84.447062,22.20495],[-84.230357,22.565755],[-83.77824,22.788118],[-83.267548,22.983042],[-82.510436,23.078747],[-82.268151,23.188611]]]}} ]} ================================================ FILE: test/fixtures/world/CUB_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 16.63619188 ], [ -78.75, 21.94304553 ], [ -73.125, 21.94304553 ], [ -73.125, 16.63619188 ], [ -78.75, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 21.94304553 ], [ -78.75, 27.05912578 ], [ -73.125, 27.05912578 ], [ -73.125, 21.94304553 ], [ -78.75, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 16.63619188 ], [ -84.375, 21.94304553 ], [ -78.75, 21.94304553 ], [ -78.75, 16.63619188 ], [ -84.375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 21.94304553 ], [ -84.375, 27.05912578 ], [ -78.75, 27.05912578 ], [ -78.75, 21.94304553 ], [ -84.375, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 16.63619188 ], [ -90, 21.94304553 ], [ -84.375, 21.94304553 ], [ -84.375, 16.63619188 ], [ -90, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 21.94304553 ], [ -90, 27.05912578 ], [ -84.375, 27.05912578 ], [ -84.375, 21.94304553 ], [ -90, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.268151, 23.188611 ], [ -81.404457, 23.117271 ], [ -80.618769, 23.10598 ], [ -79.679524, 22.765303 ], [ -79.281486, 22.399202 ], [ -78.347434, 22.512166 ], [ -77.993296, 22.277194 ], [ -77.146422, 21.657851 ], [ -76.523825, 21.20682 ], [ -76.19462, 21.220565 ], [ -75.598222, 21.016624 ], [ -75.67106, 20.735091 ], [ -74.933896, 20.693905 ], [ -74.178025, 20.284628 ], [ -74.296648, 20.050379 ], [ -74.961595, 19.923435 ], [ -75.63468, 19.873774 ], [ -76.323656, 19.952891 ], [ -77.755481, 19.855481 ], [ -77.085108, 20.413354 ], [ -77.492655, 20.673105 ], [ -78.137292, 20.739949 ], [ -78.482827, 21.028613 ], [ -78.719867, 21.598114 ], [ -79.285, 21.559175 ], [ -80.217475, 21.827324 ], [ -80.517535, 22.037079 ], [ -81.820943, 22.192057 ], [ -82.169992, 22.387109 ], [ -81.795002, 22.636965 ], [ -82.775898, 22.68815 ], [ -83.494459, 22.168518 ], [ -83.9088, 22.154565 ], [ -84.052151, 21.910575 ], [ -84.54703, 21.801228 ], [ -84.974911, 21.896028 ], [ -84.447062, 22.20495 ], [ -84.230357, 22.565755 ], [ -83.77824, 22.788118 ], [ -83.267548, 22.983042 ], [ -82.510436, 23.078747 ], [ -82.268151, 23.188611 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CYP.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CYP","properties":{"name":"Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[33.973617,35.058506],[34.004881,34.978098],[32.979827,34.571869],[32.490296,34.701655],[32.256667,35.103232],[32.73178,35.140026],[32.919572,35.087833],[33.190977,35.173125],[33.383833,35.162712],[33.455922,35.101424],[33.475817,35.000345],[33.525685,35.038688],[33.675392,35.017863],[33.86644,35.093595],[33.973617,35.058506]]]}} ]} ================================================ FILE: test/fixtures/world/CYP_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 31.95216224 ], [ 28.125, 36.59788913 ], [ 33.75, 36.59788913 ], [ 33.75, 31.95216224 ], [ 28.125, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 31.95216224 ], [ 33.75, 36.59788913 ], [ 39.375, 36.59788913 ], [ 39.375, 31.95216224 ], [ 33.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.973617, 35.058506 ], [ 34.004881, 34.978098 ], [ 32.979827, 34.571869 ], [ 32.490296, 34.701655 ], [ 32.256667, 35.103232 ], [ 32.73178, 35.140026 ], [ 32.919572, 35.087833 ], [ 33.190977, 35.173125 ], [ 33.383833, 35.162712 ], [ 33.455922, 35.101424 ], [ 33.475817, 35.000345 ], [ 33.525685, 35.038688 ], [ 33.675392, 35.017863 ], [ 33.86644, 35.093595 ], [ 33.973617, 35.058506 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/CZE.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"CZE","properties":{"name":"Czech Republic"},"geometry":{"type":"Polygon","coordinates":[[[16.960288,48.596982],[16.499283,48.785808],[16.029647,48.733899],[15.253416,49.039074],[14.901447,48.964402],[14.338898,48.555305],[13.595946,48.877172],[13.031329,49.307068],[12.521024,49.547415],[12.415191,49.969121],[12.240111,50.266338],[12.966837,50.484076],[13.338132,50.733234],[14.056228,50.926918],[14.307013,51.117268],[14.570718,51.002339],[15.016996,51.106674],[15.490972,50.78473],[16.238627,50.697733],[16.176253,50.422607],[16.719476,50.215747],[16.868769,50.473974],[17.554567,50.362146],[17.649445,50.049038],[18.392914,49.988629],[18.853144,49.49623],[18.554971,49.495015],[18.399994,49.315001],[18.170498,49.271515],[18.104973,49.043983],[17.913512,48.996493],[17.886485,48.903475],[17.545007,48.800019],[17.101985,48.816969],[16.960288,48.596982]]]}} ]} ================================================ FILE: test/fixtures/world/CZE_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 45.08903556 ], [ 11.25, 48.92249926 ], [ 16.875, 48.92249926 ], [ 16.875, 45.08903556 ], [ 11.25, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 48.92249926 ], [ 11.25, 52.48278022 ], [ 16.875, 52.48278022 ], [ 16.875, 48.92249926 ], [ 11.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 45.08903556 ], [ 16.875, 48.92249926 ], [ 22.5, 48.92249926 ], [ 22.5, 45.08903556 ], [ 16.875, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 48.92249926 ], [ 16.875, 52.48278022 ], [ 22.5, 52.48278022 ], [ 22.5, 48.92249926 ], [ 16.875, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.960288, 48.596982 ], [ 16.499283, 48.785808 ], [ 16.029647, 48.733899 ], [ 15.253416, 49.039074 ], [ 14.901447, 48.964402 ], [ 14.338898, 48.555305 ], [ 13.595946, 48.877172 ], [ 13.031329, 49.307068 ], [ 12.521024, 49.547415 ], [ 12.415191, 49.969121 ], [ 12.240111, 50.266338 ], [ 12.966837, 50.484076 ], [ 13.338132, 50.733234 ], [ 14.056228, 50.926918 ], [ 14.307013, 51.117268 ], [ 14.570718, 51.002339 ], [ 15.016996, 51.106674 ], [ 15.490972, 50.78473 ], [ 16.238627, 50.697733 ], [ 16.176253, 50.422607 ], [ 16.719476, 50.215747 ], [ 16.868769, 50.473974 ], [ 17.554567, 50.362146 ], [ 17.649445, 50.049038 ], [ 18.392914, 49.988629 ], [ 18.853144, 49.49623 ], [ 18.554971, 49.495015 ], [ 18.399994, 49.315001 ], [ 18.170498, 49.271515 ], [ 18.104973, 49.043983 ], [ 17.913512, 48.996493 ], [ 17.886485, 48.903475 ], [ 17.545007, 48.800019 ], [ 17.101985, 48.816969 ], [ 16.960288, 48.596982 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/DEU.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"DEU","properties":{"name":"Germany"},"geometry":{"type":"Polygon","coordinates":[[[9.921906,54.983104],[9.93958,54.596642],[10.950112,54.363607],[10.939467,54.008693],[11.956252,54.196486],[12.51844,54.470371],[13.647467,54.075511],[14.119686,53.757029],[14.353315,53.248171],[14.074521,52.981263],[14.4376,52.62485],[14.685026,52.089947],[14.607098,51.745188],[15.016996,51.106674],[14.570718,51.002339],[14.307013,51.117268],[14.056228,50.926918],[13.338132,50.733234],[12.966837,50.484076],[12.240111,50.266338],[12.415191,49.969121],[12.521024,49.547415],[13.031329,49.307068],[13.595946,48.877172],[13.243357,48.416115],[12.884103,48.289146],[13.025851,47.637584],[12.932627,47.467646],[12.62076,47.672388],[12.141357,47.703083],[11.426414,47.523766],[10.544504,47.566399],[10.402084,47.302488],[9.896068,47.580197],[9.594226,47.525058],[8.522612,47.830828],[8.317301,47.61358],[7.466759,47.620582],[7.593676,48.333019],[8.099279,49.017784],[6.65823,49.201958],[6.18632,49.463803],[6.242751,49.902226],[6.043073,50.128052],[6.156658,50.803721],[5.988658,51.851616],[6.589397,51.852029],[6.84287,52.22844],[7.092053,53.144043],[6.90514,53.482162],[7.100425,53.693932],[7.936239,53.748296],[8.121706,53.527792],[8.800734,54.020786],[8.572118,54.395646],[8.526229,54.962744],[9.282049,54.830865],[9.921906,54.983104]]]}} ]} ================================================ FILE: test/fixtures/world/DEU_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 45.08903556 ], [ 11.25, 48.92249926 ], [ 16.875, 48.92249926 ], [ 16.875, 45.08903556 ], [ 11.25, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 48.92249926 ], [ 11.25, 52.48278022 ], [ 16.875, 52.48278022 ], [ 16.875, 48.92249926 ], [ 11.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 52.48278022 ], [ 11.25, 55.77657302 ], [ 16.875, 55.77657302 ], [ 16.875, 52.48278022 ], [ 11.25, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 45.08903556 ], [ 5.625, 48.92249926 ], [ 11.25, 48.92249926 ], [ 11.25, 45.08903556 ], [ 5.625, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 48.92249926 ], [ 5.625, 52.48278022 ], [ 11.25, 52.48278022 ], [ 11.25, 48.92249926 ], [ 5.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 52.48278022 ], [ 5.625, 55.77657302 ], [ 11.25, 55.77657302 ], [ 11.25, 52.48278022 ], [ 5.625, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.921906, 54.983104 ], [ 9.93958, 54.596642 ], [ 10.950112, 54.363607 ], [ 10.939467, 54.008693 ], [ 11.956252, 54.196486 ], [ 12.51844, 54.470371 ], [ 13.647467, 54.075511 ], [ 14.119686, 53.757029 ], [ 14.353315, 53.248171 ], [ 14.074521, 52.981263 ], [ 14.4376, 52.62485 ], [ 14.685026, 52.089947 ], [ 14.607098, 51.745188 ], [ 15.016996, 51.106674 ], [ 14.570718, 51.002339 ], [ 14.307013, 51.117268 ], [ 14.056228, 50.926918 ], [ 13.338132, 50.733234 ], [ 12.966837, 50.484076 ], [ 12.240111, 50.266338 ], [ 12.415191, 49.969121 ], [ 12.521024, 49.547415 ], [ 13.031329, 49.307068 ], [ 13.595946, 48.877172 ], [ 13.243357, 48.416115 ], [ 12.884103, 48.289146 ], [ 13.025851, 47.637584 ], [ 12.932627, 47.467646 ], [ 12.62076, 47.672388 ], [ 12.141357, 47.703083 ], [ 11.426414, 47.523766 ], [ 10.544504, 47.566399 ], [ 10.402084, 47.302488 ], [ 9.896068, 47.580197 ], [ 9.594226, 47.525058 ], [ 8.522612, 47.830828 ], [ 8.317301, 47.61358 ], [ 7.466759, 47.620582 ], [ 7.593676, 48.333019 ], [ 8.099279, 49.017784 ], [ 6.65823, 49.201958 ], [ 6.18632, 49.463803 ], [ 6.242751, 49.902226 ], [ 6.043073, 50.128052 ], [ 6.156658, 50.803721 ], [ 5.988658, 51.851616 ], [ 6.589397, 51.852029 ], [ 6.84287, 52.22844 ], [ 7.092053, 53.144043 ], [ 6.90514, 53.482162 ], [ 7.100425, 53.693932 ], [ 7.936239, 53.748296 ], [ 8.121706, 53.527792 ], [ 8.800734, 54.020786 ], [ 8.572118, 54.395646 ], [ 8.526229, 54.962744 ], [ 9.282049, 54.830865 ], [ 9.921906, 54.983104 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/DJI.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"DJI","properties":{"name":"Djibouti"},"geometry":{"type":"Polygon","coordinates":[[[43.081226,12.699639],[43.317852,12.390148],[43.286381,11.974928],[42.715874,11.735641],[43.145305,11.46204],[42.776852,10.926879],[42.55493,11.10511],[42.31414,11.0342],[41.75557,11.05091],[41.73959,11.35511],[41.66176,11.6312],[42,12.1],[42.35156,12.54223],[42.779642,12.455416],[43.081226,12.699639]]]}} ]} ================================================ FILE: test/fixtures/world/DJI_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 11.17840187 ], [ 39.375, 16.63619188 ], [ 45, 16.63619188 ], [ 45, 11.17840187 ], [ 39.375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 5.61598582 ], [ 39.375, 11.17840187 ], [ 45, 11.17840187 ], [ 45, 5.61598582 ], [ 39.375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.081226, 12.699639 ], [ 43.317852, 12.390148 ], [ 43.286381, 11.974928 ], [ 42.715874, 11.735641 ], [ 43.145305, 11.46204 ], [ 42.776852, 10.926879 ], [ 42.55493, 11.10511 ], [ 42.31414, 11.0342 ], [ 41.75557, 11.05091 ], [ 41.73959, 11.35511 ], [ 41.66176, 11.6312 ], [ 42, 12.1 ], [ 42.35156, 12.54223 ], [ 42.779642, 12.455416 ], [ 43.081226, 12.699639 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/DNK.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"DNK","properties":{"name":"Denmark"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.690006,55.609991],[12.089991,54.800015],[11.043543,55.364864],[10.903914,55.779955],[12.370904,56.111407],[12.690006,55.609991]]],[[[10.912182,56.458621],[10.667804,56.081383],[10.369993,56.190007],[9.649985,55.469999],[9.921906,54.983104],[9.282049,54.830865],[8.526229,54.962744],[8.120311,55.517723],[8.089977,56.540012],[8.256582,56.809969],[8.543438,57.110003],[9.424469,57.172066],[9.775559,57.447941],[10.580006,57.730017],[10.546106,57.215733],[10.25,56.890016],[10.369993,56.609982],[10.912182,56.458621]]]]}} ]} ================================================ FILE: test/fixtures/world/DNK_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 52.48278022 ], [ 11.25, 55.77657302 ], [ 16.875, 55.77657302 ], [ 16.875, 52.48278022 ], [ 11.25, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 55.77657302 ], [ 11.25, 58.81374172 ], [ 16.875, 58.81374172 ], [ 16.875, 55.77657302 ], [ 11.25, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 52.48278022 ], [ 5.625, 55.77657302 ], [ 11.25, 55.77657302 ], [ 11.25, 52.48278022 ], [ 5.625, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 55.77657302 ], [ 5.625, 58.81374172 ], [ 11.25, 58.81374172 ], [ 11.25, 55.77657302 ], [ 5.625, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.690006, 55.609991 ], [ 12.089991, 54.800015 ], [ 11.043543, 55.364864 ], [ 10.903914, 55.779955 ], [ 12.370904, 56.111407 ], [ 12.690006, 55.609991 ] ] ], [ [ [ 10.912182, 56.458621 ], [ 10.667804, 56.081383 ], [ 10.369993, 56.190007 ], [ 9.649985, 55.469999 ], [ 9.921906, 54.983104 ], [ 9.282049, 54.830865 ], [ 8.526229, 54.962744 ], [ 8.120311, 55.517723 ], [ 8.089977, 56.540012 ], [ 8.256582, 56.809969 ], [ 8.543438, 57.110003 ], [ 9.424469, 57.172066 ], [ 9.775559, 57.447941 ], [ 10.580006, 57.730017 ], [ 10.546106, 57.215733 ], [ 10.25, 56.890016 ], [ 10.369993, 56.609982 ], [ 10.912182, 56.458621 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/DOM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"DOM","properties":{"name":"Dominican Republic"},"geometry":{"type":"Polygon","coordinates":[[[-71.712361,19.714456],[-71.587304,19.884911],[-70.806706,19.880286],[-70.214365,19.622885],[-69.950815,19.648],[-69.76925,19.293267],[-69.222126,19.313214],[-69.254346,19.015196],[-68.809412,18.979074],[-68.317943,18.612198],[-68.689316,18.205142],[-69.164946,18.422648],[-69.623988,18.380713],[-69.952934,18.428307],[-70.133233,18.245915],[-70.517137,18.184291],[-70.669298,18.426886],[-70.99995,18.283329],[-71.40021,17.598564],[-71.657662,17.757573],[-71.708305,18.044997],[-71.687738,18.31666],[-71.945112,18.6169],[-71.701303,18.785417],[-71.624873,19.169838],[-71.712361,19.714456]]]}} ]} ================================================ FILE: test/fixtures/world/DOM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 16.63619188 ], [ -73.125, 21.94304553 ], [ -67.5, 21.94304553 ], [ -67.5, 16.63619188 ], [ -73.125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.712361, 19.714456 ], [ -71.587304, 19.884911 ], [ -70.806706, 19.880286 ], [ -70.214365, 19.622885 ], [ -69.950815, 19.648 ], [ -69.76925, 19.293267 ], [ -69.222126, 19.313214 ], [ -69.254346, 19.015196 ], [ -68.809412, 18.979074 ], [ -68.317943, 18.612198 ], [ -68.689316, 18.205142 ], [ -69.164946, 18.422648 ], [ -69.623988, 18.380713 ], [ -69.952934, 18.428307 ], [ -70.133233, 18.245915 ], [ -70.517137, 18.184291 ], [ -70.669298, 18.426886 ], [ -70.99995, 18.283329 ], [ -71.40021, 17.598564 ], [ -71.657662, 17.757573 ], [ -71.708305, 18.044997 ], [ -71.687738, 18.31666 ], [ -71.945112, 18.6169 ], [ -71.701303, 18.785417 ], [ -71.624873, 19.169838 ], [ -71.712361, 19.714456 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/DZA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"DZA","properties":{"name":"Algeria"},"geometry":{"type":"Polygon","coordinates":[[[11.999506,23.471668],[8.572893,21.565661],[5.677566,19.601207],[4.267419,19.155265],[3.158133,19.057364],[3.146661,19.693579],[2.683588,19.85623],[2.060991,20.142233],[1.823228,20.610809],[-1.550055,22.792666],[-4.923337,24.974574],[-8.6844,27.395744],[-8.665124,27.589479],[-8.66559,27.656426],[-8.674116,28.841289],[-7.059228,29.579228],[-6.060632,29.7317],[-5.242129,30.000443],[-4.859646,30.501188],[-3.690441,30.896952],[-3.647498,31.637294],[-3.06898,31.724498],[-2.616605,32.094346],[-1.307899,32.262889],[-1.124551,32.651522],[-1.388049,32.864015],[-1.733455,33.919713],[-1.792986,34.527919],[-2.169914,35.168396],[-1.208603,35.714849],[-0.127454,35.888662],[0.503877,36.301273],[1.466919,36.605647],[3.161699,36.783905],[4.815758,36.865037],[5.32012,36.716519],[6.26182,37.110655],[7.330385,37.118381],[7.737078,36.885708],[8.420964,36.946427],[8.217824,36.433177],[8.376368,35.479876],[8.140981,34.655146],[7.524482,34.097376],[7.612642,33.344115],[8.430473,32.748337],[8.439103,32.506285],[9.055603,32.102692],[9.48214,30.307556],[9.805634,29.424638],[9.859998,28.95999],[9.683885,28.144174],[9.756128,27.688259],[9.629056,27.140953],[9.716286,26.512206],[9.319411,26.094325],[9.910693,25.365455],[9.948261,24.936954],[10.303847,24.379313],[10.771364,24.562532],[11.560669,24.097909],[11.999506,23.471668]]]}} ]} ================================================ FILE: test/fixtures/world/DZA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 21.94304553 ], [ -11.25, 31.95216224 ], [ 0, 31.95216224 ], [ 0, 21.94304553 ], [ -11.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 16.63619188 ], [ -5.625, 21.94304553 ], [ 0, 21.94304553 ], [ 0, 16.63619188 ], [ -5.625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 31.95216224 ], [ -5.625, 36.59788913 ], [ 0, 36.59788913 ], [ 0, 31.95216224 ], [ -5.625, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 16.63619188 ], [ 0, 21.94304553 ], [ 5.625, 21.94304553 ], [ 5.625, 16.63619188 ], [ 0, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 21.94304553 ], [ 0, 31.95216224 ], [ 11.25, 31.95216224 ], [ 11.25, 21.94304553 ], [ 0, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 31.95216224 ], [ 0, 40.97989807 ], [ 11.25, 40.97989807 ], [ 11.25, 31.95216224 ], [ 0, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 21.94304553 ], [ 11.25, 27.05912578 ], [ 16.875, 27.05912578 ], [ 16.875, 21.94304553 ], [ 11.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 16.63619188 ], [ 5.625, 21.94304553 ], [ 11.25, 21.94304553 ], [ 11.25, 16.63619188 ], [ 5.625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.999506, 23.471668 ], [ 8.572893, 21.565661 ], [ 5.677566, 19.601207 ], [ 4.267419, 19.155265 ], [ 3.158133, 19.057364 ], [ 3.146661, 19.693579 ], [ 2.683588, 19.85623 ], [ 2.060991, 20.142233 ], [ 1.823228, 20.610809 ], [ -1.550055, 22.792666 ], [ -4.923337, 24.974574 ], [ -8.6844, 27.395744 ], [ -8.665124, 27.589479 ], [ -8.66559, 27.656426 ], [ -8.674116, 28.841289 ], [ -7.059228, 29.579228 ], [ -6.060632, 29.7317 ], [ -5.242129, 30.000443 ], [ -4.859646, 30.501188 ], [ -3.690441, 30.896952 ], [ -3.647498, 31.637294 ], [ -3.06898, 31.724498 ], [ -2.616605, 32.094346 ], [ -1.307899, 32.262889 ], [ -1.124551, 32.651522 ], [ -1.388049, 32.864015 ], [ -1.733455, 33.919713 ], [ -1.792986, 34.527919 ], [ -2.169914, 35.168396 ], [ -1.208603, 35.714849 ], [ -0.127454, 35.888662 ], [ 0.503877, 36.301273 ], [ 1.466919, 36.605647 ], [ 3.161699, 36.783905 ], [ 4.815758, 36.865037 ], [ 5.32012, 36.716519 ], [ 6.26182, 37.110655 ], [ 7.330385, 37.118381 ], [ 7.737078, 36.885708 ], [ 8.420964, 36.946427 ], [ 8.217824, 36.433177 ], [ 8.376368, 35.479876 ], [ 8.140981, 34.655146 ], [ 7.524482, 34.097376 ], [ 7.612642, 33.344115 ], [ 8.430473, 32.748337 ], [ 8.439103, 32.506285 ], [ 9.055603, 32.102692 ], [ 9.48214, 30.307556 ], [ 9.805634, 29.424638 ], [ 9.859998, 28.95999 ], [ 9.683885, 28.144174 ], [ 9.756128, 27.688259 ], [ 9.629056, 27.140953 ], [ 9.716286, 26.512206 ], [ 9.319411, 26.094325 ], [ 9.910693, 25.365455 ], [ 9.948261, 24.936954 ], [ 10.303847, 24.379313 ], [ 10.771364, 24.562532 ], [ 11.560669, 24.097909 ], [ 11.999506, 23.471668 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ECU.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ECU","properties":{"name":"Ecuador"},"geometry":{"type":"Polygon","coordinates":[[[-80.302561,-3.404856],[-79.770293,-2.657512],[-79.986559,-2.220794],[-80.368784,-2.685159],[-80.967765,-2.246943],[-80.764806,-1.965048],[-80.933659,-1.057455],[-80.58337,-0.906663],[-80.399325,-0.283703],[-80.020898,0.36034],[-80.09061,0.768429],[-79.542762,0.982938],[-78.855259,1.380924],[-77.855061,0.809925],[-77.668613,0.825893],[-77.424984,0.395687],[-76.57638,0.256936],[-76.292314,0.416047],[-75.801466,0.084801],[-75.373223,-0.152032],[-75.233723,-0.911417],[-75.544996,-1.56161],[-76.635394,-2.608678],[-77.837905,-3.003021],[-78.450684,-3.873097],[-78.639897,-4.547784],[-79.205289,-4.959129],[-79.624979,-4.454198],[-80.028908,-4.346091],[-80.442242,-4.425724],[-80.469295,-4.059287],[-80.184015,-3.821162],[-80.302561,-3.404856]]]}} ]} ================================================ FILE: test/fixtures/world/ECU_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, -5.61598582 ], [ -78.75, 0 ], [ -73.125, 0 ], [ -73.125, -5.61598582 ], [ -78.75, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 0 ], [ -78.75, 5.61598582 ], [ -73.125, 5.61598582 ], [ -73.125, 0 ], [ -78.75, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, -5.61598582 ], [ -84.375, 0 ], [ -78.75, 0 ], [ -78.75, -5.61598582 ], [ -84.375, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 0 ], [ -84.375, 5.61598582 ], [ -78.75, 5.61598582 ], [ -78.75, 0 ], [ -84.375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.302561, -3.404856 ], [ -79.770293, -2.657512 ], [ -79.986559, -2.220794 ], [ -80.368784, -2.685159 ], [ -80.967765, -2.246943 ], [ -80.764806, -1.965048 ], [ -80.933659, -1.057455 ], [ -80.58337, -0.906663 ], [ -80.399325, -0.283703 ], [ -80.020898, 0.36034 ], [ -80.09061, 0.768429 ], [ -79.542762, 0.982938 ], [ -78.855259, 1.380924 ], [ -77.855061, 0.809925 ], [ -77.668613, 0.825893 ], [ -77.424984, 0.395687 ], [ -76.57638, 0.256936 ], [ -76.292314, 0.416047 ], [ -75.801466, 0.084801 ], [ -75.373223, -0.152032 ], [ -75.233723, -0.911417 ], [ -75.544996, -1.56161 ], [ -76.635394, -2.608678 ], [ -77.837905, -3.003021 ], [ -78.450684, -3.873097 ], [ -78.639897, -4.547784 ], [ -79.205289, -4.959129 ], [ -79.624979, -4.454198 ], [ -80.028908, -4.346091 ], [ -80.442242, -4.425724 ], [ -80.469295, -4.059287 ], [ -80.184015, -3.821162 ], [ -80.302561, -3.404856 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/EGY.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"EGY","properties":{"name":"Egypt"},"geometry":{"type":"Polygon","coordinates":[[[34.9226,29.50133],[34.64174,29.09942],[34.42655,28.34399],[34.15451,27.8233],[33.92136,27.6487],[33.58811,27.97136],[33.13676,28.41765],[32.42323,29.85108],[32.32046,29.76043],[32.73482,28.70523],[33.34876,27.69989],[34.10455,26.14227],[34.47387,25.59856],[34.79507,25.03375],[35.69241,23.92671],[35.49372,23.75237],[35.52598,23.10244],[36.69069,22.20485],[36.86623,22],[32.9,22],[29.02,22],[25,22],[25,25.6825],[25,29.238655],[24.70007,30.04419],[24.95762,30.6616],[24.80287,31.08929],[25.16482,31.56915],[26.49533,31.58568],[27.45762,31.32126],[28.45048,31.02577],[28.91353,30.87005],[29.68342,31.18686],[30.09503,31.4734],[30.97693,31.55586],[31.68796,31.4296],[31.96041,30.9336],[32.19247,31.26034],[32.99392,31.02407],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133]]]}} ]} ================================================ FILE: test/fixtures/world/EGY_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 21.94304553 ], [ 22.5, 31.95216224 ], [ 33.75, 31.95216224 ], [ 33.75, 21.94304553 ], [ 22.5, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 21.94304553 ], [ 33.75, 27.05912578 ], [ 39.375, 27.05912578 ], [ 39.375, 21.94304553 ], [ 33.75, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 27.05912578 ], [ 33.75, 31.95216224 ], [ 39.375, 31.95216224 ], [ 39.375, 27.05912578 ], [ 33.75, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.9226, 29.50133 ], [ 34.64174, 29.09942 ], [ 34.42655, 28.34399 ], [ 34.15451, 27.8233 ], [ 33.92136, 27.6487 ], [ 33.58811, 27.97136 ], [ 33.13676, 28.41765 ], [ 32.42323, 29.85108 ], [ 32.32046, 29.76043 ], [ 32.73482, 28.70523 ], [ 33.34876, 27.69989 ], [ 34.10455, 26.14227 ], [ 34.47387, 25.59856 ], [ 34.79507, 25.03375 ], [ 35.69241, 23.92671 ], [ 35.49372, 23.75237 ], [ 35.52598, 23.10244 ], [ 36.69069, 22.20485 ], [ 36.86623, 22 ], [ 32.9, 22 ], [ 29.02, 22 ], [ 25, 22 ], [ 25, 25.6825 ], [ 25, 29.238655 ], [ 24.70007, 30.04419 ], [ 24.95762, 30.6616 ], [ 24.80287, 31.08929 ], [ 25.16482, 31.56915 ], [ 26.49533, 31.58568 ], [ 27.45762, 31.32126 ], [ 28.45048, 31.02577 ], [ 28.91353, 30.87005 ], [ 29.68342, 31.18686 ], [ 30.09503, 31.4734 ], [ 30.97693, 31.55586 ], [ 31.68796, 31.4296 ], [ 31.96041, 30.9336 ], [ 32.19247, 31.26034 ], [ 32.99392, 31.02407 ], [ 33.7734, 30.96746 ], [ 34.26544, 31.21936 ], [ 34.9226, 29.50133 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ERI.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ERI","properties":{"name":"Eritrea"},"geometry":{"type":"Polygon","coordinates":[[[42.35156,12.54223],[42.00975,12.86582],[41.59856,13.45209],[41.155194,13.77332],[40.8966,14.11864],[40.026219,14.519579],[39.34061,14.53155],[39.0994,14.74064],[38.51295,14.50547],[37.90607,14.95943],[37.59377,14.2131],[36.42951,14.42211],[36.323189,14.822481],[36.75386,16.291874],[36.85253,16.95655],[37.16747,17.26314],[37.904,17.42754],[38.41009,17.998307],[38.990623,16.840626],[39.26611,15.922723],[39.814294,15.435647],[41.179275,14.49108],[41.734952,13.921037],[42.276831,13.343992],[42.589576,13.000421],[43.081226,12.699639],[42.779642,12.455416],[42.35156,12.54223]]]}} ]} ================================================ FILE: test/fixtures/world/ERI_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 11.17840187 ], [ 33.75, 16.63619188 ], [ 39.375, 16.63619188 ], [ 39.375, 11.17840187 ], [ 33.75, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 16.63619188 ], [ 33.75, 21.94304553 ], [ 39.375, 21.94304553 ], [ 39.375, 16.63619188 ], [ 33.75, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 11.17840187 ], [ 39.375, 16.63619188 ], [ 45, 16.63619188 ], [ 45, 11.17840187 ], [ 39.375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.35156, 12.54223 ], [ 42.00975, 12.86582 ], [ 41.59856, 13.45209 ], [ 41.155194, 13.77332 ], [ 40.8966, 14.11864 ], [ 40.026219, 14.519579 ], [ 39.34061, 14.53155 ], [ 39.0994, 14.74064 ], [ 38.51295, 14.50547 ], [ 37.90607, 14.95943 ], [ 37.59377, 14.2131 ], [ 36.42951, 14.42211 ], [ 36.323189, 14.822481 ], [ 36.75386, 16.291874 ], [ 36.85253, 16.95655 ], [ 37.16747, 17.26314 ], [ 37.904, 17.42754 ], [ 38.41009, 17.998307 ], [ 38.990623, 16.840626 ], [ 39.26611, 15.922723 ], [ 39.814294, 15.435647 ], [ 41.179275, 14.49108 ], [ 41.734952, 13.921037 ], [ 42.276831, 13.343992 ], [ 42.589576, 13.000421 ], [ 43.081226, 12.699639 ], [ 42.779642, 12.455416 ], [ 42.35156, 12.54223 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ESH.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ESH","properties":{"name":"Western Sahara"},"geometry":{"type":"Polygon","coordinates":[[[-8.794884,27.120696],[-8.817828,27.656426],[-8.66559,27.656426],[-8.665124,27.589479],[-8.6844,27.395744],[-8.687294,25.881056],[-11.969419,25.933353],[-11.937224,23.374594],[-12.874222,23.284832],[-13.118754,22.77122],[-12.929102,21.327071],[-16.845194,21.333323],[-17.063423,20.999752],[-17.020428,21.42231],[-17.002962,21.420734],[-14.750955,21.5006],[-14.630833,21.86094],[-14.221168,22.310163],[-13.89111,23.691009],[-12.500963,24.770116],[-12.030759,26.030866],[-11.71822,26.104092],[-11.392555,26.883424],[-10.551263,26.990808],[-10.189424,26.860945],[-9.735343,26.860945],[-9.413037,27.088476],[-8.794884,27.120696]]]}} ]} ================================================ FILE: test/fixtures/world/ESH_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 21.94304553 ], [ -11.25, 27.05912578 ], [ -5.625, 27.05912578 ], [ -5.625, 21.94304553 ], [ -11.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 27.05912578 ], [ -11.25, 31.95216224 ], [ -5.625, 31.95216224 ], [ -5.625, 27.05912578 ], [ -11.25, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 16.63619188 ], [ -16.875, 21.94304553 ], [ -11.25, 21.94304553 ], [ -11.25, 16.63619188 ], [ -16.875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 21.94304553 ], [ -16.875, 27.05912578 ], [ -11.25, 27.05912578 ], [ -11.25, 21.94304553 ], [ -16.875, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 16.63619188 ], [ -22.5, 21.94304553 ], [ -16.875, 21.94304553 ], [ -16.875, 16.63619188 ], [ -22.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.794884, 27.120696 ], [ -8.817828, 27.656426 ], [ -8.66559, 27.656426 ], [ -8.665124, 27.589479 ], [ -8.6844, 27.395744 ], [ -8.687294, 25.881056 ], [ -11.969419, 25.933353 ], [ -11.937224, 23.374594 ], [ -12.874222, 23.284832 ], [ -13.118754, 22.77122 ], [ -12.929102, 21.327071 ], [ -16.845194, 21.333323 ], [ -17.063423, 20.999752 ], [ -17.020428, 21.42231 ], [ -17.002962, 21.420734 ], [ -14.750955, 21.5006 ], [ -14.630833, 21.86094 ], [ -14.221168, 22.310163 ], [ -13.89111, 23.691009 ], [ -12.500963, 24.770116 ], [ -12.030759, 26.030866 ], [ -11.71822, 26.104092 ], [ -11.392555, 26.883424 ], [ -10.551263, 26.990808 ], [ -10.189424, 26.860945 ], [ -9.735343, 26.860945 ], [ -9.413037, 27.088476 ], [ -8.794884, 27.120696 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ESP.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ESP","properties":{"name":"Spain"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.984433,42.592775],[-9.392884,43.026625],[-7.97819,43.748338],[-6.754492,43.567909],[-5.411886,43.57424],[-4.347843,43.403449],[-3.517532,43.455901],[-1.901351,43.422802],[-1.502771,43.034014],[0.338047,42.579546],[0.701591,42.795734],[1.826793,42.343385],[2.985999,42.473015],[3.039484,41.89212],[2.091842,41.226089],[0.810525,41.014732],[0.721331,40.678318],[0.106692,40.123934],[-0.278711,39.309978],[0.111291,38.738514],[-0.467124,38.292366],[-0.683389,37.642354],[-1.438382,37.443064],[-2.146453,36.674144],[-3.415781,36.6589],[-4.368901,36.677839],[-4.995219,36.324708],[-5.37716,35.94685],[-5.866432,36.029817],[-6.236694,36.367677],[-6.520191,36.942913],[-7.453726,37.097788],[-7.537105,37.428904],[-7.166508,37.803894],[-7.029281,38.075764],[-7.374092,38.373059],[-7.098037,39.030073],[-7.498632,39.629571],[-7.066592,39.711892],[-7.026413,40.184524],[-6.86402,40.330872],[-6.851127,41.111083],[-6.389088,41.381815],[-6.668606,41.883387],[-7.251309,41.918346],[-7.422513,41.792075],[-8.013175,41.790886],[-8.263857,42.280469],[-8.671946,42.134689],[-9.034818,41.880571]]]}} ]} ================================================ FILE: test/fixtures/world/ESP_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 31.95216224 ], [ -11.25, 40.97989807 ], [ 0, 40.97989807 ], [ 0, 31.95216224 ], [ -11.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 40.97989807 ], [ -11.25, 45.08903556 ], [ -5.625, 45.08903556 ], [ -5.625, 40.97989807 ], [ -11.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 40.97989807 ], [ -5.625, 45.08903556 ], [ 0, 45.08903556 ], [ 0, 40.97989807 ], [ -5.625, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 36.59788913 ], [ 0, 40.97989807 ], [ 5.625, 40.97989807 ], [ 5.625, 36.59788913 ], [ 0, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 40.97989807 ], [ 0, 45.08903556 ], [ 5.625, 45.08903556 ], [ 5.625, 40.97989807 ], [ 0, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.034818, 41.880571 ], [ -8.984433, 42.592775 ], [ -9.392884, 43.026625 ], [ -7.97819, 43.748338 ], [ -6.754492, 43.567909 ], [ -5.411886, 43.57424 ], [ -4.347843, 43.403449 ], [ -3.517532, 43.455901 ], [ -1.901351, 43.422802 ], [ -1.502771, 43.034014 ], [ 0.338047, 42.579546 ], [ 0.701591, 42.795734 ], [ 1.826793, 42.343385 ], [ 2.985999, 42.473015 ], [ 3.039484, 41.89212 ], [ 2.091842, 41.226089 ], [ 0.810525, 41.014732 ], [ 0.721331, 40.678318 ], [ 0.106692, 40.123934 ], [ -0.278711, 39.309978 ], [ 0.111291, 38.738514 ], [ -0.467124, 38.292366 ], [ -0.683389, 37.642354 ], [ -1.438382, 37.443064 ], [ -2.146453, 36.674144 ], [ -3.415781, 36.6589 ], [ -4.368901, 36.677839 ], [ -4.995219, 36.324708 ], [ -5.37716, 35.94685 ], [ -5.866432, 36.029817 ], [ -6.236694, 36.367677 ], [ -6.520191, 36.942913 ], [ -7.453726, 37.097788 ], [ -7.537105, 37.428904 ], [ -7.166508, 37.803894 ], [ -7.029281, 38.075764 ], [ -7.374092, 38.373059 ], [ -7.098037, 39.030073 ], [ -7.498632, 39.629571 ], [ -7.066592, 39.711892 ], [ -7.026413, 40.184524 ], [ -6.86402, 40.330872 ], [ -6.851127, 41.111083 ], [ -6.389088, 41.381815 ], [ -6.668606, 41.883387 ], [ -7.251309, 41.918346 ], [ -7.422513, 41.792075 ], [ -8.013175, 41.790886 ], [ -8.263857, 42.280469 ], [ -8.671946, 42.134689 ], [ -9.034818, 41.880571 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/EST.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"EST","properties":{"name":"Estonia"},"geometry":{"type":"Polygon","coordinates":[[[24.312863,57.793424],[24.428928,58.383413],[24.061198,58.257375],[23.42656,58.612753],[23.339795,59.18724],[24.604214,59.465854],[25.864189,59.61109],[26.949136,59.445803],[27.981114,59.475388],[28.131699,59.300825],[27.420166,58.724581],[27.716686,57.791899],[27.288185,57.474528],[26.463532,57.476389],[25.60281,57.847529],[25.164594,57.970157],[24.312863,57.793424]]]}} ]} ================================================ FILE: test/fixtures/world/EST_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 55.77657302 ], [ 22.5, 58.81374172 ], [ 28.125, 58.81374172 ], [ 28.125, 55.77657302 ], [ 22.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 58.81374172 ], [ 22.5, 61.60639637 ], [ 28.125, 61.60639637 ], [ 28.125, 58.81374172 ], [ 22.5, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 58.81374172 ], [ 28.125, 61.60639637 ], [ 33.75, 61.60639637 ], [ 33.75, 58.81374172 ], [ 28.125, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.312863, 57.793424 ], [ 24.428928, 58.383413 ], [ 24.061198, 58.257375 ], [ 23.42656, 58.612753 ], [ 23.339795, 59.18724 ], [ 24.604214, 59.465854 ], [ 25.864189, 59.61109 ], [ 26.949136, 59.445803 ], [ 27.981114, 59.475388 ], [ 28.131699, 59.300825 ], [ 27.420166, 58.724581 ], [ 27.716686, 57.791899 ], [ 27.288185, 57.474528 ], [ 26.463532, 57.476389 ], [ 25.60281, 57.847529 ], [ 25.164594, 57.970157 ], [ 24.312863, 57.793424 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ETH.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ETH","properties":{"name":"Ethiopia"},"geometry":{"type":"Polygon","coordinates":[[[37.90607,14.95943],[38.51295,14.50547],[39.0994,14.74064],[39.34061,14.53155],[40.02625,14.51959],[40.8966,14.11864],[41.1552,13.77333],[41.59856,13.45209],[42.00975,12.86582],[42.35156,12.54223],[42,12.1],[41.66176,11.6312],[41.73959,11.35511],[41.75557,11.05091],[42.31414,11.0342],[42.55493,11.10511],[42.776852,10.926879],[42.55876,10.57258],[42.92812,10.02194],[43.29699,9.54048],[43.67875,9.18358],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.00162],[43.66087,4.95755],[42.76967,4.25259],[42.12861,4.23413],[41.855083,3.918912],[41.1718,3.91909],[40.76848,4.25702],[39.85494,3.83879],[39.559384,3.42206],[38.89251,3.50074],[38.67114,3.61607],[38.43697,3.58851],[38.120915,3.598605],[36.855093,4.447864],[36.159079,4.447864],[35.817448,4.776966],[35.817448,5.338232],[35.298007,5.506],[34.70702,6.59422],[34.25032,6.82607],[34.0751,7.22595],[33.56829,7.71334],[32.95418,7.78497],[33.2948,8.35458],[33.8255,8.37916],[33.97498,8.68456],[33.96162,9.58358],[34.25745,10.63009],[34.73115,10.91017],[34.83163,11.31896],[35.26049,12.08286],[35.86363,12.57828],[36.27022,13.56333],[36.42951,14.42211],[37.59377,14.2131],[37.90607,14.95943]]]}} ]} ================================================ FILE: test/fixtures/world/ETH_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 5.61598582 ], [ 28.125, 11.17840187 ], [ 33.75, 11.17840187 ], [ 33.75, 5.61598582 ], [ 28.125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 0 ], [ 33.75, 11.17840187 ], [ 45, 11.17840187 ], [ 45, 0 ], [ 33.75, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 11.17840187 ], [ 33.75, 16.63619188 ], [ 39.375, 16.63619188 ], [ 39.375, 11.17840187 ], [ 33.75, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 11.17840187 ], [ 39.375, 16.63619188 ], [ 45, 16.63619188 ], [ 45, 11.17840187 ], [ 39.375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 0 ], [ 45, 5.61598582 ], [ 50.625, 5.61598582 ], [ 50.625, 0 ], [ 45, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 5.61598582 ], [ 45, 11.17840187 ], [ 50.625, 11.17840187 ], [ 50.625, 5.61598582 ], [ 45, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.90607, 14.95943 ], [ 38.51295, 14.50547 ], [ 39.0994, 14.74064 ], [ 39.34061, 14.53155 ], [ 40.02625, 14.51959 ], [ 40.8966, 14.11864 ], [ 41.1552, 13.77333 ], [ 41.59856, 13.45209 ], [ 42.00975, 12.86582 ], [ 42.35156, 12.54223 ], [ 42, 12.1 ], [ 41.66176, 11.6312 ], [ 41.73959, 11.35511 ], [ 41.75557, 11.05091 ], [ 42.31414, 11.0342 ], [ 42.55493, 11.10511 ], [ 42.776852, 10.926879 ], [ 42.55876, 10.57258 ], [ 42.92812, 10.02194 ], [ 43.29699, 9.54048 ], [ 43.67875, 9.18358 ], [ 46.94834, 7.99688 ], [ 47.78942, 8.003 ], [ 44.9636, 5.00162 ], [ 43.66087, 4.95755 ], [ 42.76967, 4.25259 ], [ 42.12861, 4.23413 ], [ 41.855083, 3.918912 ], [ 41.1718, 3.91909 ], [ 40.76848, 4.25702 ], [ 39.85494, 3.83879 ], [ 39.559384, 3.42206 ], [ 38.89251, 3.50074 ], [ 38.67114, 3.61607 ], [ 38.43697, 3.58851 ], [ 38.120915, 3.598605 ], [ 36.855093, 4.447864 ], [ 36.159079, 4.447864 ], [ 35.817448, 4.776966 ], [ 35.817448, 5.338232 ], [ 35.298007, 5.506 ], [ 34.70702, 6.59422 ], [ 34.25032, 6.82607 ], [ 34.0751, 7.22595 ], [ 33.56829, 7.71334 ], [ 32.95418, 7.78497 ], [ 33.2948, 8.35458 ], [ 33.8255, 8.37916 ], [ 33.97498, 8.68456 ], [ 33.96162, 9.58358 ], [ 34.25745, 10.63009 ], [ 34.73115, 10.91017 ], [ 34.83163, 11.31896 ], [ 35.26049, 12.08286 ], [ 35.86363, 12.57828 ], [ 36.27022, 13.56333 ], [ 36.42951, 14.42211 ], [ 37.59377, 14.2131 ], [ 37.90607, 14.95943 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/FIN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"FIN","properties":{"name":"Finland"},"geometry":{"type":"Polygon","coordinates":[[[28.59193,69.064777],[28.445944,68.364613],[29.977426,67.698297],[29.054589,66.944286],[30.21765,65.80598],[29.54443,64.948672],[30.444685,64.204453],[30.035872,63.552814],[31.516092,62.867687],[31.139991,62.357693],[30.211107,61.780028],[28.069998,60.503517],[26.255173,60.423961],[24.496624,60.057316],[22.869695,59.846373],[22.290764,60.391921],[21.322244,60.72017],[21.544866,61.705329],[21.059211,62.607393],[21.536029,63.189735],[22.442744,63.81781],[24.730512,64.902344],[25.398068,65.111427],[25.294043,65.534346],[23.903379,66.006927],[23.56588,66.396051],[23.539473,67.936009],[21.978535,68.616846],[20.645593,69.106247],[21.244936,69.370443],[22.356238,68.841741],[23.66205,68.891247],[24.735679,68.649557],[25.689213,69.092114],[26.179622,69.825299],[27.732292,70.164193],[29.015573,69.766491],[28.59193,69.064777]]]}} ]} ================================================ FILE: test/fixtures/world/FIN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 58.81374172 ], [ 16.875, 61.60639637 ], [ 22.5, 61.60639637 ], [ 22.5, 58.81374172 ], [ 16.875, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 61.60639637 ], [ 16.875, 64.1681069 ], [ 22.5, 64.1681069 ], [ 22.5, 61.60639637 ], [ 16.875, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 66.51326044 ], [ 16.875, 68.65655498 ], [ 22.5, 68.65655498 ], [ 22.5, 66.51326044 ], [ 16.875, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 68.65655498 ], [ 16.875, 70.61261424 ], [ 22.5, 70.61261424 ], [ 22.5, 68.65655498 ], [ 16.875, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 58.81374172 ], [ 22.5, 61.60639637 ], [ 28.125, 61.60639637 ], [ 28.125, 58.81374172 ], [ 22.5, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 61.60639637 ], [ 22.5, 66.51326044 ], [ 33.75, 66.51326044 ], [ 33.75, 61.60639637 ], [ 22.5, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 66.51326044 ], [ 22.5, 70.61261424 ], [ 33.75, 70.61261424 ], [ 33.75, 66.51326044 ], [ 22.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 58.81374172 ], [ 28.125, 61.60639637 ], [ 33.75, 61.60639637 ], [ 33.75, 58.81374172 ], [ 28.125, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.59193, 69.064777 ], [ 28.445944, 68.364613 ], [ 29.977426, 67.698297 ], [ 29.054589, 66.944286 ], [ 30.21765, 65.80598 ], [ 29.54443, 64.948672 ], [ 30.444685, 64.204453 ], [ 30.035872, 63.552814 ], [ 31.516092, 62.867687 ], [ 31.139991, 62.357693 ], [ 30.211107, 61.780028 ], [ 28.069998, 60.503517 ], [ 26.255173, 60.423961 ], [ 24.496624, 60.057316 ], [ 22.869695, 59.846373 ], [ 22.290764, 60.391921 ], [ 21.322244, 60.72017 ], [ 21.544866, 61.705329 ], [ 21.059211, 62.607393 ], [ 21.536029, 63.189735 ], [ 22.442744, 63.81781 ], [ 24.730512, 64.902344 ], [ 25.398068, 65.111427 ], [ 25.294043, 65.534346 ], [ 23.903379, 66.006927 ], [ 23.56588, 66.396051 ], [ 23.539473, 67.936009 ], [ 21.978535, 68.616846 ], [ 20.645593, 69.106247 ], [ 21.244936, 69.370443 ], [ 22.356238, 68.841741 ], [ 23.66205, 68.891247 ], [ 24.735679, 68.649557 ], [ 25.689213, 69.092114 ], [ 26.179622, 69.825299 ], [ 27.732292, 70.164193 ], [ 29.015573, 69.766491 ], [ 28.59193, 69.064777 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/FJI.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"FJI","properties":{"name":"Fiji"},"geometry":{"type":"MultiPolygon","coordinates":[[[[178.3736,-17.33992],[178.71806,-17.62846],[178.55271,-18.15059],[177.93266,-18.28799],[177.38146,-18.16432],[177.28504,-17.72465],[177.67087,-17.38114],[178.12557,-17.50481],[178.3736,-17.33992]]],[[[179.364143,-16.801354],[178.725059,-17.012042],[178.596839,-16.63915],[179.096609,-16.433984],[179.413509,-16.379054],[180,-16.067133],[180,-16.555217],[179.364143,-16.801354]]],[[[-179.917369,-16.501783],[-180,-16.555217],[-180,-16.067133],[-179.79332,-16.020882],[-179.917369,-16.501783]]]]}} ]} ================================================ FILE: test/fixtures/world/FJI_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -180, -16.63619188 ], [ -180, -11.17840187 ], [ -174.375, -11.17840187 ], [ -174.375, -16.63619188 ], [ -180, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.375, -16.63619188 ], [ 174.375, -11.17840187 ], [ 180, -11.17840187 ], [ 180, -16.63619188 ], [ 174.375, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.375, -21.94304553 ], [ 174.375, -16.63619188 ], [ 180, -16.63619188 ], [ 180, -21.94304553 ], [ 174.375, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 180, -16.63619188 ], [ 180, -11.17840187 ], [ 185.625, -11.17840187 ], [ 185.625, -16.63619188 ], [ 180, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.3736, -17.33992 ], [ 178.71806, -17.62846 ], [ 178.55271, -18.15059 ], [ 177.93266, -18.28799 ], [ 177.38146, -18.16432 ], [ 177.28504, -17.72465 ], [ 177.67087, -17.38114 ], [ 178.12557, -17.50481 ], [ 178.3736, -17.33992 ] ] ], [ [ [ 179.364143, -16.801354 ], [ 178.725059, -17.012042 ], [ 178.596839, -16.63915 ], [ 179.096609, -16.433984 ], [ 179.413509, -16.379054 ], [ 180, -16.067133 ], [ 180, -16.555217 ], [ 179.364143, -16.801354 ] ] ], [ [ [ -179.917369, -16.501783 ], [ -180, -16.555217 ], [ -180, -16.067133 ], [ -179.79332, -16.020882 ], [ -179.917369, -16.501783 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/FLK.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"FLK","properties":{"name":"Falkland Islands"},"geometry":{"type":"Polygon","coordinates":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-58.05,-51.9],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]}} ]} ================================================ FILE: test/fixtures/world/FLK_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -52.48278022 ], [ -61.875, -48.92249926 ], [ -56.25, -48.92249926 ], [ -56.25, -52.48278022 ], [ -61.875, -52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.2, -51.85 ], [ -60, -51.25 ], [ -59.15, -51.5 ], [ -58.55, -51.1 ], [ -57.75, -51.55 ], [ -58.05, -51.9 ], [ -59.4, -52.2 ], [ -59.85, -51.85 ], [ -60.7, -52.3 ], [ -61.2, -51.85 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/FRA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"FRA","properties":{"name":"France"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.560016,42.152492],[9.229752,41.380007],[8.775723,41.583612],[8.544213,42.256517],[8.746009,42.628122],[9.390001,43.009985],[9.560016,42.152492]]],[[[3.588184,50.378992],[4.286023,49.907497],[4.799222,49.985373],[5.674052,49.529484],[5.897759,49.442667],[6.18632,49.463803],[6.65823,49.201958],[8.099279,49.017784],[7.593676,48.333019],[7.466759,47.620582],[7.192202,47.449766],[6.736571,47.541801],[6.768714,47.287708],[6.037389,46.725779],[6.022609,46.27299],[6.5001,46.429673],[6.843593,45.991147],[6.802355,45.70858],[7.096652,45.333099],[6.749955,45.028518],[7.007562,44.254767],[7.549596,44.127901],[7.435185,43.693845],[6.529245,43.128892],[4.556963,43.399651],[3.100411,43.075201],[2.985999,42.473015],[1.826793,42.343385],[0.701591,42.795734],[0.338047,42.579546],[-1.502771,43.034014],[-1.901351,43.422802],[-1.384225,44.02261],[-1.193798,46.014918],[-2.225724,47.064363],[-2.963276,47.570327],[-4.491555,47.954954],[-4.59235,48.68416],[-3.295814,48.901692],[-1.616511,48.644421],[-1.933494,49.776342],[-0.989469,49.347376],[1.338761,50.127173],[1.639001,50.946606],[2.513573,51.148506],[2.658422,50.796848],[3.123252,50.780363],[3.588184,50.378992]]]]}} ]} ================================================ FILE: test/fixtures/world/FRA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 40.97989807 ], [ -5.625, 45.08903556 ], [ 0, 45.08903556 ], [ 0, 40.97989807 ], [ -5.625, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 45.08903556 ], [ -5.625, 48.92249926 ], [ 0, 48.92249926 ], [ 0, 45.08903556 ], [ -5.625, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 48.92249926 ], [ -5.625, 52.48278022 ], [ 0, 52.48278022 ], [ 0, 48.92249926 ], [ -5.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 40.97989807 ], [ 0, 48.92249926 ], [ 11.25, 48.92249926 ], [ 11.25, 40.97989807 ], [ 0, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 48.92249926 ], [ 0, 52.48278022 ], [ 5.625, 52.48278022 ], [ 5.625, 48.92249926 ], [ 0, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 48.92249926 ], [ 5.625, 52.48278022 ], [ 11.25, 52.48278022 ], [ 11.25, 48.92249926 ], [ 5.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.560016, 42.152492 ], [ 9.229752, 41.380007 ], [ 8.775723, 41.583612 ], [ 8.544213, 42.256517 ], [ 8.746009, 42.628122 ], [ 9.390001, 43.009985 ], [ 9.560016, 42.152492 ] ] ], [ [ [ 3.588184, 50.378992 ], [ 4.286023, 49.907497 ], [ 4.799222, 49.985373 ], [ 5.674052, 49.529484 ], [ 5.897759, 49.442667 ], [ 6.18632, 49.463803 ], [ 6.65823, 49.201958 ], [ 8.099279, 49.017784 ], [ 7.593676, 48.333019 ], [ 7.466759, 47.620582 ], [ 7.192202, 47.449766 ], [ 6.736571, 47.541801 ], [ 6.768714, 47.287708 ], [ 6.037389, 46.725779 ], [ 6.022609, 46.27299 ], [ 6.5001, 46.429673 ], [ 6.843593, 45.991147 ], [ 6.802355, 45.70858 ], [ 7.096652, 45.333099 ], [ 6.749955, 45.028518 ], [ 7.007562, 44.254767 ], [ 7.549596, 44.127901 ], [ 7.435185, 43.693845 ], [ 6.529245, 43.128892 ], [ 4.556963, 43.399651 ], [ 3.100411, 43.075201 ], [ 2.985999, 42.473015 ], [ 1.826793, 42.343385 ], [ 0.701591, 42.795734 ], [ 0.338047, 42.579546 ], [ -1.502771, 43.034014 ], [ -1.901351, 43.422802 ], [ -1.384225, 44.02261 ], [ -1.193798, 46.014918 ], [ -2.225724, 47.064363 ], [ -2.963276, 47.570327 ], [ -4.491555, 47.954954 ], [ -4.59235, 48.68416 ], [ -3.295814, 48.901692 ], [ -1.616511, 48.644421 ], [ -1.933494, 49.776342 ], [ -0.989469, 49.347376 ], [ 1.338761, 50.127173 ], [ 1.639001, 50.946606 ], [ 2.513573, 51.148506 ], [ 2.658422, 50.796848 ], [ 3.123252, 50.780363 ], [ 3.588184, 50.378992 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GAB.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GAB","properties":{"name":"Gabon"},"geometry":{"type":"Polygon","coordinates":[[[11.093773,-3.978827],[10.066135,-2.969483],[9.405245,-2.144313],[8.797996,-1.111301],[8.830087,-0.779074],[9.04842,-0.459351],[9.291351,0.268666],[9.492889,1.01012],[9.830284,1.067894],[11.285079,1.057662],[11.276449,2.261051],[11.751665,2.326758],[12.35938,2.192812],[12.951334,2.321616],[13.075822,2.267097],[13.003114,1.830896],[13.282631,1.314184],[14.026669,1.395677],[14.276266,1.19693],[13.843321,0.038758],[14.316418,-0.552627],[14.425456,-1.333407],[14.29921,-1.998276],[13.992407,-2.470805],[13.109619,-2.42874],[12.575284,-1.948511],[12.495703,-2.391688],[11.820964,-2.514161],[11.478039,-2.765619],[11.855122,-3.426871],[11.093773,-3.978827]]]}} ]} ================================================ FILE: test/fixtures/world/GAB_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, -5.61598582 ], [ 11.25, 0 ], [ 16.875, 0 ], [ 16.875, -5.61598582 ], [ 11.25, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 0 ], [ 11.25, 5.61598582 ], [ 16.875, 5.61598582 ], [ 16.875, 0 ], [ 11.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, -5.61598582 ], [ 5.625, 0 ], [ 11.25, 0 ], [ 11.25, -5.61598582 ], [ 5.625, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 0 ], [ 5.625, 5.61598582 ], [ 11.25, 5.61598582 ], [ 11.25, 0 ], [ 5.625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.093773, -3.978827 ], [ 10.066135, -2.969483 ], [ 9.405245, -2.144313 ], [ 8.797996, -1.111301 ], [ 8.830087, -0.779074 ], [ 9.04842, -0.459351 ], [ 9.291351, 0.268666 ], [ 9.492889, 1.01012 ], [ 9.830284, 1.067894 ], [ 11.285079, 1.057662 ], [ 11.276449, 2.261051 ], [ 11.751665, 2.326758 ], [ 12.35938, 2.192812 ], [ 12.951334, 2.321616 ], [ 13.075822, 2.267097 ], [ 13.003114, 1.830896 ], [ 13.282631, 1.314184 ], [ 14.026669, 1.395677 ], [ 14.276266, 1.19693 ], [ 13.843321, 0.038758 ], [ 14.316418, -0.552627 ], [ 14.425456, -1.333407 ], [ 14.29921, -1.998276 ], [ 13.992407, -2.470805 ], [ 13.109619, -2.42874 ], [ 12.575284, -1.948511 ], [ 12.495703, -2.391688 ], [ 11.820964, -2.514161 ], [ 11.478039, -2.765619 ], [ 11.855122, -3.426871 ], [ 11.093773, -3.978827 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GBR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GBR","properties":{"name":"United Kingdom"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.661949,54.554603],[-6.197885,53.867565],[-6.95373,54.073702],[-7.572168,54.059956],[-7.366031,54.595841],[-7.572168,55.131622],[-6.733847,55.17286],[-5.661949,54.554603]]],[[[-3.005005,58.635],[-4.073828,57.553025],[-3.055002,57.690019],[-1.959281,57.6848],[-2.219988,56.870017],[-3.119003,55.973793],[-2.085009,55.909998],[-2.005676,55.804903],[-1.114991,54.624986],[-0.430485,54.464376],[0.184981,53.325014],[0.469977,52.929999],[1.681531,52.73952],[1.559988,52.099998],[1.050562,51.806761],[1.449865,51.289428],[0.550334,50.765739],[-0.787517,50.774989],[-2.489998,50.500019],[-2.956274,50.69688],[-3.617448,50.228356],[-4.542508,50.341837],[-5.245023,49.96],[-5.776567,50.159678],[-4.30999,51.210001],[-3.414851,51.426009],[-3.422719,51.426848],[-4.984367,51.593466],[-5.267296,51.9914],[-4.222347,52.301356],[-4.770013,52.840005],[-4.579999,53.495004],[-3.093831,53.404547],[-3.09208,53.404441],[-2.945009,53.985],[-3.614701,54.600937],[-3.630005,54.615013],[-4.844169,54.790971],[-5.082527,55.061601],[-4.719112,55.508473],[-5.047981,55.783986],[-5.586398,55.311146],[-5.644999,56.275015],[-6.149981,56.78501],[-5.786825,57.818848],[-5.009999,58.630013],[-4.211495,58.550845],[-3.005005,58.635]]]]}} ]} ================================================ FILE: test/fixtures/world/GBR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 48.92249926 ], [ -11.25, 55.77657302 ], [ 0, 55.77657302 ], [ 0, 48.92249926 ], [ -11.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 55.77657302 ], [ -11.25, 58.81374172 ], [ -5.625, 58.81374172 ], [ -5.625, 55.77657302 ], [ -11.25, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 55.77657302 ], [ -5.625, 58.81374172 ], [ 0, 58.81374172 ], [ 0, 55.77657302 ], [ -5.625, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 48.92249926 ], [ 0, 52.48278022 ], [ 5.625, 52.48278022 ], [ 5.625, 48.92249926 ], [ 0, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 52.48278022 ], [ 0, 55.77657302 ], [ 5.625, 55.77657302 ], [ 5.625, 52.48278022 ], [ 0, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.661949, 54.554603 ], [ -6.197885, 53.867565 ], [ -6.95373, 54.073702 ], [ -7.572168, 54.059956 ], [ -7.366031, 54.595841 ], [ -7.572168, 55.131622 ], [ -6.733847, 55.17286 ], [ -5.661949, 54.554603 ] ] ], [ [ [ -3.005005, 58.635 ], [ -4.073828, 57.553025 ], [ -3.055002, 57.690019 ], [ -1.959281, 57.6848 ], [ -2.219988, 56.870017 ], [ -3.119003, 55.973793 ], [ -2.085009, 55.909998 ], [ -2.005676, 55.804903 ], [ -1.114991, 54.624986 ], [ -0.430485, 54.464376 ], [ 0.184981, 53.325014 ], [ 0.469977, 52.929999 ], [ 1.681531, 52.73952 ], [ 1.559988, 52.099998 ], [ 1.050562, 51.806761 ], [ 1.449865, 51.289428 ], [ 0.550334, 50.765739 ], [ -0.787517, 50.774989 ], [ -2.489998, 50.500019 ], [ -2.956274, 50.69688 ], [ -3.617448, 50.228356 ], [ -4.542508, 50.341837 ], [ -5.245023, 49.96 ], [ -5.776567, 50.159678 ], [ -4.30999, 51.210001 ], [ -3.414851, 51.426009 ], [ -3.422719, 51.426848 ], [ -4.984367, 51.593466 ], [ -5.267296, 51.9914 ], [ -4.222347, 52.301356 ], [ -4.770013, 52.840005 ], [ -4.579999, 53.495004 ], [ -3.093831, 53.404547 ], [ -3.09208, 53.404441 ], [ -2.945009, 53.985 ], [ -3.614701, 54.600937 ], [ -3.630005, 54.615013 ], [ -4.844169, 54.790971 ], [ -5.082527, 55.061601 ], [ -4.719112, 55.508473 ], [ -5.047981, 55.783986 ], [ -5.586398, 55.311146 ], [ -5.644999, 56.275015 ], [ -6.149981, 56.78501 ], [ -5.786825, 57.818848 ], [ -5.009999, 58.630013 ], [ -4.211495, 58.550845 ], [ -3.005005, 58.635 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GEO.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GEO","properties":{"name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[41.554084,41.535656],[41.703171,41.962943],[41.45347,42.645123],[40.875469,43.013628],[40.321394,43.128634],[39.955009,43.434998],[40.076965,43.553104],[40.922185,43.382159],[42.394395,43.220308],[43.756017,42.740828],[43.9312,42.554974],[44.537623,42.711993],[45.470279,42.502781],[45.77641,42.092444],[46.404951,41.860675],[46.145432,41.722802],[46.637908,41.181673],[46.501637,41.064445],[45.962601,41.123873],[45.217426,41.411452],[44.97248,41.248129],[43.582746,41.092143],[42.619549,41.583173],[41.554084,41.535656]]]}} ]} ================================================ FILE: test/fixtures/world/GEO_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 40.97989807 ], [ 39.375, 45.08903556 ], [ 45, 45.08903556 ], [ 45, 40.97989807 ], [ 39.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 40.97989807 ], [ 45, 45.08903556 ], [ 50.625, 45.08903556 ], [ 50.625, 40.97989807 ], [ 45, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.554084, 41.535656 ], [ 41.703171, 41.962943 ], [ 41.45347, 42.645123 ], [ 40.875469, 43.013628 ], [ 40.321394, 43.128634 ], [ 39.955009, 43.434998 ], [ 40.076965, 43.553104 ], [ 40.922185, 43.382159 ], [ 42.394395, 43.220308 ], [ 43.756017, 42.740828 ], [ 43.9312, 42.554974 ], [ 44.537623, 42.711993 ], [ 45.470279, 42.502781 ], [ 45.77641, 42.092444 ], [ 46.404951, 41.860675 ], [ 46.145432, 41.722802 ], [ 46.637908, 41.181673 ], [ 46.501637, 41.064445 ], [ 45.962601, 41.123873 ], [ 45.217426, 41.411452 ], [ 44.97248, 41.248129 ], [ 43.582746, 41.092143 ], [ 42.619549, 41.583173 ], [ 41.554084, 41.535656 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GHA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GHA","properties":{"name":"Ghana"},"geometry":{"type":"Polygon","coordinates":[[[1.060122,5.928837],[-0.507638,5.343473],[-1.063625,5.000548],[-1.964707,4.710462],[-2.856125,4.994476],[-2.810701,5.389051],[-3.24437,6.250472],[-2.983585,7.379705],[-2.56219,8.219628],[-2.827496,9.642461],[-2.963896,10.395335],[-2.940409,10.96269],[-1.203358,11.009819],[-0.761576,10.93693],[-0.438702,11.098341],[0.023803,11.018682],[-0.049785,10.706918],[0.36758,10.191213],[0.365901,9.465004],[0.461192,8.677223],[0.712029,8.312465],[0.490957,7.411744],[0.570384,6.914359],[0.836931,6.279979],[1.060122,5.928837]]]}} ]} ================================================ FILE: test/fixtures/world/GHA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 0 ], [ -5.625, 5.61598582 ], [ 0, 5.61598582 ], [ 0, 0 ], [ -5.625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 5.61598582 ], [ -5.625, 11.17840187 ], [ 0, 11.17840187 ], [ 0, 5.61598582 ], [ -5.625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 0 ], [ 0, 5.61598582 ], [ 5.625, 5.61598582 ], [ 5.625, 0 ], [ 0, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 5.61598582 ], [ 0, 11.17840187 ], [ 5.625, 11.17840187 ], [ 5.625, 5.61598582 ], [ 0, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.060122, 5.928837 ], [ -0.507638, 5.343473 ], [ -1.063625, 5.000548 ], [ -1.964707, 4.710462 ], [ -2.856125, 4.994476 ], [ -2.810701, 5.389051 ], [ -3.24437, 6.250472 ], [ -2.983585, 7.379705 ], [ -2.56219, 8.219628 ], [ -2.827496, 9.642461 ], [ -2.963896, 10.395335 ], [ -2.940409, 10.96269 ], [ -1.203358, 11.009819 ], [ -0.761576, 10.93693 ], [ -0.438702, 11.098341 ], [ 0.023803, 11.018682 ], [ -0.049785, 10.706918 ], [ 0.36758, 10.191213 ], [ 0.365901, 9.465004 ], [ 0.461192, 8.677223 ], [ 0.712029, 8.312465 ], [ 0.490957, 7.411744 ], [ 0.570384, 6.914359 ], [ 0.836931, 6.279979 ], [ 1.060122, 5.928837 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GIN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GIN","properties":{"name":"Guinea"},"geometry":{"type":"Polygon","coordinates":[[[-8.439298,7.686043],[-8.722124,7.711674],[-8.926065,7.309037],[-9.208786,7.313921],[-9.403348,7.526905],[-9.33728,7.928534],[-9.755342,8.541055],[-10.016567,8.428504],[-10.230094,8.406206],[-10.505477,8.348896],[-10.494315,8.715541],[-10.65477,8.977178],[-10.622395,9.26791],[-10.839152,9.688246],[-11.117481,10.045873],[-11.917277,10.046984],[-12.150338,9.858572],[-12.425929,9.835834],[-12.596719,9.620188],[-12.711958,9.342712],[-13.24655,8.903049],[-13.685154,9.494744],[-14.074045,9.886167],[-14.330076,10.01572],[-14.579699,10.214467],[-14.693232,10.656301],[-14.839554,10.876572],[-15.130311,11.040412],[-14.685687,11.527824],[-14.382192,11.509272],[-14.121406,11.677117],[-13.9008,11.678719],[-13.743161,11.811269],[-13.828272,12.142644],[-13.718744,12.247186],[-13.700476,12.586183],[-13.217818,12.575874],[-12.499051,12.33209],[-12.278599,12.35444],[-12.203565,12.465648],[-11.658301,12.386583],[-11.513943,12.442988],[-11.456169,12.076834],[-11.297574,12.077971],[-11.036556,12.211245],[-10.87083,12.177887],[-10.593224,11.923975],[-10.165214,11.844084],[-9.890993,12.060479],[-9.567912,12.194243],[-9.327616,12.334286],[-9.127474,12.30806],[-8.905265,12.088358],[-8.786099,11.812561],[-8.376305,11.393646],[-8.581305,11.136246],[-8.620321,10.810891],[-8.407311,10.909257],[-8.282357,10.792597],[-8.335377,10.494812],[-8.029944,10.206535],[-8.229337,10.12902],[-8.309616,9.789532],[-8.079114,9.376224],[-7.8321,8.575704],[-8.203499,8.455453],[-8.299049,8.316444],[-8.221792,8.123329],[-8.280703,7.68718],[-8.439298,7.686043]]]}} ]} ================================================ FILE: test/fixtures/world/GIN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 11.17840187 ], [ -11.25, 16.63619188 ], [ -5.625, 16.63619188 ], [ -5.625, 11.17840187 ], [ -11.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 5.61598582 ], [ -11.25, 11.17840187 ], [ -5.625, 11.17840187 ], [ -5.625, 5.61598582 ], [ -11.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 11.17840187 ], [ -16.875, 16.63619188 ], [ -11.25, 16.63619188 ], [ -11.25, 11.17840187 ], [ -16.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 5.61598582 ], [ -16.875, 11.17840187 ], [ -11.25, 11.17840187 ], [ -11.25, 5.61598582 ], [ -16.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.439298, 7.686043 ], [ -8.722124, 7.711674 ], [ -8.926065, 7.309037 ], [ -9.208786, 7.313921 ], [ -9.403348, 7.526905 ], [ -9.33728, 7.928534 ], [ -9.755342, 8.541055 ], [ -10.016567, 8.428504 ], [ -10.230094, 8.406206 ], [ -10.505477, 8.348896 ], [ -10.494315, 8.715541 ], [ -10.65477, 8.977178 ], [ -10.622395, 9.26791 ], [ -10.839152, 9.688246 ], [ -11.117481, 10.045873 ], [ -11.917277, 10.046984 ], [ -12.150338, 9.858572 ], [ -12.425929, 9.835834 ], [ -12.596719, 9.620188 ], [ -12.711958, 9.342712 ], [ -13.24655, 8.903049 ], [ -13.685154, 9.494744 ], [ -14.074045, 9.886167 ], [ -14.330076, 10.01572 ], [ -14.579699, 10.214467 ], [ -14.693232, 10.656301 ], [ -14.839554, 10.876572 ], [ -15.130311, 11.040412 ], [ -14.685687, 11.527824 ], [ -14.382192, 11.509272 ], [ -14.121406, 11.677117 ], [ -13.9008, 11.678719 ], [ -13.743161, 11.811269 ], [ -13.828272, 12.142644 ], [ -13.718744, 12.247186 ], [ -13.700476, 12.586183 ], [ -13.217818, 12.575874 ], [ -12.499051, 12.33209 ], [ -12.278599, 12.35444 ], [ -12.203565, 12.465648 ], [ -11.658301, 12.386583 ], [ -11.513943, 12.442988 ], [ -11.456169, 12.076834 ], [ -11.297574, 12.077971 ], [ -11.036556, 12.211245 ], [ -10.87083, 12.177887 ], [ -10.593224, 11.923975 ], [ -10.165214, 11.844084 ], [ -9.890993, 12.060479 ], [ -9.567912, 12.194243 ], [ -9.327616, 12.334286 ], [ -9.127474, 12.30806 ], [ -8.905265, 12.088358 ], [ -8.786099, 11.812561 ], [ -8.376305, 11.393646 ], [ -8.581305, 11.136246 ], [ -8.620321, 10.810891 ], [ -8.407311, 10.909257 ], [ -8.282357, 10.792597 ], [ -8.335377, 10.494812 ], [ -8.029944, 10.206535 ], [ -8.229337, 10.12902 ], [ -8.309616, 9.789532 ], [ -8.079114, 9.376224 ], [ -7.8321, 8.575704 ], [ -8.203499, 8.455453 ], [ -8.299049, 8.316444 ], [ -8.221792, 8.123329 ], [ -8.280703, 7.68718 ], [ -8.439298, 7.686043 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GMB.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GMB","properties":{"name":"Gambia"},"geometry":{"type":"Polygon","coordinates":[[[-16.841525,13.151394],[-16.713729,13.594959],[-15.624596,13.623587],[-15.39877,13.860369],[-15.081735,13.876492],[-14.687031,13.630357],[-14.376714,13.62568],[-14.046992,13.794068],[-13.844963,13.505042],[-14.277702,13.280585],[-14.712197,13.298207],[-15.141163,13.509512],[-15.511813,13.27857],[-15.691001,13.270353],[-15.931296,13.130284],[-16.841525,13.151394]]]}} ]} ================================================ FILE: test/fixtures/world/GMB_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 11.17840187 ], [ -16.875, 16.63619188 ], [ -11.25, 16.63619188 ], [ -11.25, 11.17840187 ], [ -16.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.841525, 13.151394 ], [ -16.713729, 13.594959 ], [ -15.624596, 13.623587 ], [ -15.39877, 13.860369 ], [ -15.081735, 13.876492 ], [ -14.687031, 13.630357 ], [ -14.376714, 13.62568 ], [ -14.046992, 13.794068 ], [ -13.844963, 13.505042 ], [ -14.277702, 13.280585 ], [ -14.712197, 13.298207 ], [ -15.141163, 13.509512 ], [ -15.511813, 13.27857 ], [ -15.691001, 13.270353 ], [ -15.931296, 13.130284 ], [ -16.841525, 13.151394 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GNB.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GNB","properties":{"name":"Guinea Bissau"},"geometry":{"type":"Polygon","coordinates":[[[-15.130311,11.040412],[-15.66418,11.458474],[-16.085214,11.524594],[-16.314787,11.806515],[-16.308947,11.958702],[-16.613838,12.170911],[-16.677452,12.384852],[-16.147717,12.547762],[-15.816574,12.515567],[-15.548477,12.62817],[-13.700476,12.586183],[-13.718744,12.247186],[-13.828272,12.142644],[-13.743161,11.811269],[-13.9008,11.678719],[-14.121406,11.677117],[-14.382192,11.509272],[-14.685687,11.527824],[-15.130311,11.040412]]]}} ]} ================================================ FILE: test/fixtures/world/GNB_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 11.17840187 ], [ -16.875, 16.63619188 ], [ -11.25, 16.63619188 ], [ -11.25, 11.17840187 ], [ -16.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 5.61598582 ], [ -16.875, 11.17840187 ], [ -11.25, 11.17840187 ], [ -11.25, 5.61598582 ], [ -16.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.130311, 11.040412 ], [ -15.66418, 11.458474 ], [ -16.085214, 11.524594 ], [ -16.314787, 11.806515 ], [ -16.308947, 11.958702 ], [ -16.613838, 12.170911 ], [ -16.677452, 12.384852 ], [ -16.147717, 12.547762 ], [ -15.816574, 12.515567 ], [ -15.548477, 12.62817 ], [ -13.700476, 12.586183 ], [ -13.718744, 12.247186 ], [ -13.828272, 12.142644 ], [ -13.743161, 11.811269 ], [ -13.9008, 11.678719 ], [ -14.121406, 11.677117 ], [ -14.382192, 11.509272 ], [ -14.685687, 11.527824 ], [ -15.130311, 11.040412 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GNQ.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GNQ","properties":{"name":"Equatorial Guinea"},"geometry":{"type":"Polygon","coordinates":[[[9.492889,1.01012],[9.305613,1.160911],[9.649158,2.283866],[11.276449,2.261051],[11.285079,1.057662],[9.830284,1.067894],[9.492889,1.01012]]]}} ]} ================================================ FILE: test/fixtures/world/GNQ_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 0 ], [ 11.25, 5.61598582 ], [ 16.875, 5.61598582 ], [ 16.875, 0 ], [ 11.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 0 ], [ 5.625, 5.61598582 ], [ 11.25, 5.61598582 ], [ 11.25, 0 ], [ 5.625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492889, 1.01012 ], [ 9.305613, 1.160911 ], [ 9.649158, 2.283866 ], [ 11.276449, 2.261051 ], [ 11.285079, 1.057662 ], [ 9.830284, 1.067894 ], [ 9.492889, 1.01012 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GRC.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GRC","properties":{"name":"Greece"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.69998,35.705004],[24.246665,35.368022],[25.025015,35.424996],[25.769208,35.354018],[25.745023,35.179998],[26.290003,35.29999],[26.164998,35.004995],[24.724982,34.919988],[24.735007,35.084991],[23.514978,35.279992],[23.69998,35.705004]]],[[[26.604196,41.562115],[26.294602,40.936261],[26.056942,40.824123],[25.447677,40.852545],[24.925848,40.947062],[23.714811,40.687129],[24.407999,40.124993],[23.899968,39.962006],[23.342999,39.960998],[22.813988,40.476005],[22.626299,40.256561],[22.849748,39.659311],[23.350027,39.190011],[22.973099,38.970903],[23.530016,38.510001],[24.025025,38.219993],[24.040011,37.655015],[23.115003,37.920011],[23.409972,37.409991],[22.774972,37.30501],[23.154225,36.422506],[22.490028,36.41],[21.670026,36.844986],[21.295011,37.644989],[21.120034,38.310323],[20.730032,38.769985],[20.217712,39.340235],[20.150016,39.624998],[20.615,40.110007],[20.674997,40.435],[20.99999,40.580004],[21.02004,40.842727],[21.674161,40.931275],[22.055378,41.149866],[22.597308,41.130487],[22.76177,41.3048],[22.952377,41.337994],[23.692074,41.309081],[24.492645,41.583896],[25.197201,41.234486],[26.106138,41.328899],[26.117042,41.826905],[26.604196,41.562115]]]]}} ]} ================================================ FILE: test/fixtures/world/GRC_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 31.95216224 ], [ 16.875, 36.59788913 ], [ 22.5, 36.59788913 ], [ 22.5, 31.95216224 ], [ 16.875, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 36.59788913 ], [ 16.875, 40.97989807 ], [ 22.5, 40.97989807 ], [ 22.5, 36.59788913 ], [ 16.875, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 40.97989807 ], [ 16.875, 45.08903556 ], [ 22.5, 45.08903556 ], [ 22.5, 40.97989807 ], [ 16.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 31.95216224 ], [ 22.5, 36.59788913 ], [ 28.125, 36.59788913 ], [ 28.125, 31.95216224 ], [ 22.5, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 36.59788913 ], [ 22.5, 40.97989807 ], [ 28.125, 40.97989807 ], [ 28.125, 36.59788913 ], [ 22.5, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 40.97989807 ], [ 22.5, 45.08903556 ], [ 28.125, 45.08903556 ], [ 28.125, 40.97989807 ], [ 22.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.69998, 35.705004 ], [ 24.246665, 35.368022 ], [ 25.025015, 35.424996 ], [ 25.769208, 35.354018 ], [ 25.745023, 35.179998 ], [ 26.290003, 35.29999 ], [ 26.164998, 35.004995 ], [ 24.724982, 34.919988 ], [ 24.735007, 35.084991 ], [ 23.514978, 35.279992 ], [ 23.69998, 35.705004 ] ] ], [ [ [ 26.604196, 41.562115 ], [ 26.294602, 40.936261 ], [ 26.056942, 40.824123 ], [ 25.447677, 40.852545 ], [ 24.925848, 40.947062 ], [ 23.714811, 40.687129 ], [ 24.407999, 40.124993 ], [ 23.899968, 39.962006 ], [ 23.342999, 39.960998 ], [ 22.813988, 40.476005 ], [ 22.626299, 40.256561 ], [ 22.849748, 39.659311 ], [ 23.350027, 39.190011 ], [ 22.973099, 38.970903 ], [ 23.530016, 38.510001 ], [ 24.025025, 38.219993 ], [ 24.040011, 37.655015 ], [ 23.115003, 37.920011 ], [ 23.409972, 37.409991 ], [ 22.774972, 37.30501 ], [ 23.154225, 36.422506 ], [ 22.490028, 36.41 ], [ 21.670026, 36.844986 ], [ 21.295011, 37.644989 ], [ 21.120034, 38.310323 ], [ 20.730032, 38.769985 ], [ 20.217712, 39.340235 ], [ 20.150016, 39.624998 ], [ 20.615, 40.110007 ], [ 20.674997, 40.435 ], [ 20.99999, 40.580004 ], [ 21.02004, 40.842727 ], [ 21.674161, 40.931275 ], [ 22.055378, 41.149866 ], [ 22.597308, 41.130487 ], [ 22.76177, 41.3048 ], [ 22.952377, 41.337994 ], [ 23.692074, 41.309081 ], [ 24.492645, 41.583896 ], [ 25.197201, 41.234486 ], [ 26.106138, 41.328899 ], [ 26.117042, 41.826905 ], [ 26.604196, 41.562115 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GRL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GRL","properties":{"name":"Greenland"},"geometry":{"type":"Polygon","coordinates":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.406537],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]}} ]} ================================================ FILE: test/fixtures/world/GRL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 80.1787135 ], [ -16.875, 81.09321385 ], [ -11.25, 81.09321385 ], [ -11.25, 80.1787135 ], [ -16.875, 80.1787135 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 81.09321385 ], [ -16.875, 81.92318633 ], [ -11.25, 81.92318633 ], [ -11.25, 81.09321385 ], [ -16.875, 81.09321385 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 68.65655498 ], [ -22.5, 70.61261424 ], [ -16.875, 70.61261424 ], [ -16.875, 68.65655498 ], [ -22.5, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 70.61261424 ], [ -22.5, 72.39570571 ], [ -16.875, 72.39570571 ], [ -16.875, 70.61261424 ], [ -22.5, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 72.39570571 ], [ -22.5, 74.01954331 ], [ -16.875, 74.01954331 ], [ -16.875, 72.39570571 ], [ -22.5, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 74.01954331 ], [ -22.5, 75.49715732 ], [ -16.875, 75.49715732 ], [ -16.875, 74.01954331 ], [ -22.5, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 75.49715732 ], [ -22.5, 76.84081641 ], [ -16.875, 76.84081641 ], [ -16.875, 75.49715732 ], [ -22.5, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 76.84081641 ], [ -22.5, 78.06198919 ], [ -16.875, 78.06198919 ], [ -16.875, 76.84081641 ], [ -22.5, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 78.06198919 ], [ -22.5, 79.17133464 ], [ -16.875, 79.17133464 ], [ -16.875, 78.06198919 ], [ -22.5, 78.06198919 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 79.17133464 ], [ -22.5, 80.1787135 ], [ -16.875, 80.1787135 ], [ -16.875, 79.17133464 ], [ -22.5, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 80.1787135 ], [ -22.5, 81.09321385 ], [ -16.875, 81.09321385 ], [ -16.875, 80.1787135 ], [ -22.5, 80.1787135 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 81.09321385 ], [ -22.5, 81.92318633 ], [ -16.875, 81.92318633 ], [ -16.875, 81.09321385 ], [ -22.5, 81.09321385 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 81.92318633 ], [ -22.5, 82.67628498 ], [ -16.875, 82.67628498 ], [ -16.875, 81.92318633 ], [ -22.5, 81.92318633 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 82.67628498 ], [ -22.5, 83.35951133 ], [ -16.875, 83.35951133 ], [ -16.875, 82.67628498 ], [ -22.5, 82.67628498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.75, 82.67628498 ], [ -33.75, 83.9792595 ], [ -22.5, 83.9792595 ], [ -22.5, 82.67628498 ], [ -33.75, 82.67628498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -39.375, 64.1681069 ], [ -39.375, 66.51326044 ], [ -33.75, 66.51326044 ], [ -33.75, 64.1681069 ], [ -39.375, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -39.375, 82.67628498 ], [ -39.375, 83.35951133 ], [ -33.75, 83.35951133 ], [ -33.75, 82.67628498 ], [ -39.375, 82.67628498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -39.375, 83.35951133 ], [ -39.375, 83.9792595 ], [ -33.75, 83.9792595 ], [ -33.75, 83.35951133 ], [ -39.375, 83.35951133 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, 58.81374172 ], [ -45, 61.60639637 ], [ -39.375, 61.60639637 ], [ -39.375, 58.81374172 ], [ -45, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, 61.60639637 ], [ -45, 64.1681069 ], [ -39.375, 64.1681069 ], [ -39.375, 61.60639637 ], [ -45, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, 64.1681069 ], [ -45, 66.51326044 ], [ -39.375, 66.51326044 ], [ -39.375, 64.1681069 ], [ -45, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, 66.51326044 ], [ -45, 74.01954331 ], [ -22.5, 74.01954331 ], [ -22.5, 66.51326044 ], [ -45, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, 74.01954331 ], [ -45, 79.17133464 ], [ -22.5, 79.17133464 ], [ -22.5, 74.01954331 ], [ -45, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, 79.17133464 ], [ -45, 82.67628498 ], [ -22.5, 82.67628498 ], [ -22.5, 79.17133464 ], [ -45, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -45, 82.67628498 ], [ -45, 83.35951133 ], [ -39.375, 83.35951133 ], [ -39.375, 82.67628498 ], [ -45, 82.67628498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, 58.81374172 ], [ -50.625, 61.60639637 ], [ -45, 61.60639637 ], [ -45, 58.81374172 ], [ -50.625, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, 82.67628498 ], [ -50.625, 83.35951133 ], [ -45, 83.35951133 ], [ -45, 82.67628498 ], [ -50.625, 82.67628498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 61.60639637 ], [ -56.25, 66.51326044 ], [ -45, 66.51326044 ], [ -45, 61.60639637 ], [ -56.25, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 66.51326044 ], [ -56.25, 70.61261424 ], [ -45, 70.61261424 ], [ -45, 66.51326044 ], [ -56.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 70.61261424 ], [ -56.25, 74.01954331 ], [ -45, 74.01954331 ], [ -45, 70.61261424 ], [ -56.25, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 74.01954331 ], [ -56.25, 76.84081641 ], [ -45, 76.84081641 ], [ -45, 74.01954331 ], [ -56.25, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 76.84081641 ], [ -56.25, 79.17133464 ], [ -45, 79.17133464 ], [ -45, 76.84081641 ], [ -56.25, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 79.17133464 ], [ -56.25, 81.09321385 ], [ -45, 81.09321385 ], [ -45, 79.17133464 ], [ -56.25, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 81.09321385 ], [ -56.25, 82.67628498 ], [ -45, 82.67628498 ], [ -45, 81.09321385 ], [ -56.25, 81.09321385 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 72.39570571 ], [ -61.875, 74.01954331 ], [ -56.25, 74.01954331 ], [ -56.25, 72.39570571 ], [ -61.875, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 74.01954331 ], [ -61.875, 75.49715732 ], [ -56.25, 75.49715732 ], [ -56.25, 74.01954331 ], [ -61.875, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 75.49715732 ], [ -61.875, 76.84081641 ], [ -56.25, 76.84081641 ], [ -56.25, 75.49715732 ], [ -61.875, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 81.09321385 ], [ -61.875, 81.92318633 ], [ -56.25, 81.92318633 ], [ -56.25, 81.09321385 ], [ -61.875, 81.09321385 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 81.92318633 ], [ -61.875, 82.67628498 ], [ -56.25, 82.67628498 ], [ -56.25, 81.92318633 ], [ -61.875, 81.92318633 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 75.49715732 ], [ -67.5, 76.84081641 ], [ -61.875, 76.84081641 ], [ -61.875, 75.49715732 ], [ -67.5, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 76.84081641 ], [ -67.5, 79.17133464 ], [ -56.25, 79.17133464 ], [ -56.25, 76.84081641 ], [ -67.5, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 79.17133464 ], [ -67.5, 81.09321385 ], [ -56.25, 81.09321385 ], [ -56.25, 79.17133464 ], [ -67.5, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 81.09321385 ], [ -67.5, 81.92318633 ], [ -61.875, 81.92318633 ], [ -61.875, 81.09321385 ], [ -67.5, 81.09321385 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 75.49715732 ], [ -73.125, 76.84081641 ], [ -67.5, 76.84081641 ], [ -67.5, 75.49715732 ], [ -73.125, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 79.17133464 ], [ -73.125, 80.1787135 ], [ -67.5, 80.1787135 ], [ -67.5, 79.17133464 ], [ -73.125, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 80.1787135 ], [ -73.125, 81.09321385 ], [ -67.5, 81.09321385 ], [ -67.5, 80.1787135 ], [ -73.125, 80.1787135 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 76.84081641 ], [ -78.75, 79.17133464 ], [ -67.5, 79.17133464 ], [ -67.5, 76.84081641 ], [ -78.75, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.76379, 82.62796 ], [ -43.40644, 83.22516 ], [ -39.89753, 83.18018 ], [ -38.62214, 83.54905 ], [ -35.08787, 83.64513 ], [ -27.10046, 83.51966 ], [ -20.84539, 82.72669 ], [ -22.69182, 82.34165 ], [ -26.51753, 82.29765 ], [ -31.9, 82.2 ], [ -31.39646, 82.02154 ], [ -27.85666, 82.13178 ], [ -24.84448, 81.78697 ], [ -22.90328, 82.09317 ], [ -22.07175, 81.73449 ], [ -23.16961, 81.15271 ], [ -20.62363, 81.52462 ], [ -15.76818, 81.91245 ], [ -12.77018, 81.71885 ], [ -12.20855, 81.29154 ], [ -16.28533, 80.58004 ], [ -16.85, 80.35 ], [ -20.04624, 80.17708 ], [ -17.73035, 80.12912 ], [ -18.9, 79.4 ], [ -19.70499, 78.75128 ], [ -19.67353, 77.63859 ], [ -18.47285, 76.98565 ], [ -20.03503, 76.94434 ], [ -21.67944, 76.62795 ], [ -19.83407, 76.09808 ], [ -19.59896, 75.24838 ], [ -20.66818, 75.15585 ], [ -19.37281, 74.29561 ], [ -21.59422, 74.22382 ], [ -20.43454, 73.81713 ], [ -20.76234, 73.46436 ], [ -22.17221, 73.30955 ], [ -23.56593, 73.30663 ], [ -22.31311, 72.62928 ], [ -22.29954, 72.18409 ], [ -24.27834, 72.59788 ], [ -24.79296, 72.3302 ], [ -23.44296, 72.08016 ], [ -22.13281, 71.46898 ], [ -21.75356, 70.66369 ], [ -23.53603, 70.471 ], [ -24.30702, 70.85649 ], [ -25.54341, 71.43094 ], [ -25.20135, 70.75226 ], [ -26.36276, 70.22646 ], [ -23.72742, 70.18401 ], [ -22.34902, 70.12946 ], [ -25.02927, 69.2588 ], [ -27.74737, 68.47046 ], [ -30.67371, 68.12503 ], [ -31.77665, 68.12078 ], [ -32.81105, 67.73547 ], [ -34.20196, 66.67974 ], [ -36.35284, 65.9789 ], [ -37.04378, 65.93768 ], [ -38.37505, 65.69213 ], [ -39.81222, 65.45848 ], [ -40.66899, 64.83997 ], [ -40.68281, 64.13902 ], [ -41.1887, 63.48246 ], [ -42.81938, 62.68233 ], [ -42.41666, 61.90093 ], [ -42.86619, 61.07404 ], [ -43.3784, 60.09772 ], [ -44.7875, 60.03676 ], [ -46.26364, 60.85328 ], [ -48.26294, 60.85843 ], [ -49.23308, 61.40681 ], [ -49.90039, 62.38336 ], [ -51.63325, 63.62691 ], [ -52.14014, 64.27842 ], [ -52.27659, 65.1767 ], [ -53.66166, 66.09957 ], [ -53.30161, 66.8365 ], [ -53.96911, 67.18899 ], [ -52.9804, 68.35759 ], [ -51.47536, 68.72958 ], [ -51.08041, 69.14781 ], [ -50.87122, 69.9291 ], [ -52.013585, 69.574925 ], [ -52.55792, 69.42616 ], [ -53.45629, 69.283625 ], [ -54.68336, 69.61003 ], [ -54.75001, 70.28932 ], [ -54.35884, 70.821315 ], [ -53.431315, 70.835755 ], [ -51.39014, 70.56978 ], [ -53.10937, 71.20485 ], [ -54.00422, 71.54719 ], [ -55, 71.406537 ], [ -55.83468, 71.65444 ], [ -54.71819, 72.58625 ], [ -55.32634, 72.95861 ], [ -56.12003, 73.64977 ], [ -57.32363, 74.71026 ], [ -58.59679, 75.09861 ], [ -58.58516, 75.51727 ], [ -61.26861, 76.10238 ], [ -63.39165, 76.1752 ], [ -66.06427, 76.13486 ], [ -68.50438, 76.06141 ], [ -69.66485, 76.37975 ], [ -71.40257, 77.00857 ], [ -68.77671, 77.32312 ], [ -66.76397, 77.37595 ], [ -71.04293, 77.63595 ], [ -73.297, 78.04419 ], [ -73.15938, 78.43271 ], [ -69.37345, 78.91388 ], [ -65.7107, 79.39436 ], [ -65.3239, 79.75814 ], [ -68.02298, 80.11721 ], [ -67.15129, 80.51582 ], [ -63.68925, 81.21396 ], [ -62.23444, 81.3211 ], [ -62.65116, 81.77042 ], [ -60.28249, 82.03363 ], [ -57.20744, 82.19074 ], [ -54.13442, 82.19962 ], [ -53.04328, 81.88833 ], [ -50.39061, 82.43883 ], [ -48.00386, 82.06481 ], [ -46.59984, 81.985945 ], [ -44.523, 81.6607 ], [ -46.9007, 82.19979 ], [ -46.76379, 82.62796 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GTM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GTM","properties":{"name":"Guatemala"},"geometry":{"type":"Polygon","coordinates":[[[-90.095555,13.735338],[-90.608624,13.909771],[-91.23241,13.927832],[-91.689747,14.126218],[-92.22775,14.538829],[-92.20323,14.830103],[-92.087216,15.064585],[-92.229249,15.251447],[-91.74796,16.066565],[-90.464473,16.069562],[-90.438867,16.41011],[-90.600847,16.470778],[-90.711822,16.687483],[-91.08167,16.918477],[-91.453921,17.252177],[-91.002269,17.254658],[-91.00152,17.817595],[-90.067934,17.819326],[-89.14308,17.808319],[-89.150806,17.015577],[-89.229122,15.886938],[-88.930613,15.887273],[-88.604586,15.70638],[-88.518364,15.855389],[-88.225023,15.727722],[-88.68068,15.346247],[-89.154811,15.066419],[-89.22522,14.874286],[-89.145535,14.678019],[-89.353326,14.424133],[-89.587343,14.362586],[-89.534219,14.244816],[-89.721934,14.134228],[-90.064678,13.88197],[-90.095555,13.735338]]]}} ]} ================================================ FILE: test/fixtures/world/GTM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 11.17840187 ], [ -90, 16.63619188 ], [ -84.375, 16.63619188 ], [ -84.375, 11.17840187 ], [ -90, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 16.63619188 ], [ -90, 21.94304553 ], [ -84.375, 21.94304553 ], [ -84.375, 16.63619188 ], [ -90, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 11.17840187 ], [ -95.625, 16.63619188 ], [ -90, 16.63619188 ], [ -90, 11.17840187 ], [ -95.625, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 16.63619188 ], [ -95.625, 21.94304553 ], [ -90, 21.94304553 ], [ -90, 16.63619188 ], [ -95.625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.095555, 13.735338 ], [ -90.608624, 13.909771 ], [ -91.23241, 13.927832 ], [ -91.689747, 14.126218 ], [ -92.22775, 14.538829 ], [ -92.20323, 14.830103 ], [ -92.087216, 15.064585 ], [ -92.229249, 15.251447 ], [ -91.74796, 16.066565 ], [ -90.464473, 16.069562 ], [ -90.438867, 16.41011 ], [ -90.600847, 16.470778 ], [ -90.711822, 16.687483 ], [ -91.08167, 16.918477 ], [ -91.453921, 17.252177 ], [ -91.002269, 17.254658 ], [ -91.00152, 17.817595 ], [ -90.067934, 17.819326 ], [ -89.14308, 17.808319 ], [ -89.150806, 17.015577 ], [ -89.229122, 15.886938 ], [ -88.930613, 15.887273 ], [ -88.604586, 15.70638 ], [ -88.518364, 15.855389 ], [ -88.225023, 15.727722 ], [ -88.68068, 15.346247 ], [ -89.154811, 15.066419 ], [ -89.22522, 14.874286 ], [ -89.145535, 14.678019 ], [ -89.353326, 14.424133 ], [ -89.587343, 14.362586 ], [ -89.534219, 14.244816 ], [ -89.721934, 14.134228 ], [ -90.064678, 13.88197 ], [ -90.095555, 13.735338 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GUF.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GUF","properties":{"name":"French Guiana"},"geometry":{"type":"Polygon","coordinates":[[[-52.556425,2.504705],[-52.939657,2.124858],[-53.418465,2.053389],[-53.554839,2.334897],[-53.778521,2.376703],[-54.088063,2.105557],[-54.524754,2.311849],[-54.27123,2.738748],[-54.184284,3.194172],[-54.011504,3.62257],[-54.399542,4.212611],[-54.478633,4.896756],[-53.958045,5.756548],[-53.618453,5.646529],[-52.882141,5.409851],[-51.823343,4.565768],[-51.657797,4.156232],[-52.249338,3.241094],[-52.556425,2.504705]]]}} ]} ================================================ FILE: test/fixtures/world/GUF_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 0 ], [ -56.25, 5.61598582 ], [ -50.625, 5.61598582 ], [ -50.625, 0 ], [ -56.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 5.61598582 ], [ -56.25, 11.17840187 ], [ -50.625, 11.17840187 ], [ -50.625, 5.61598582 ], [ -56.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.556425, 2.504705 ], [ -52.939657, 2.124858 ], [ -53.418465, 2.053389 ], [ -53.554839, 2.334897 ], [ -53.778521, 2.376703 ], [ -54.088063, 2.105557 ], [ -54.524754, 2.311849 ], [ -54.27123, 2.738748 ], [ -54.184284, 3.194172 ], [ -54.011504, 3.62257 ], [ -54.399542, 4.212611 ], [ -54.478633, 4.896756 ], [ -53.958045, 5.756548 ], [ -53.618453, 5.646529 ], [ -52.882141, 5.409851 ], [ -51.823343, 4.565768 ], [ -51.657797, 4.156232 ], [ -52.249338, 3.241094 ], [ -52.556425, 2.504705 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/GUY.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"GUY","properties":{"name":"Guyana"},"geometry":{"type":"Polygon","coordinates":[[[-59.758285,8.367035],[-59.101684,7.999202],[-58.482962,7.347691],[-58.454876,6.832787],[-58.078103,6.809094],[-57.542219,6.321268],[-57.147436,5.97315],[-57.307246,5.073567],[-57.914289,4.812626],[-57.86021,4.576801],[-58.044694,4.060864],[-57.601569,3.334655],[-57.281433,3.333492],[-57.150098,2.768927],[-56.539386,1.899523],[-56.782704,1.863711],[-57.335823,1.948538],[-57.660971,1.682585],[-58.11345,1.507195],[-58.429477,1.463942],[-58.540013,1.268088],[-59.030862,1.317698],[-59.646044,1.786894],[-59.718546,2.24963],[-59.974525,2.755233],[-59.815413,3.606499],[-59.53804,3.958803],[-59.767406,4.423503],[-60.111002,4.574967],[-59.980959,5.014061],[-60.213683,5.244486],[-60.733574,5.200277],[-61.410303,5.959068],[-61.139415,6.234297],[-61.159336,6.696077],[-60.543999,6.856584],[-60.295668,7.043911],[-60.637973,7.415],[-60.550588,7.779603],[-59.758285,8.367035]]]}} ]} ================================================ FILE: test/fixtures/world/GUY_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 0 ], [ -61.875, 5.61598582 ], [ -56.25, 5.61598582 ], [ -56.25, 0 ], [ -61.875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 5.61598582 ], [ -61.875, 11.17840187 ], [ -56.25, 11.17840187 ], [ -56.25, 5.61598582 ], [ -61.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.758285, 8.367035 ], [ -59.101684, 7.999202 ], [ -58.482962, 7.347691 ], [ -58.454876, 6.832787 ], [ -58.078103, 6.809094 ], [ -57.542219, 6.321268 ], [ -57.147436, 5.97315 ], [ -57.307246, 5.073567 ], [ -57.914289, 4.812626 ], [ -57.86021, 4.576801 ], [ -58.044694, 4.060864 ], [ -57.601569, 3.334655 ], [ -57.281433, 3.333492 ], [ -57.150098, 2.768927 ], [ -56.539386, 1.899523 ], [ -56.782704, 1.863711 ], [ -57.335823, 1.948538 ], [ -57.660971, 1.682585 ], [ -58.11345, 1.507195 ], [ -58.429477, 1.463942 ], [ -58.540013, 1.268088 ], [ -59.030862, 1.317698 ], [ -59.646044, 1.786894 ], [ -59.718546, 2.24963 ], [ -59.974525, 2.755233 ], [ -59.815413, 3.606499 ], [ -59.53804, 3.958803 ], [ -59.767406, 4.423503 ], [ -60.111002, 4.574967 ], [ -59.980959, 5.014061 ], [ -60.213683, 5.244486 ], [ -60.733574, 5.200277 ], [ -61.410303, 5.959068 ], [ -61.139415, 6.234297 ], [ -61.159336, 6.696077 ], [ -60.543999, 6.856584 ], [ -60.295668, 7.043911 ], [ -60.637973, 7.415 ], [ -60.550588, 7.779603 ], [ -59.758285, 8.367035 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/HND.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"HND","properties":{"name":"Honduras"},"geometry":{"type":"Polygon","coordinates":[[[-87.316654,12.984686],[-87.489409,13.297535],[-87.793111,13.38448],[-87.723503,13.78505],[-87.859515,13.893312],[-88.065343,13.964626],[-88.503998,13.845486],[-88.541231,13.980155],[-88.843073,14.140507],[-89.058512,14.340029],[-89.353326,14.424133],[-89.145535,14.678019],[-89.22522,14.874286],[-89.154811,15.066419],[-88.68068,15.346247],[-88.225023,15.727722],[-88.121153,15.688655],[-87.901813,15.864458],[-87.61568,15.878799],[-87.522921,15.797279],[-87.367762,15.84694],[-86.903191,15.756713],[-86.440946,15.782835],[-86.119234,15.893449],[-86.001954,16.005406],[-85.683317,15.953652],[-85.444004,15.885749],[-85.182444,15.909158],[-84.983722,15.995923],[-84.52698,15.857224],[-84.368256,15.835158],[-84.063055,15.648244],[-83.773977,15.424072],[-83.410381,15.270903],[-83.147219,14.995829],[-83.489989,15.016267],[-83.628585,14.880074],[-83.975721,14.749436],[-84.228342,14.748764],[-84.449336,14.621614],[-84.649582,14.666805],[-84.820037,14.819587],[-84.924501,14.790493],[-85.052787,14.551541],[-85.148751,14.560197],[-85.165365,14.35437],[-85.514413,14.079012],[-85.698665,13.960078],[-85.801295,13.836055],[-86.096264,14.038187],[-86.312142,13.771356],[-86.520708,13.778487],[-86.755087,13.754845],[-86.733822,13.263093],[-86.880557,13.254204],[-87.005769,13.025794],[-87.316654,12.984686]]]}} ]} ================================================ FILE: test/fixtures/world/HND_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 11.17840187 ], [ -84.375, 16.63619188 ], [ -78.75, 16.63619188 ], [ -78.75, 11.17840187 ], [ -84.375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 11.17840187 ], [ -90, 16.63619188 ], [ -84.375, 16.63619188 ], [ -84.375, 11.17840187 ], [ -90, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.316654, 12.984686 ], [ -87.489409, 13.297535 ], [ -87.793111, 13.38448 ], [ -87.723503, 13.78505 ], [ -87.859515, 13.893312 ], [ -88.065343, 13.964626 ], [ -88.503998, 13.845486 ], [ -88.541231, 13.980155 ], [ -88.843073, 14.140507 ], [ -89.058512, 14.340029 ], [ -89.353326, 14.424133 ], [ -89.145535, 14.678019 ], [ -89.22522, 14.874286 ], [ -89.154811, 15.066419 ], [ -88.68068, 15.346247 ], [ -88.225023, 15.727722 ], [ -88.121153, 15.688655 ], [ -87.901813, 15.864458 ], [ -87.61568, 15.878799 ], [ -87.522921, 15.797279 ], [ -87.367762, 15.84694 ], [ -86.903191, 15.756713 ], [ -86.440946, 15.782835 ], [ -86.119234, 15.893449 ], [ -86.001954, 16.005406 ], [ -85.683317, 15.953652 ], [ -85.444004, 15.885749 ], [ -85.182444, 15.909158 ], [ -84.983722, 15.995923 ], [ -84.52698, 15.857224 ], [ -84.368256, 15.835158 ], [ -84.063055, 15.648244 ], [ -83.773977, 15.424072 ], [ -83.410381, 15.270903 ], [ -83.147219, 14.995829 ], [ -83.489989, 15.016267 ], [ -83.628585, 14.880074 ], [ -83.975721, 14.749436 ], [ -84.228342, 14.748764 ], [ -84.449336, 14.621614 ], [ -84.649582, 14.666805 ], [ -84.820037, 14.819587 ], [ -84.924501, 14.790493 ], [ -85.052787, 14.551541 ], [ -85.148751, 14.560197 ], [ -85.165365, 14.35437 ], [ -85.514413, 14.079012 ], [ -85.698665, 13.960078 ], [ -85.801295, 13.836055 ], [ -86.096264, 14.038187 ], [ -86.312142, 13.771356 ], [ -86.520708, 13.778487 ], [ -86.755087, 13.754845 ], [ -86.733822, 13.263093 ], [ -86.880557, 13.254204 ], [ -87.005769, 13.025794 ], [ -87.316654, 12.984686 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/HRV.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"HRV","properties":{"name":"Croatia"},"geometry":{"type":"Polygon","coordinates":[[[18.829838,45.908878],[19.072769,45.521511],[19.390476,45.236516],[19.005486,44.860234],[18.553214,45.08159],[17.861783,45.06774],[17.002146,45.233777],[16.534939,45.211608],[16.318157,45.004127],[15.959367,45.233777],[15.750026,44.818712],[16.23966,44.351143],[16.456443,44.04124],[16.916156,43.667722],[17.297373,43.446341],[17.674922,43.028563],[18.56,42.65],[18.450016,42.479991],[17.50997,42.849995],[16.930006,43.209998],[16.015385,43.507215],[15.174454,44.243191],[15.37625,44.317915],[14.920309,44.738484],[14.901602,45.07606],[14.258748,45.233777],[13.952255,44.802124],[13.656976,45.136935],[13.679403,45.484149],[13.71506,45.500324],[14.411968,45.466166],[14.595109,45.634941],[14.935244,45.471695],[15.327675,45.452316],[15.323954,45.731783],[15.67153,45.834154],[15.768733,46.238108],[16.564808,46.503751],[16.882515,46.380632],[17.630066,45.951769],[18.456062,45.759481],[18.829838,45.908878]]]}} ]} ================================================ FILE: test/fixtures/world/HRV_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 40.97989807 ], [ 11.25, 48.92249926 ], [ 22.5, 48.92249926 ], [ 22.5, 40.97989807 ], [ 11.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.829838, 45.908878 ], [ 19.072769, 45.521511 ], [ 19.390476, 45.236516 ], [ 19.005486, 44.860234 ], [ 18.553214, 45.08159 ], [ 17.861783, 45.06774 ], [ 17.002146, 45.233777 ], [ 16.534939, 45.211608 ], [ 16.318157, 45.004127 ], [ 15.959367, 45.233777 ], [ 15.750026, 44.818712 ], [ 16.23966, 44.351143 ], [ 16.456443, 44.04124 ], [ 16.916156, 43.667722 ], [ 17.297373, 43.446341 ], [ 17.674922, 43.028563 ], [ 18.56, 42.65 ], [ 18.450016, 42.479991 ], [ 17.50997, 42.849995 ], [ 16.930006, 43.209998 ], [ 16.015385, 43.507215 ], [ 15.174454, 44.243191 ], [ 15.37625, 44.317915 ], [ 14.920309, 44.738484 ], [ 14.901602, 45.07606 ], [ 14.258748, 45.233777 ], [ 13.952255, 44.802124 ], [ 13.656976, 45.136935 ], [ 13.679403, 45.484149 ], [ 13.71506, 45.500324 ], [ 14.411968, 45.466166 ], [ 14.595109, 45.634941 ], [ 14.935244, 45.471695 ], [ 15.327675, 45.452316 ], [ 15.323954, 45.731783 ], [ 15.67153, 45.834154 ], [ 15.768733, 46.238108 ], [ 16.564808, 46.503751 ], [ 16.882515, 46.380632 ], [ 17.630066, 45.951769 ], [ 18.456062, 45.759481 ], [ 18.829838, 45.908878 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/HTI.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"HTI","properties":{"name":"Haiti"},"geometry":{"type":"Polygon","coordinates":[[[-73.189791,19.915684],[-72.579673,19.871501],[-71.712361,19.714456],[-71.624873,19.169838],[-71.701303,18.785417],[-71.945112,18.6169],[-71.687738,18.31666],[-71.708305,18.044997],[-72.372476,18.214961],[-72.844411,18.145611],[-73.454555,18.217906],[-73.922433,18.030993],[-74.458034,18.34255],[-74.369925,18.664908],[-73.449542,18.526053],[-72.694937,18.445799],[-72.334882,18.668422],[-72.79165,19.101625],[-72.784105,19.483591],[-73.415022,19.639551],[-73.189791,19.915684]]]}} ]} ================================================ FILE: test/fixtures/world/HTI_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 16.63619188 ], [ -73.125, 21.94304553 ], [ -67.5, 21.94304553 ], [ -67.5, 16.63619188 ], [ -73.125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 16.63619188 ], [ -78.75, 21.94304553 ], [ -73.125, 21.94304553 ], [ -73.125, 16.63619188 ], [ -78.75, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.189791, 19.915684 ], [ -72.579673, 19.871501 ], [ -71.712361, 19.714456 ], [ -71.624873, 19.169838 ], [ -71.701303, 18.785417 ], [ -71.945112, 18.6169 ], [ -71.687738, 18.31666 ], [ -71.708305, 18.044997 ], [ -72.372476, 18.214961 ], [ -72.844411, 18.145611 ], [ -73.454555, 18.217906 ], [ -73.922433, 18.030993 ], [ -74.458034, 18.34255 ], [ -74.369925, 18.664908 ], [ -73.449542, 18.526053 ], [ -72.694937, 18.445799 ], [ -72.334882, 18.668422 ], [ -72.79165, 19.101625 ], [ -72.784105, 19.483591 ], [ -73.415022, 19.639551 ], [ -73.189791, 19.915684 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/HUN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"HUN","properties":{"name":"Hungary"},"geometry":{"type":"Polygon","coordinates":[[[16.202298,46.852386],[16.534268,47.496171],[16.340584,47.712902],[16.903754,47.714866],[16.979667,48.123497],[17.488473,47.867466],[17.857133,47.758429],[18.696513,47.880954],[18.777025,48.081768],[19.174365,48.111379],[19.661364,48.266615],[19.769471,48.202691],[20.239054,48.327567],[20.473562,48.56285],[20.801294,48.623854],[21.872236,48.319971],[22.085608,48.422264],[22.64082,48.15024],[22.710531,47.882194],[22.099768,47.672439],[21.626515,46.994238],[21.021952,46.316088],[20.220192,46.127469],[19.596045,46.17173],[18.829838,45.908878],[18.456062,45.759481],[17.630066,45.951769],[16.882515,46.380632],[16.564808,46.503751],[16.370505,46.841327],[16.202298,46.852386]]]}} ]} ================================================ FILE: test/fixtures/world/HUN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 45.08903556 ], [ 11.25, 48.92249926 ], [ 16.875, 48.92249926 ], [ 16.875, 45.08903556 ], [ 11.25, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 45.08903556 ], [ 16.875, 48.92249926 ], [ 22.5, 48.92249926 ], [ 22.5, 45.08903556 ], [ 16.875, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 45.08903556 ], [ 22.5, 48.92249926 ], [ 28.125, 48.92249926 ], [ 28.125, 45.08903556 ], [ 22.5, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202298, 46.852386 ], [ 16.534268, 47.496171 ], [ 16.340584, 47.712902 ], [ 16.903754, 47.714866 ], [ 16.979667, 48.123497 ], [ 17.488473, 47.867466 ], [ 17.857133, 47.758429 ], [ 18.696513, 47.880954 ], [ 18.777025, 48.081768 ], [ 19.174365, 48.111379 ], [ 19.661364, 48.266615 ], [ 19.769471, 48.202691 ], [ 20.239054, 48.327567 ], [ 20.473562, 48.56285 ], [ 20.801294, 48.623854 ], [ 21.872236, 48.319971 ], [ 22.085608, 48.422264 ], [ 22.64082, 48.15024 ], [ 22.710531, 47.882194 ], [ 22.099768, 47.672439 ], [ 21.626515, 46.994238 ], [ 21.021952, 46.316088 ], [ 20.220192, 46.127469 ], [ 19.596045, 46.17173 ], [ 18.829838, 45.908878 ], [ 18.456062, 45.759481 ], [ 17.630066, 45.951769 ], [ 16.882515, 46.380632 ], [ 16.564808, 46.503751 ], [ 16.370505, 46.841327 ], [ 16.202298, 46.852386 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/IDN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"IDN","properties":{"name":"Indonesia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.715609,-10.239581],[120.295014,-10.25865],[118.967808,-9.557969],[119.90031,-9.36134],[120.425756,-9.665921],[120.775502,-9.969675],[120.715609,-10.239581]]],[[[124.43595,-10.140001],[123.579982,-10.359987],[123.459989,-10.239995],[123.550009,-9.900016],[123.980009,-9.290027],[124.968682,-8.89279],[125.07002,-9.089987],[125.08852,-9.393173],[124.43595,-10.140001]]],[[[117.900018,-8.095681],[118.260616,-8.362383],[118.87846,-8.280683],[119.126507,-8.705825],[117.970402,-8.906639],[117.277731,-9.040895],[116.740141,-9.032937],[117.083737,-8.457158],[117.632024,-8.449303],[117.900018,-8.095681]]],[[[122.903537,-8.094234],[122.756983,-8.649808],[121.254491,-8.933666],[119.924391,-8.810418],[119.920929,-8.444859],[120.715092,-8.236965],[121.341669,-8.53674],[122.007365,-8.46062],[122.903537,-8.094234]]],[[[108.623479,-6.777674],[110.539227,-6.877358],[110.759576,-6.465186],[112.614811,-6.946036],[112.978768,-7.594213],[114.478935,-7.776528],[115.705527,-8.370807],[114.564511,-8.751817],[113.464734,-8.348947],[112.559672,-8.376181],[111.522061,-8.302129],[110.58615,-8.122605],[109.427667,-7.740664],[108.693655,-7.6416],[108.277763,-7.766657],[106.454102,-7.3549],[106.280624,-6.9249],[105.365486,-6.851416],[106.051646,-5.895919],[107.265009,-5.954985],[108.072091,-6.345762],[108.486846,-6.421985],[108.623479,-6.777674]]],[[[134.724624,-6.214401],[134.210134,-6.895238],[134.112776,-6.142467],[134.290336,-5.783058],[134.499625,-5.445042],[134.727002,-5.737582],[134.724624,-6.214401]]],[[[127.249215,-3.459065],[126.874923,-3.790983],[126.183802,-3.607376],[125.989034,-3.177273],[127.000651,-3.129318],[127.249215,-3.459065]]],[[[130.471344,-3.093764],[130.834836,-3.858472],[129.990547,-3.446301],[129.155249,-3.362637],[128.590684,-3.428679],[127.898891,-3.393436],[128.135879,-2.84365],[129.370998,-2.802154],[130.471344,-3.093764]]],[[[134.143368,-1.151867],[134.422627,-2.769185],[135.457603,-3.367753],[136.293314,-2.307042],[137.440738,-1.703513],[138.329727,-1.702686],[139.184921,-2.051296],[139.926684,-2.409052],[141.00021,-2.600151],[141.017057,-5.859022],[141.033852,-9.117893],[140.143415,-8.297168],[139.127767,-8.096043],[138.881477,-8.380935],[137.614474,-8.411683],[138.039099,-7.597882],[138.668621,-7.320225],[138.407914,-6.232849],[137.92784,-5.393366],[135.98925,-4.546544],[135.164598,-4.462931],[133.66288,-3.538853],[133.367705,-4.024819],[132.983956,-4.112979],[132.756941,-3.746283],[132.753789,-3.311787],[131.989804,-2.820551],[133.066845,-2.460418],[133.780031,-2.479848],[133.696212,-2.214542],[132.232373,-2.212526],[131.836222,-1.617162],[130.94284,-1.432522],[130.519558,-0.93772],[131.867538,-0.695461],[132.380116,-0.369538],[133.985548,-0.78021],[134.143368,-1.151867]]],[[[125.240501,1.419836],[124.437035,0.427881],[123.685505,0.235593],[122.723083,0.431137],[121.056725,0.381217],[120.183083,0.237247],[120.04087,-0.519658],[120.935905,-1.408906],[121.475821,-0.955962],[123.340565,-0.615673],[123.258399,-1.076213],[122.822715,-0.930951],[122.38853,-1.516858],[121.508274,-1.904483],[122.454572,-3.186058],[122.271896,-3.5295],[123.170963,-4.683693],[123.162333,-5.340604],[122.628515,-5.634591],[122.236394,-5.282933],[122.719569,-4.464172],[121.738234,-4.851331],[121.489463,-4.574553],[121.619171,-4.188478],[120.898182,-3.602105],[120.972389,-2.627643],[120.305453,-2.931604],[120.390047,-4.097579],[120.430717,-5.528241],[119.796543,-5.6734],[119.366906,-5.379878],[119.653606,-4.459417],[119.498835,-3.494412],[119.078344,-3.487022],[118.767769,-2.801999],[119.180974,-2.147104],[119.323394,-1.353147],[119.825999,0.154254],[120.035702,0.566477],[120.885779,1.309223],[121.666817,1.013944],[122.927567,0.875192],[124.077522,0.917102],[125.065989,1.643259],[125.240501,1.419836]]],[[[128.688249,1.132386],[128.635952,0.258486],[128.12017,0.356413],[127.968034,-0.252077],[128.379999,-0.780004],[128.100016,-0.899996],[127.696475,-0.266598],[127.39949,1.011722],[127.600512,1.810691],[127.932378,2.174596],[128.004156,1.628531],[128.594559,1.540811],[128.688249,1.132386]]],[[[117.875627,1.827641],[118.996747,0.902219],[117.811858,0.784242],[117.478339,0.102475],[117.521644,-0.803723],[116.560048,-1.487661],[116.533797,-2.483517],[116.148084,-4.012726],[116.000858,-3.657037],[114.864803,-4.106984],[114.468652,-3.495704],[113.755672,-3.43917],[113.256994,-3.118776],[112.068126,-3.478392],[111.703291,-2.994442],[111.04824,-3.049426],[110.223846,-2.934032],[110.070936,-1.592874],[109.571948,-1.314907],[109.091874,-0.459507],[108.952658,0.415375],[109.069136,1.341934],[109.66326,2.006467],[109.830227,1.338136],[110.514061,0.773131],[111.159138,0.976478],[111.797548,0.904441],[112.380252,1.410121],[112.859809,1.49779],[113.80585,1.217549],[114.621355,1.430688],[115.134037,2.821482],[115.519078,3.169238],[115.865517,4.306559],[117.015214,4.306094],[117.882035,4.137551],[117.313232,3.234428],[118.04833,2.28769],[117.875627,1.827641]]],[[[105.817655,-5.852356],[104.710384,-5.873285],[103.868213,-5.037315],[102.584261,-4.220259],[102.156173,-3.614146],[101.399113,-2.799777],[100.902503,-2.050262],[100.141981,-0.650348],[99.26374,0.183142],[98.970011,1.042882],[98.601351,1.823507],[97.699598,2.453184],[97.176942,3.308791],[96.424017,3.86886],[95.380876,4.970782],[95.293026,5.479821],[95.936863,5.439513],[97.484882,5.246321],[98.369169,4.26837],[99.142559,3.59035],[99.693998,3.174329],[100.641434,2.099381],[101.658012,2.083697],[102.498271,1.3987],[103.07684,0.561361],[103.838396,0.104542],[103.437645,-0.711946],[104.010789,-1.059212],[104.369991,-1.084843],[104.53949,-1.782372],[104.887893,-2.340425],[105.622111,-2.428844],[106.108593,-3.061777],[105.857446,-4.305525],[105.817655,-5.852356]]]]}} ]} ================================================ FILE: test/fixtures/world/IDN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, -11.17840187 ], [ 101.25, 0 ], [ 112.5, 0 ], [ 112.5, -11.17840187 ], [ 101.25, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 0 ], [ 101.25, 5.61598582 ], [ 106.875, 5.61598582 ], [ 106.875, 0 ], [ 101.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 0 ], [ 106.875, 5.61598582 ], [ 112.5, 5.61598582 ], [ 112.5, 0 ], [ 106.875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, -11.17840187 ], [ 112.5, 0 ], [ 123.75, 0 ], [ 123.75, -11.17840187 ], [ 112.5, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 0 ], [ 112.5, 5.61598582 ], [ 118.125, 5.61598582 ], [ 118.125, 0 ], [ 112.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 0 ], [ 118.125, 5.61598582 ], [ 123.75, 5.61598582 ], [ 123.75, 0 ], [ 118.125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, -11.17840187 ], [ 123.75, 0 ], [ 135, 0 ], [ 135, -11.17840187 ], [ 123.75, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 0 ], [ 123.75, 5.61598582 ], [ 129.375, 5.61598582 ], [ 129.375, 0 ], [ 123.75, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, -11.17840187 ], [ 135, 0 ], [ 146.25, 0 ], [ 146.25, -11.17840187 ], [ 135, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 0 ], [ 90, 5.61598582 ], [ 95.625, 5.61598582 ], [ 95.625, 0 ], [ 90, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, -5.61598582 ], [ 95.625, 0 ], [ 101.25, 0 ], [ 101.25, -5.61598582 ], [ 95.625, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 0 ], [ 95.625, 5.61598582 ], [ 101.25, 5.61598582 ], [ 101.25, 0 ], [ 95.625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.715609, -10.239581 ], [ 120.295014, -10.25865 ], [ 118.967808, -9.557969 ], [ 119.90031, -9.36134 ], [ 120.425756, -9.665921 ], [ 120.775502, -9.969675 ], [ 120.715609, -10.239581 ] ] ], [ [ [ 124.43595, -10.140001 ], [ 123.579982, -10.359987 ], [ 123.459989, -10.239995 ], [ 123.550009, -9.900016 ], [ 123.980009, -9.290027 ], [ 124.968682, -8.89279 ], [ 125.07002, -9.089987 ], [ 125.08852, -9.393173 ], [ 124.43595, -10.140001 ] ] ], [ [ [ 117.900018, -8.095681 ], [ 118.260616, -8.362383 ], [ 118.87846, -8.280683 ], [ 119.126507, -8.705825 ], [ 117.970402, -8.906639 ], [ 117.277731, -9.040895 ], [ 116.740141, -9.032937 ], [ 117.083737, -8.457158 ], [ 117.632024, -8.449303 ], [ 117.900018, -8.095681 ] ] ], [ [ [ 122.903537, -8.094234 ], [ 122.756983, -8.649808 ], [ 121.254491, -8.933666 ], [ 119.924391, -8.810418 ], [ 119.920929, -8.444859 ], [ 120.715092, -8.236965 ], [ 121.341669, -8.53674 ], [ 122.007365, -8.46062 ], [ 122.903537, -8.094234 ] ] ], [ [ [ 108.623479, -6.777674 ], [ 110.539227, -6.877358 ], [ 110.759576, -6.465186 ], [ 112.614811, -6.946036 ], [ 112.978768, -7.594213 ], [ 114.478935, -7.776528 ], [ 115.705527, -8.370807 ], [ 114.564511, -8.751817 ], [ 113.464734, -8.348947 ], [ 112.559672, -8.376181 ], [ 111.522061, -8.302129 ], [ 110.58615, -8.122605 ], [ 109.427667, -7.740664 ], [ 108.693655, -7.6416 ], [ 108.277763, -7.766657 ], [ 106.454102, -7.3549 ], [ 106.280624, -6.9249 ], [ 105.365486, -6.851416 ], [ 106.051646, -5.895919 ], [ 107.265009, -5.954985 ], [ 108.072091, -6.345762 ], [ 108.486846, -6.421985 ], [ 108.623479, -6.777674 ] ] ], [ [ [ 134.724624, -6.214401 ], [ 134.210134, -6.895238 ], [ 134.112776, -6.142467 ], [ 134.290336, -5.783058 ], [ 134.499625, -5.445042 ], [ 134.727002, -5.737582 ], [ 134.724624, -6.214401 ] ] ], [ [ [ 127.249215, -3.459065 ], [ 126.874923, -3.790983 ], [ 126.183802, -3.607376 ], [ 125.989034, -3.177273 ], [ 127.000651, -3.129318 ], [ 127.249215, -3.459065 ] ] ], [ [ [ 130.471344, -3.093764 ], [ 130.834836, -3.858472 ], [ 129.990547, -3.446301 ], [ 129.155249, -3.362637 ], [ 128.590684, -3.428679 ], [ 127.898891, -3.393436 ], [ 128.135879, -2.84365 ], [ 129.370998, -2.802154 ], [ 130.471344, -3.093764 ] ] ], [ [ [ 134.143368, -1.151867 ], [ 134.422627, -2.769185 ], [ 135.457603, -3.367753 ], [ 136.293314, -2.307042 ], [ 137.440738, -1.703513 ], [ 138.329727, -1.702686 ], [ 139.184921, -2.051296 ], [ 139.926684, -2.409052 ], [ 141.00021, -2.600151 ], [ 141.017057, -5.859022 ], [ 141.033852, -9.117893 ], [ 140.143415, -8.297168 ], [ 139.127767, -8.096043 ], [ 138.881477, -8.380935 ], [ 137.614474, -8.411683 ], [ 138.039099, -7.597882 ], [ 138.668621, -7.320225 ], [ 138.407914, -6.232849 ], [ 137.92784, -5.393366 ], [ 135.98925, -4.546544 ], [ 135.164598, -4.462931 ], [ 133.66288, -3.538853 ], [ 133.367705, -4.024819 ], [ 132.983956, -4.112979 ], [ 132.756941, -3.746283 ], [ 132.753789, -3.311787 ], [ 131.989804, -2.820551 ], [ 133.066845, -2.460418 ], [ 133.780031, -2.479848 ], [ 133.696212, -2.214542 ], [ 132.232373, -2.212526 ], [ 131.836222, -1.617162 ], [ 130.94284, -1.432522 ], [ 130.519558, -0.93772 ], [ 131.867538, -0.695461 ], [ 132.380116, -0.369538 ], [ 133.985548, -0.78021 ], [ 134.143368, -1.151867 ] ] ], [ [ [ 125.240501, 1.419836 ], [ 124.437035, 0.427881 ], [ 123.685505, 0.235593 ], [ 122.723083, 0.431137 ], [ 121.056725, 0.381217 ], [ 120.183083, 0.237247 ], [ 120.04087, -0.519658 ], [ 120.935905, -1.408906 ], [ 121.475821, -0.955962 ], [ 123.340565, -0.615673 ], [ 123.258399, -1.076213 ], [ 122.822715, -0.930951 ], [ 122.38853, -1.516858 ], [ 121.508274, -1.904483 ], [ 122.454572, -3.186058 ], [ 122.271896, -3.5295 ], [ 123.170963, -4.683693 ], [ 123.162333, -5.340604 ], [ 122.628515, -5.634591 ], [ 122.236394, -5.282933 ], [ 122.719569, -4.464172 ], [ 121.738234, -4.851331 ], [ 121.489463, -4.574553 ], [ 121.619171, -4.188478 ], [ 120.898182, -3.602105 ], [ 120.972389, -2.627643 ], [ 120.305453, -2.931604 ], [ 120.390047, -4.097579 ], [ 120.430717, -5.528241 ], [ 119.796543, -5.6734 ], [ 119.366906, -5.379878 ], [ 119.653606, -4.459417 ], [ 119.498835, -3.494412 ], [ 119.078344, -3.487022 ], [ 118.767769, -2.801999 ], [ 119.180974, -2.147104 ], [ 119.323394, -1.353147 ], [ 119.825999, 0.154254 ], [ 120.035702, 0.566477 ], [ 120.885779, 1.309223 ], [ 121.666817, 1.013944 ], [ 122.927567, 0.875192 ], [ 124.077522, 0.917102 ], [ 125.065989, 1.643259 ], [ 125.240501, 1.419836 ] ] ], [ [ [ 128.688249, 1.132386 ], [ 128.635952, 0.258486 ], [ 128.12017, 0.356413 ], [ 127.968034, -0.252077 ], [ 128.379999, -0.780004 ], [ 128.100016, -0.899996 ], [ 127.696475, -0.266598 ], [ 127.39949, 1.011722 ], [ 127.600512, 1.810691 ], [ 127.932378, 2.174596 ], [ 128.004156, 1.628531 ], [ 128.594559, 1.540811 ], [ 128.688249, 1.132386 ] ] ], [ [ [ 117.875627, 1.827641 ], [ 118.996747, 0.902219 ], [ 117.811858, 0.784242 ], [ 117.478339, 0.102475 ], [ 117.521644, -0.803723 ], [ 116.560048, -1.487661 ], [ 116.533797, -2.483517 ], [ 116.148084, -4.012726 ], [ 116.000858, -3.657037 ], [ 114.864803, -4.106984 ], [ 114.468652, -3.495704 ], [ 113.755672, -3.43917 ], [ 113.256994, -3.118776 ], [ 112.068126, -3.478392 ], [ 111.703291, -2.994442 ], [ 111.04824, -3.049426 ], [ 110.223846, -2.934032 ], [ 110.070936, -1.592874 ], [ 109.571948, -1.314907 ], [ 109.091874, -0.459507 ], [ 108.952658, 0.415375 ], [ 109.069136, 1.341934 ], [ 109.66326, 2.006467 ], [ 109.830227, 1.338136 ], [ 110.514061, 0.773131 ], [ 111.159138, 0.976478 ], [ 111.797548, 0.904441 ], [ 112.380252, 1.410121 ], [ 112.859809, 1.49779 ], [ 113.80585, 1.217549 ], [ 114.621355, 1.430688 ], [ 115.134037, 2.821482 ], [ 115.519078, 3.169238 ], [ 115.865517, 4.306559 ], [ 117.015214, 4.306094 ], [ 117.882035, 4.137551 ], [ 117.313232, 3.234428 ], [ 118.04833, 2.28769 ], [ 117.875627, 1.827641 ] ] ], [ [ [ 105.817655, -5.852356 ], [ 104.710384, -5.873285 ], [ 103.868213, -5.037315 ], [ 102.584261, -4.220259 ], [ 102.156173, -3.614146 ], [ 101.399113, -2.799777 ], [ 100.902503, -2.050262 ], [ 100.141981, -0.650348 ], [ 99.26374, 0.183142 ], [ 98.970011, 1.042882 ], [ 98.601351, 1.823507 ], [ 97.699598, 2.453184 ], [ 97.176942, 3.308791 ], [ 96.424017, 3.86886 ], [ 95.380876, 4.970782 ], [ 95.293026, 5.479821 ], [ 95.936863, 5.439513 ], [ 97.484882, 5.246321 ], [ 98.369169, 4.26837 ], [ 99.142559, 3.59035 ], [ 99.693998, 3.174329 ], [ 100.641434, 2.099381 ], [ 101.658012, 2.083697 ], [ 102.498271, 1.3987 ], [ 103.07684, 0.561361 ], [ 103.838396, 0.104542 ], [ 103.437645, -0.711946 ], [ 104.010789, -1.059212 ], [ 104.369991, -1.084843 ], [ 104.53949, -1.782372 ], [ 104.887893, -2.340425 ], [ 105.622111, -2.428844 ], [ 106.108593, -3.061777 ], [ 105.857446, -4.305525 ], [ 105.817655, -5.852356 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/IND.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"IND","properties":{"name":"India"},"geometry":{"type":"Polygon","coordinates":[[[77.837451,35.49401],[78.912269,34.321936],[78.811086,33.506198],[79.208892,32.994395],[79.176129,32.48378],[78.458446,32.618164],[78.738894,31.515906],[79.721367,30.882715],[81.111256,30.183481],[80.476721,29.729865],[80.088425,28.79447],[81.057203,28.416095],[81.999987,27.925479],[83.304249,27.364506],[84.675018,27.234901],[85.251779,26.726198],[86.024393,26.630985],[87.227472,26.397898],[88.060238,26.414615],[88.174804,26.810405],[88.043133,27.445819],[88.120441,27.876542],[88.730326,28.086865],[88.814248,27.299316],[88.835643,27.098966],[89.744528,26.719403],[90.373275,26.875724],[91.217513,26.808648],[92.033484,26.83831],[92.103712,27.452614],[91.696657,27.771742],[92.503119,27.896876],[93.413348,28.640629],[94.56599,29.277438],[95.404802,29.031717],[96.117679,29.452802],[96.586591,28.83098],[96.248833,28.411031],[97.327114,28.261583],[97.402561,27.882536],[97.051989,27.699059],[97.133999,27.083774],[96.419366,27.264589],[95.124768,26.573572],[95.155153,26.001307],[94.603249,25.162495],[94.552658,24.675238],[94.106742,23.850741],[93.325188,24.078556],[93.286327,23.043658],[93.060294,22.703111],[93.166128,22.27846],[92.672721,22.041239],[92.146035,23.627499],[91.869928,23.624346],[91.706475,22.985264],[91.158963,23.503527],[91.46773,24.072639],[91.915093,24.130414],[92.376202,24.976693],[91.799596,25.147432],[90.872211,25.132601],[89.920693,25.26975],[89.832481,25.965082],[89.355094,26.014407],[88.563049,26.446526],[88.209789,25.768066],[88.931554,25.238692],[88.306373,24.866079],[88.084422,24.501657],[88.69994,24.233715],[88.52977,23.631142],[88.876312,22.879146],[89.031961,22.055708],[88.888766,21.690588],[88.208497,21.703172],[86.975704,21.495562],[87.033169,20.743308],[86.499351,20.151638],[85.060266,19.478579],[83.941006,18.30201],[83.189217,17.671221],[82.192792,17.016636],[82.191242,16.556664],[81.692719,16.310219],[80.791999,15.951972],[80.324896,15.899185],[80.025069,15.136415],[80.233274,13.835771],[80.286294,13.006261],[79.862547,12.056215],[79.857999,10.357275],[79.340512,10.308854],[78.885345,9.546136],[79.18972,9.216544],[78.277941,8.933047],[77.941165,8.252959],[77.539898,7.965535],[76.592979,8.899276],[76.130061,10.29963],[75.746467,11.308251],[75.396101,11.781245],[74.864816,12.741936],[74.616717,13.992583],[74.443859,14.617222],[73.534199,15.990652],[73.119909,17.92857],[72.820909,19.208234],[72.824475,20.419503],[72.630533,21.356009],[71.175273,20.757441],[70.470459,20.877331],[69.16413,22.089298],[69.644928,22.450775],[69.349597,22.84318],[68.176645,23.691965],[68.842599,24.359134],[71.04324,24.356524],[70.844699,25.215102],[70.282873,25.722229],[70.168927,26.491872],[69.514393,26.940966],[70.616496,27.989196],[71.777666,27.91318],[72.823752,28.961592],[73.450638,29.976413],[74.42138,30.979815],[74.405929,31.692639],[75.258642,32.271105],[74.451559,32.7649],[74.104294,33.441473],[73.749948,34.317699],[74.240203,34.748887],[75.757061,34.504923],[76.871722,34.653544],[77.837451,35.49401]]]}} ]} ================================================ FILE: test/fixtures/world/IND_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 16.63619188 ], [ 67.5, 21.94304553 ], [ 73.125, 21.94304553 ], [ 73.125, 16.63619188 ], [ 67.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 21.94304553 ], [ 67.5, 31.95216224 ], [ 78.75, 31.95216224 ], [ 78.75, 21.94304553 ], [ 67.5, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 11.17840187 ], [ 73.125, 16.63619188 ], [ 78.75, 16.63619188 ], [ 78.75, 11.17840187 ], [ 73.125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 16.63619188 ], [ 73.125, 21.94304553 ], [ 78.75, 21.94304553 ], [ 78.75, 16.63619188 ], [ 73.125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 31.95216224 ], [ 73.125, 36.59788913 ], [ 78.75, 36.59788913 ], [ 78.75, 31.95216224 ], [ 73.125, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 5.61598582 ], [ 73.125, 11.17840187 ], [ 78.75, 11.17840187 ], [ 78.75, 5.61598582 ], [ 73.125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 11.17840187 ], [ 78.75, 16.63619188 ], [ 84.375, 16.63619188 ], [ 84.375, 11.17840187 ], [ 78.75, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 16.63619188 ], [ 78.75, 21.94304553 ], [ 84.375, 21.94304553 ], [ 84.375, 16.63619188 ], [ 78.75, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 21.94304553 ], [ 78.75, 31.95216224 ], [ 90, 31.95216224 ], [ 90, 21.94304553 ], [ 78.75, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 31.95216224 ], [ 78.75, 36.59788913 ], [ 84.375, 36.59788913 ], [ 84.375, 31.95216224 ], [ 78.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 5.61598582 ], [ 78.75, 11.17840187 ], [ 84.375, 11.17840187 ], [ 84.375, 5.61598582 ], [ 78.75, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 16.63619188 ], [ 84.375, 21.94304553 ], [ 90, 21.94304553 ], [ 90, 16.63619188 ], [ 84.375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 21.94304553 ], [ 90, 31.95216224 ], [ 101.25, 31.95216224 ], [ 101.25, 21.94304553 ], [ 90, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.837451, 35.49401 ], [ 78.912269, 34.321936 ], [ 78.811086, 33.506198 ], [ 79.208892, 32.994395 ], [ 79.176129, 32.48378 ], [ 78.458446, 32.618164 ], [ 78.738894, 31.515906 ], [ 79.721367, 30.882715 ], [ 81.111256, 30.183481 ], [ 80.476721, 29.729865 ], [ 80.088425, 28.79447 ], [ 81.057203, 28.416095 ], [ 81.999987, 27.925479 ], [ 83.304249, 27.364506 ], [ 84.675018, 27.234901 ], [ 85.251779, 26.726198 ], [ 86.024393, 26.630985 ], [ 87.227472, 26.397898 ], [ 88.060238, 26.414615 ], [ 88.174804, 26.810405 ], [ 88.043133, 27.445819 ], [ 88.120441, 27.876542 ], [ 88.730326, 28.086865 ], [ 88.814248, 27.299316 ], [ 88.835643, 27.098966 ], [ 89.744528, 26.719403 ], [ 90.373275, 26.875724 ], [ 91.217513, 26.808648 ], [ 92.033484, 26.83831 ], [ 92.103712, 27.452614 ], [ 91.696657, 27.771742 ], [ 92.503119, 27.896876 ], [ 93.413348, 28.640629 ], [ 94.56599, 29.277438 ], [ 95.404802, 29.031717 ], [ 96.117679, 29.452802 ], [ 96.586591, 28.83098 ], [ 96.248833, 28.411031 ], [ 97.327114, 28.261583 ], [ 97.402561, 27.882536 ], [ 97.051989, 27.699059 ], [ 97.133999, 27.083774 ], [ 96.419366, 27.264589 ], [ 95.124768, 26.573572 ], [ 95.155153, 26.001307 ], [ 94.603249, 25.162495 ], [ 94.552658, 24.675238 ], [ 94.106742, 23.850741 ], [ 93.325188, 24.078556 ], [ 93.286327, 23.043658 ], [ 93.060294, 22.703111 ], [ 93.166128, 22.27846 ], [ 92.672721, 22.041239 ], [ 92.146035, 23.627499 ], [ 91.869928, 23.624346 ], [ 91.706475, 22.985264 ], [ 91.158963, 23.503527 ], [ 91.46773, 24.072639 ], [ 91.915093, 24.130414 ], [ 92.376202, 24.976693 ], [ 91.799596, 25.147432 ], [ 90.872211, 25.132601 ], [ 89.920693, 25.26975 ], [ 89.832481, 25.965082 ], [ 89.355094, 26.014407 ], [ 88.563049, 26.446526 ], [ 88.209789, 25.768066 ], [ 88.931554, 25.238692 ], [ 88.306373, 24.866079 ], [ 88.084422, 24.501657 ], [ 88.69994, 24.233715 ], [ 88.52977, 23.631142 ], [ 88.876312, 22.879146 ], [ 89.031961, 22.055708 ], [ 88.888766, 21.690588 ], [ 88.208497, 21.703172 ], [ 86.975704, 21.495562 ], [ 87.033169, 20.743308 ], [ 86.499351, 20.151638 ], [ 85.060266, 19.478579 ], [ 83.941006, 18.30201 ], [ 83.189217, 17.671221 ], [ 82.192792, 17.016636 ], [ 82.191242, 16.556664 ], [ 81.692719, 16.310219 ], [ 80.791999, 15.951972 ], [ 80.324896, 15.899185 ], [ 80.025069, 15.136415 ], [ 80.233274, 13.835771 ], [ 80.286294, 13.006261 ], [ 79.862547, 12.056215 ], [ 79.857999, 10.357275 ], [ 79.340512, 10.308854 ], [ 78.885345, 9.546136 ], [ 79.18972, 9.216544 ], [ 78.277941, 8.933047 ], [ 77.941165, 8.252959 ], [ 77.539898, 7.965535 ], [ 76.592979, 8.899276 ], [ 76.130061, 10.29963 ], [ 75.746467, 11.308251 ], [ 75.396101, 11.781245 ], [ 74.864816, 12.741936 ], [ 74.616717, 13.992583 ], [ 74.443859, 14.617222 ], [ 73.534199, 15.990652 ], [ 73.119909, 17.92857 ], [ 72.820909, 19.208234 ], [ 72.824475, 20.419503 ], [ 72.630533, 21.356009 ], [ 71.175273, 20.757441 ], [ 70.470459, 20.877331 ], [ 69.16413, 22.089298 ], [ 69.644928, 22.450775 ], [ 69.349597, 22.84318 ], [ 68.176645, 23.691965 ], [ 68.842599, 24.359134 ], [ 71.04324, 24.356524 ], [ 70.844699, 25.215102 ], [ 70.282873, 25.722229 ], [ 70.168927, 26.491872 ], [ 69.514393, 26.940966 ], [ 70.616496, 27.989196 ], [ 71.777666, 27.91318 ], [ 72.823752, 28.961592 ], [ 73.450638, 29.976413 ], [ 74.42138, 30.979815 ], [ 74.405929, 31.692639 ], [ 75.258642, 32.271105 ], [ 74.451559, 32.7649 ], [ 74.104294, 33.441473 ], [ 73.749948, 34.317699 ], [ 74.240203, 34.748887 ], [ 75.757061, 34.504923 ], [ 76.871722, 34.653544 ], [ 77.837451, 35.49401 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/IRL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"IRL","properties":{"name":"Ireland"},"geometry":{"type":"Polygon","coordinates":[[[-6.197885,53.867565],[-6.032985,53.153164],[-6.788857,52.260118],[-8.561617,51.669301],[-9.977086,51.820455],[-9.166283,52.864629],[-9.688525,53.881363],[-8.327987,54.664519],[-7.572168,55.131622],[-7.366031,54.595841],[-7.572168,54.059956],[-6.95373,54.073702],[-6.197885,53.867565]]]}} ]} ================================================ FILE: test/fixtures/world/IRL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 48.92249926 ], [ -11.25, 52.48278022 ], [ -5.625, 52.48278022 ], [ -5.625, 48.92249926 ], [ -11.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 52.48278022 ], [ -11.25, 55.77657302 ], [ -5.625, 55.77657302 ], [ -5.625, 52.48278022 ], [ -11.25, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.197885, 53.867565 ], [ -6.032985, 53.153164 ], [ -6.788857, 52.260118 ], [ -8.561617, 51.669301 ], [ -9.977086, 51.820455 ], [ -9.166283, 52.864629 ], [ -9.688525, 53.881363 ], [ -8.327987, 54.664519 ], [ -7.572168, 55.131622 ], [ -7.366031, 54.595841 ], [ -7.572168, 54.059956 ], [ -6.95373, 54.073702 ], [ -6.197885, 53.867565 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/IRN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"IRN","properties":{"name":"Iran"},"geometry":{"type":"Polygon","coordinates":[[[53.921598,37.198918],[54.800304,37.392421],[55.511578,37.964117],[56.180375,37.935127],[56.619366,38.121394],[57.330434,38.029229],[58.436154,37.522309],[59.234762,37.412988],[60.377638,36.527383],[61.123071,36.491597],[61.210817,35.650072],[60.803193,34.404102],[60.52843,33.676446],[60.9637,33.528832],[60.536078,32.981269],[60.863655,32.18292],[60.941945,31.548075],[61.699314,31.379506],[61.781222,30.73585],[60.874248,29.829239],[61.369309,29.303276],[61.771868,28.699334],[62.72783,28.259645],[62.755426,27.378923],[63.233898,27.217047],[63.316632,26.756532],[61.874187,26.239975],[61.497363,25.078237],[59.616134,25.380157],[58.525761,25.609962],[57.397251,25.739902],[56.970766,26.966106],[56.492139,27.143305],[55.72371,26.964633],[54.71509,26.480658],[53.493097,26.812369],[52.483598,27.580849],[51.520763,27.86569],[50.852948,28.814521],[50.115009,30.147773],[49.57685,29.985715],[48.941333,30.31709],[48.567971,29.926778],[48.014568,30.452457],[48.004698,30.985137],[47.685286,30.984853],[47.849204,31.709176],[47.334661,32.469155],[46.109362,33.017287],[45.416691,33.967798],[45.64846,34.748138],[46.151788,35.093259],[46.07634,35.677383],[45.420618,35.977546],[44.77267,37.17045],[44.225756,37.971584],[44.421403,38.281281],[44.109225,39.428136],[44.79399,39.713003],[44.952688,39.335765],[45.457722,38.874139],[46.143623,38.741201],[46.50572,38.770605],[47.685079,39.508364],[48.060095,39.582235],[48.355529,39.288765],[48.010744,38.794015],[48.634375,38.270378],[48.883249,38.320245],[49.199612,37.582874],[50.147771,37.374567],[50.842354,36.872814],[52.264025,36.700422],[53.82579,36.965031],[53.921598,37.198918]]]}} ]} ================================================ FILE: test/fixtures/world/IRN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 36.59788913 ], [ 39.375, 40.97989807 ], [ 45, 40.97989807 ], [ 45, 36.59788913 ], [ 39.375, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 27.05912578 ], [ 45, 31.95216224 ], [ 50.625, 31.95216224 ], [ 50.625, 27.05912578 ], [ 45, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 31.95216224 ], [ 45, 40.97989807 ], [ 56.25, 40.97989807 ], [ 56.25, 31.95216224 ], [ 45, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 21.94304553 ], [ 50.625, 27.05912578 ], [ 56.25, 27.05912578 ], [ 56.25, 21.94304553 ], [ 50.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 27.05912578 ], [ 50.625, 31.95216224 ], [ 56.25, 31.95216224 ], [ 56.25, 27.05912578 ], [ 50.625, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 21.94304553 ], [ 56.25, 31.95216224 ], [ 67.5, 31.95216224 ], [ 67.5, 21.94304553 ], [ 56.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 31.95216224 ], [ 56.25, 36.59788913 ], [ 61.875, 36.59788913 ], [ 61.875, 31.95216224 ], [ 56.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 36.59788913 ], [ 56.25, 40.97989807 ], [ 61.875, 40.97989807 ], [ 61.875, 36.59788913 ], [ 56.25, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.921598, 37.198918 ], [ 54.800304, 37.392421 ], [ 55.511578, 37.964117 ], [ 56.180375, 37.935127 ], [ 56.619366, 38.121394 ], [ 57.330434, 38.029229 ], [ 58.436154, 37.522309 ], [ 59.234762, 37.412988 ], [ 60.377638, 36.527383 ], [ 61.123071, 36.491597 ], [ 61.210817, 35.650072 ], [ 60.803193, 34.404102 ], [ 60.52843, 33.676446 ], [ 60.9637, 33.528832 ], [ 60.536078, 32.981269 ], [ 60.863655, 32.18292 ], [ 60.941945, 31.548075 ], [ 61.699314, 31.379506 ], [ 61.781222, 30.73585 ], [ 60.874248, 29.829239 ], [ 61.369309, 29.303276 ], [ 61.771868, 28.699334 ], [ 62.72783, 28.259645 ], [ 62.755426, 27.378923 ], [ 63.233898, 27.217047 ], [ 63.316632, 26.756532 ], [ 61.874187, 26.239975 ], [ 61.497363, 25.078237 ], [ 59.616134, 25.380157 ], [ 58.525761, 25.609962 ], [ 57.397251, 25.739902 ], [ 56.970766, 26.966106 ], [ 56.492139, 27.143305 ], [ 55.72371, 26.964633 ], [ 54.71509, 26.480658 ], [ 53.493097, 26.812369 ], [ 52.483598, 27.580849 ], [ 51.520763, 27.86569 ], [ 50.852948, 28.814521 ], [ 50.115009, 30.147773 ], [ 49.57685, 29.985715 ], [ 48.941333, 30.31709 ], [ 48.567971, 29.926778 ], [ 48.014568, 30.452457 ], [ 48.004698, 30.985137 ], [ 47.685286, 30.984853 ], [ 47.849204, 31.709176 ], [ 47.334661, 32.469155 ], [ 46.109362, 33.017287 ], [ 45.416691, 33.967798 ], [ 45.64846, 34.748138 ], [ 46.151788, 35.093259 ], [ 46.07634, 35.677383 ], [ 45.420618, 35.977546 ], [ 44.77267, 37.17045 ], [ 44.225756, 37.971584 ], [ 44.421403, 38.281281 ], [ 44.109225, 39.428136 ], [ 44.79399, 39.713003 ], [ 44.952688, 39.335765 ], [ 45.457722, 38.874139 ], [ 46.143623, 38.741201 ], [ 46.50572, 38.770605 ], [ 47.685079, 39.508364 ], [ 48.060095, 39.582235 ], [ 48.355529, 39.288765 ], [ 48.010744, 38.794015 ], [ 48.634375, 38.270378 ], [ 48.883249, 38.320245 ], [ 49.199612, 37.582874 ], [ 50.147771, 37.374567 ], [ 50.842354, 36.872814 ], [ 52.264025, 36.700422 ], [ 53.82579, 36.965031 ], [ 53.921598, 37.198918 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/IRQ.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"IRQ","properties":{"name":"Iraq"},"geometry":{"type":"Polygon","coordinates":[[[45.420618,35.977546],[46.07634,35.677383],[46.151788,35.093259],[45.64846,34.748138],[45.416691,33.967798],[46.109362,33.017287],[47.334661,32.469155],[47.849204,31.709176],[47.685286,30.984853],[48.004698,30.985137],[48.014568,30.452457],[48.567971,29.926778],[47.974519,29.975819],[47.302622,30.05907],[46.568713,29.099025],[44.709499,29.178891],[41.889981,31.190009],[40.399994,31.889992],[39.195468,32.161009],[38.792341,33.378686],[41.006159,34.419372],[41.383965,35.628317],[41.289707,36.358815],[41.837064,36.605854],[42.349591,37.229873],[42.779126,37.385264],[43.942259,37.256228],[44.293452,37.001514],[44.772699,37.170445],[45.420618,35.977546]]]}} ]} ================================================ FILE: test/fixtures/world/IRQ_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 31.95216224 ], [ 33.75, 36.59788913 ], [ 39.375, 36.59788913 ], [ 39.375, 31.95216224 ], [ 33.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 27.05912578 ], [ 39.375, 31.95216224 ], [ 45, 31.95216224 ], [ 45, 27.05912578 ], [ 39.375, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 31.95216224 ], [ 39.375, 36.59788913 ], [ 45, 36.59788913 ], [ 45, 31.95216224 ], [ 39.375, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 36.59788913 ], [ 39.375, 40.97989807 ], [ 45, 40.97989807 ], [ 45, 36.59788913 ], [ 39.375, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 27.05912578 ], [ 45, 31.95216224 ], [ 50.625, 31.95216224 ], [ 50.625, 27.05912578 ], [ 45, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 31.95216224 ], [ 45, 36.59788913 ], [ 50.625, 36.59788913 ], [ 50.625, 31.95216224 ], [ 45, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 36.59788913 ], [ 45, 40.97989807 ], [ 50.625, 40.97989807 ], [ 50.625, 36.59788913 ], [ 45, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.420618, 35.977546 ], [ 46.07634, 35.677383 ], [ 46.151788, 35.093259 ], [ 45.64846, 34.748138 ], [ 45.416691, 33.967798 ], [ 46.109362, 33.017287 ], [ 47.334661, 32.469155 ], [ 47.849204, 31.709176 ], [ 47.685286, 30.984853 ], [ 48.004698, 30.985137 ], [ 48.014568, 30.452457 ], [ 48.567971, 29.926778 ], [ 47.974519, 29.975819 ], [ 47.302622, 30.05907 ], [ 46.568713, 29.099025 ], [ 44.709499, 29.178891 ], [ 41.889981, 31.190009 ], [ 40.399994, 31.889992 ], [ 39.195468, 32.161009 ], [ 38.792341, 33.378686 ], [ 41.006159, 34.419372 ], [ 41.383965, 35.628317 ], [ 41.289707, 36.358815 ], [ 41.837064, 36.605854 ], [ 42.349591, 37.229873 ], [ 42.779126, 37.385264 ], [ 43.942259, 37.256228 ], [ 44.293452, 37.001514 ], [ 44.772699, 37.170445 ], [ 45.420618, 35.977546 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ISL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ISL","properties":{"name":"Iceland"},"geometry":{"type":"Polygon","coordinates":[[[-14.508695,66.455892],[-14.739637,65.808748],[-13.609732,65.126671],[-14.909834,64.364082],[-17.794438,63.678749],[-18.656246,63.496383],[-19.972755,63.643635],[-22.762972,63.960179],[-21.778484,64.402116],[-23.955044,64.89113],[-22.184403,65.084968],[-22.227423,65.378594],[-24.326184,65.611189],[-23.650515,66.262519],[-22.134922,66.410469],[-20.576284,65.732112],[-19.056842,66.276601],[-17.798624,65.993853],[-16.167819,66.526792],[-14.508695,66.455892]]]}} ]} ================================================ FILE: test/fixtures/world/ISL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 66.51326044 ], [ -16.875, 68.65655498 ], [ -11.25, 68.65655498 ], [ -11.25, 66.51326044 ], [ -16.875, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 61.60639637 ], [ -22.5, 66.51326044 ], [ -11.25, 66.51326044 ], [ -11.25, 61.60639637 ], [ -22.5, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -28.125, 61.60639637 ], [ -28.125, 64.1681069 ], [ -22.5, 64.1681069 ], [ -22.5, 61.60639637 ], [ -28.125, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -28.125, 64.1681069 ], [ -28.125, 66.51326044 ], [ -22.5, 66.51326044 ], [ -22.5, 64.1681069 ], [ -28.125, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.508695, 66.455892 ], [ -14.739637, 65.808748 ], [ -13.609732, 65.126671 ], [ -14.909834, 64.364082 ], [ -17.794438, 63.678749 ], [ -18.656246, 63.496383 ], [ -19.972755, 63.643635 ], [ -22.762972, 63.960179 ], [ -21.778484, 64.402116 ], [ -23.955044, 64.89113 ], [ -22.184403, 65.084968 ], [ -22.227423, 65.378594 ], [ -24.326184, 65.611189 ], [ -23.650515, 66.262519 ], [ -22.134922, 66.410469 ], [ -20.576284, 65.732112 ], [ -19.056842, 66.276601 ], [ -17.798624, 65.993853 ], [ -16.167819, 66.526792 ], [ -14.508695, 66.455892 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ISR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ISR","properties":{"name":"Israel"},"geometry":{"type":"Polygon","coordinates":[[[35.719918,32.709192],[35.545665,32.393992],[35.18393,32.532511],[34.974641,31.866582],[35.225892,31.754341],[34.970507,31.616778],[34.927408,31.353435],[35.397561,31.489086],[35.420918,31.100066],[34.922603,29.501326],[34.265433,31.219361],[34.556372,31.548824],[34.488107,31.605539],[34.752587,32.072926],[34.955417,32.827376],[35.098457,33.080539],[35.126053,33.0909],[35.460709,33.08904],[35.552797,33.264275],[35.821101,33.277426],[35.836397,32.868123],[35.700798,32.716014],[35.719918,32.709192]]]}} ]} ================================================ FILE: test/fixtures/world/ISR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 27.05912578 ], [ 33.75, 31.95216224 ], [ 39.375, 31.95216224 ], [ 39.375, 27.05912578 ], [ 33.75, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 31.95216224 ], [ 33.75, 36.59788913 ], [ 39.375, 36.59788913 ], [ 39.375, 31.95216224 ], [ 33.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.719918, 32.709192 ], [ 35.545665, 32.393992 ], [ 35.18393, 32.532511 ], [ 34.974641, 31.866582 ], [ 35.225892, 31.754341 ], [ 34.970507, 31.616778 ], [ 34.927408, 31.353435 ], [ 35.397561, 31.489086 ], [ 35.420918, 31.100066 ], [ 34.922603, 29.501326 ], [ 34.265433, 31.219361 ], [ 34.556372, 31.548824 ], [ 34.488107, 31.605539 ], [ 34.752587, 32.072926 ], [ 34.955417, 32.827376 ], [ 35.098457, 33.080539 ], [ 35.126053, 33.0909 ], [ 35.460709, 33.08904 ], [ 35.552797, 33.264275 ], [ 35.821101, 33.277426 ], [ 35.836397, 32.868123 ], [ 35.700798, 32.716014 ], [ 35.719918, 32.709192 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ITA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ITA","properties":{"name":"Italy"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.520376,38.231155],[15.160243,37.444046],[15.309898,37.134219],[15.099988,36.619987],[14.335229,36.996631],[13.826733,37.104531],[12.431004,37.61295],[12.570944,38.126381],[13.741156,38.034966],[14.761249,38.143874],[15.520376,38.231155]]],[[[9.210012,41.209991],[9.809975,40.500009],[9.669519,39.177376],[9.214818,39.240473],[8.806936,38.906618],[8.428302,39.171847],[8.388253,40.378311],[8.159998,40.950007],[8.709991,40.899984],[9.210012,41.209991]]],[[[12.376485,46.767559],[13.806475,46.509306],[13.69811,46.016778],[13.93763,45.591016],[13.141606,45.736692],[12.328581,45.381778],[12.383875,44.885374],[12.261453,44.600482],[12.589237,44.091366],[13.526906,43.587727],[14.029821,42.761008],[15.14257,41.95514],[15.926191,41.961315],[16.169897,41.740295],[15.889346,41.541082],[16.785002,41.179606],[17.519169,40.877143],[18.376687,40.355625],[18.480247,40.168866],[18.293385,39.810774],[17.73838,40.277671],[16.869596,40.442235],[16.448743,39.795401],[17.17149,39.4247],[17.052841,38.902871],[16.635088,38.843572],[16.100961,37.985899],[15.684087,37.908849],[15.687963,38.214593],[15.891981,38.750942],[16.109332,38.964547],[15.718814,39.544072],[15.413613,40.048357],[14.998496,40.172949],[14.703268,40.60455],[14.060672,40.786348],[13.627985,41.188287],[12.888082,41.25309],[12.106683,41.704535],[11.191906,42.355425],[10.511948,42.931463],[10.200029,43.920007],[9.702488,44.036279],[8.888946,44.366336],[8.428561,44.231228],[7.850767,43.767148],[7.435185,43.693845],[7.549596,44.127901],[7.007562,44.254767],[6.749955,45.028518],[7.096652,45.333099],[6.802355,45.70858],[6.843593,45.991147],[7.273851,45.776948],[7.755992,45.82449],[8.31663,46.163642],[8.489952,46.005151],[8.966306,46.036932],[9.182882,46.440215],[9.922837,46.314899],[10.363378,46.483571],[10.442701,46.893546],[11.048556,46.751359],[11.164828,46.941579],[12.153088,47.115393],[12.376485,46.767559]]]]}} ]} ================================================ FILE: test/fixtures/world/ITA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 36.59788913 ], [ 11.25, 40.97989807 ], [ 16.875, 40.97989807 ], [ 16.875, 36.59788913 ], [ 11.25, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 40.97989807 ], [ 11.25, 45.08903556 ], [ 16.875, 45.08903556 ], [ 16.875, 40.97989807 ], [ 11.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 45.08903556 ], [ 11.25, 48.92249926 ], [ 16.875, 48.92249926 ], [ 16.875, 45.08903556 ], [ 11.25, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 36.59788913 ], [ 16.875, 40.97989807 ], [ 22.5, 40.97989807 ], [ 22.5, 36.59788913 ], [ 16.875, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 40.97989807 ], [ 16.875, 45.08903556 ], [ 22.5, 45.08903556 ], [ 22.5, 40.97989807 ], [ 16.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 36.59788913 ], [ 5.625, 40.97989807 ], [ 11.25, 40.97989807 ], [ 11.25, 36.59788913 ], [ 5.625, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 40.97989807 ], [ 5.625, 45.08903556 ], [ 11.25, 45.08903556 ], [ 11.25, 40.97989807 ], [ 5.625, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 45.08903556 ], [ 5.625, 48.92249926 ], [ 11.25, 48.92249926 ], [ 11.25, 45.08903556 ], [ 5.625, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.520376, 38.231155 ], [ 15.160243, 37.444046 ], [ 15.309898, 37.134219 ], [ 15.099988, 36.619987 ], [ 14.335229, 36.996631 ], [ 13.826733, 37.104531 ], [ 12.431004, 37.61295 ], [ 12.570944, 38.126381 ], [ 13.741156, 38.034966 ], [ 14.761249, 38.143874 ], [ 15.520376, 38.231155 ] ] ], [ [ [ 9.210012, 41.209991 ], [ 9.809975, 40.500009 ], [ 9.669519, 39.177376 ], [ 9.214818, 39.240473 ], [ 8.806936, 38.906618 ], [ 8.428302, 39.171847 ], [ 8.388253, 40.378311 ], [ 8.159998, 40.950007 ], [ 8.709991, 40.899984 ], [ 9.210012, 41.209991 ] ] ], [ [ [ 12.376485, 46.767559 ], [ 13.806475, 46.509306 ], [ 13.69811, 46.016778 ], [ 13.93763, 45.591016 ], [ 13.141606, 45.736692 ], [ 12.328581, 45.381778 ], [ 12.383875, 44.885374 ], [ 12.261453, 44.600482 ], [ 12.589237, 44.091366 ], [ 13.526906, 43.587727 ], [ 14.029821, 42.761008 ], [ 15.14257, 41.95514 ], [ 15.926191, 41.961315 ], [ 16.169897, 41.740295 ], [ 15.889346, 41.541082 ], [ 16.785002, 41.179606 ], [ 17.519169, 40.877143 ], [ 18.376687, 40.355625 ], [ 18.480247, 40.168866 ], [ 18.293385, 39.810774 ], [ 17.73838, 40.277671 ], [ 16.869596, 40.442235 ], [ 16.448743, 39.795401 ], [ 17.17149, 39.4247 ], [ 17.052841, 38.902871 ], [ 16.635088, 38.843572 ], [ 16.100961, 37.985899 ], [ 15.684087, 37.908849 ], [ 15.687963, 38.214593 ], [ 15.891981, 38.750942 ], [ 16.109332, 38.964547 ], [ 15.718814, 39.544072 ], [ 15.413613, 40.048357 ], [ 14.998496, 40.172949 ], [ 14.703268, 40.60455 ], [ 14.060672, 40.786348 ], [ 13.627985, 41.188287 ], [ 12.888082, 41.25309 ], [ 12.106683, 41.704535 ], [ 11.191906, 42.355425 ], [ 10.511948, 42.931463 ], [ 10.200029, 43.920007 ], [ 9.702488, 44.036279 ], [ 8.888946, 44.366336 ], [ 8.428561, 44.231228 ], [ 7.850767, 43.767148 ], [ 7.435185, 43.693845 ], [ 7.549596, 44.127901 ], [ 7.007562, 44.254767 ], [ 6.749955, 45.028518 ], [ 7.096652, 45.333099 ], [ 6.802355, 45.70858 ], [ 6.843593, 45.991147 ], [ 7.273851, 45.776948 ], [ 7.755992, 45.82449 ], [ 8.31663, 46.163642 ], [ 8.489952, 46.005151 ], [ 8.966306, 46.036932 ], [ 9.182882, 46.440215 ], [ 9.922837, 46.314899 ], [ 10.363378, 46.483571 ], [ 10.442701, 46.893546 ], [ 11.048556, 46.751359 ], [ 11.164828, 46.941579 ], [ 12.153088, 47.115393 ], [ 12.376485, 46.767559 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/JAM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"JAM","properties":{"name":"Jamaica"},"geometry":{"type":"Polygon","coordinates":[[[-77.569601,18.490525],[-76.896619,18.400867],[-76.365359,18.160701],[-76.199659,17.886867],[-76.902561,17.868238],[-77.206341,17.701116],[-77.766023,17.861597],[-78.337719,18.225968],[-78.217727,18.454533],[-77.797365,18.524218],[-77.569601,18.490525]]]}} ]} ================================================ FILE: test/fixtures/world/JAM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 16.63619188 ], [ -78.75, 21.94304553 ], [ -73.125, 21.94304553 ], [ -73.125, 16.63619188 ], [ -78.75, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.569601, 18.490525 ], [ -76.896619, 18.400867 ], [ -76.365359, 18.160701 ], [ -76.199659, 17.886867 ], [ -76.902561, 17.868238 ], [ -77.206341, 17.701116 ], [ -77.766023, 17.861597 ], [ -78.337719, 18.225968 ], [ -78.217727, 18.454533 ], [ -77.797365, 18.524218 ], [ -77.569601, 18.490525 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/JOR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"JOR","properties":{"name":"Jordan"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.719918,32.709192],[36.834062,32.312938],[38.792341,33.378686],[39.195468,32.161009],[39.004886,32.010217],[37.002166,31.508413],[37.998849,30.5085],[37.66812,30.338665],[37.503582,30.003776],[36.740528,29.865283],[36.501214,29.505254],[36.068941,29.197495],[34.956037,29.356555],[34.922603,29.501326],[35.420918,31.100066],[35.397561,31.489086],[35.545252,31.782505],[35.545665,32.393992]]]}} ]} ================================================ FILE: test/fixtures/world/JOR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 27.05912578 ], [ 33.75, 31.95216224 ], [ 39.375, 31.95216224 ], [ 39.375, 27.05912578 ], [ 33.75, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 31.95216224 ], [ 33.75, 36.59788913 ], [ 39.375, 36.59788913 ], [ 39.375, 31.95216224 ], [ 33.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.545665, 32.393992 ], [ 35.719918, 32.709192 ], [ 36.834062, 32.312938 ], [ 38.792341, 33.378686 ], [ 39.195468, 32.161009 ], [ 39.004886, 32.010217 ], [ 37.002166, 31.508413 ], [ 37.998849, 30.5085 ], [ 37.66812, 30.338665 ], [ 37.503582, 30.003776 ], [ 36.740528, 29.865283 ], [ 36.501214, 29.505254 ], [ 36.068941, 29.197495 ], [ 34.956037, 29.356555 ], [ 34.922603, 29.501326 ], [ 35.420918, 31.100066 ], [ 35.397561, 31.489086 ], [ 35.545252, 31.782505 ], [ 35.545665, 32.393992 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/JPN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"JPN","properties":{"name":"Japan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.638428,34.149234],[134.766379,33.806335],[134.203416,33.201178],[133.79295,33.521985],[133.280268,33.28957],[133.014858,32.704567],[132.363115,32.989382],[132.371176,33.463642],[132.924373,34.060299],[133.492968,33.944621],[133.904106,34.364931],[134.638428,34.149234]]],[[[140.976388,37.142074],[140.59977,36.343983],[140.774074,35.842877],[140.253279,35.138114],[138.975528,34.6676],[137.217599,34.606286],[135.792983,33.464805],[135.120983,33.849071],[135.079435,34.596545],[133.340316,34.375938],[132.156771,33.904933],[130.986145,33.885761],[132.000036,33.149992],[131.33279,31.450355],[130.686318,31.029579],[130.20242,31.418238],[130.447676,32.319475],[129.814692,32.61031],[129.408463,33.296056],[130.353935,33.604151],[130.878451,34.232743],[131.884229,34.749714],[132.617673,35.433393],[134.608301,35.731618],[135.677538,35.527134],[136.723831,37.304984],[137.390612,36.827391],[138.857602,37.827485],[139.426405,38.215962],[140.05479,39.438807],[139.883379,40.563312],[140.305783,41.195005],[141.368973,41.37856],[141.914263,39.991616],[141.884601,39.180865],[140.959489,38.174001],[140.976388,37.142074]]],[[[143.910162,44.1741],[144.613427,43.960883],[145.320825,44.384733],[145.543137,43.262088],[144.059662,42.988358],[143.18385,41.995215],[141.611491,42.678791],[141.067286,41.584594],[139.955106,41.569556],[139.817544,42.563759],[140.312087,43.333273],[141.380549,43.388825],[141.671952,44.772125],[141.967645,45.551483],[143.14287,44.510358],[143.910162,44.1741]]]]}} ]} ================================================ FILE: test/fixtures/world/JPN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 27.05912578 ], [ 129.375, 31.95216224 ], [ 135, 31.95216224 ], [ 135, 27.05912578 ], [ 129.375, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 31.95216224 ], [ 129.375, 36.59788913 ], [ 135, 36.59788913 ], [ 135, 31.95216224 ], [ 129.375, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 31.95216224 ], [ 135, 40.97989807 ], [ 146.25, 40.97989807 ], [ 146.25, 31.95216224 ], [ 135, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 40.97989807 ], [ 135, 45.08903556 ], [ 140.625, 45.08903556 ], [ 140.625, 40.97989807 ], [ 135, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 40.97989807 ], [ 140.625, 45.08903556 ], [ 146.25, 45.08903556 ], [ 146.25, 40.97989807 ], [ 140.625, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, 45.08903556 ], [ 140.625, 48.92249926 ], [ 146.25, 48.92249926 ], [ 146.25, 45.08903556 ], [ 140.625, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.638428, 34.149234 ], [ 134.766379, 33.806335 ], [ 134.203416, 33.201178 ], [ 133.79295, 33.521985 ], [ 133.280268, 33.28957 ], [ 133.014858, 32.704567 ], [ 132.363115, 32.989382 ], [ 132.371176, 33.463642 ], [ 132.924373, 34.060299 ], [ 133.492968, 33.944621 ], [ 133.904106, 34.364931 ], [ 134.638428, 34.149234 ] ] ], [ [ [ 140.976388, 37.142074 ], [ 140.59977, 36.343983 ], [ 140.774074, 35.842877 ], [ 140.253279, 35.138114 ], [ 138.975528, 34.6676 ], [ 137.217599, 34.606286 ], [ 135.792983, 33.464805 ], [ 135.120983, 33.849071 ], [ 135.079435, 34.596545 ], [ 133.340316, 34.375938 ], [ 132.156771, 33.904933 ], [ 130.986145, 33.885761 ], [ 132.000036, 33.149992 ], [ 131.33279, 31.450355 ], [ 130.686318, 31.029579 ], [ 130.20242, 31.418238 ], [ 130.447676, 32.319475 ], [ 129.814692, 32.61031 ], [ 129.408463, 33.296056 ], [ 130.353935, 33.604151 ], [ 130.878451, 34.232743 ], [ 131.884229, 34.749714 ], [ 132.617673, 35.433393 ], [ 134.608301, 35.731618 ], [ 135.677538, 35.527134 ], [ 136.723831, 37.304984 ], [ 137.390612, 36.827391 ], [ 138.857602, 37.827485 ], [ 139.426405, 38.215962 ], [ 140.05479, 39.438807 ], [ 139.883379, 40.563312 ], [ 140.305783, 41.195005 ], [ 141.368973, 41.37856 ], [ 141.914263, 39.991616 ], [ 141.884601, 39.180865 ], [ 140.959489, 38.174001 ], [ 140.976388, 37.142074 ] ] ], [ [ [ 143.910162, 44.1741 ], [ 144.613427, 43.960883 ], [ 145.320825, 44.384733 ], [ 145.543137, 43.262088 ], [ 144.059662, 42.988358 ], [ 143.18385, 41.995215 ], [ 141.611491, 42.678791 ], [ 141.067286, 41.584594 ], [ 139.955106, 41.569556 ], [ 139.817544, 42.563759 ], [ 140.312087, 43.333273 ], [ 141.380549, 43.388825 ], [ 141.671952, 44.772125 ], [ 141.967645, 45.551483 ], [ 143.14287, 44.510358 ], [ 143.910162, 44.1741 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/KAZ.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"KAZ","properties":{"name":"Kazakhstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[70.388965,42.081308],[69.070027,41.384244],[68.632483,40.668681],[68.259896,40.662325],[67.985856,41.135991],[66.714047,41.168444],[66.510649,41.987644],[66.023392,41.994646],[66.098012,42.99766],[64.900824,43.728081],[63.185787,43.650075],[62.0133,43.504477],[61.05832,44.405817],[60.239972,44.784037],[58.689989,45.500014],[58.503127,45.586804],[55.928917,44.995858],[55.968191,41.308642],[55.455251,41.259859],[54.755345,42.043971],[54.079418,42.324109],[52.944293,42.116034],[52.50246,41.783316],[52.446339,42.027151],[52.692112,42.443895],[52.501426,42.792298],[51.342427,43.132975],[50.891292,44.031034],[50.339129,44.284016],[50.305643,44.609836],[51.278503,44.514854],[51.316899,45.245998],[52.16739,45.408391],[53.040876,45.259047],[53.220866,46.234646],[53.042737,46.853006],[52.042023,46.804637],[51.191945,47.048705],[50.034083,46.60899],[49.10116,46.39933],[48.593241,46.561034],[48.694734,47.075628],[48.057253,47.743753],[47.315231,47.715847],[46.466446,48.394152],[47.043672,49.152039],[46.751596,49.356006],[47.54948,50.454698],[48.577841,49.87476],[48.702382,50.605128],[50.766648,51.692762],[52.328724,51.718652],[54.532878,51.02624],[55.716941,50.621717],[56.777961,51.043551],[58.363291,51.063653],[59.642282,50.545442],[59.932807,50.842194],[61.337424,50.79907],[61.588003,51.272659],[59.967534,51.96042],[60.927269,52.447548],[60.739993,52.719986],[61.699986,52.979996],[60.978066,53.664993],[61.436591,54.006265],[65.178534,54.354228],[65.666876,54.601267],[68.1691,54.970392],[69.068167,55.38525],[70.865267,55.169734],[71.180131,54.133285],[72.22415,54.376655],[73.508516,54.035617],[73.425679,53.48981],[74.384845,53.546861],[76.8911,54.490524],[76.525179,54.177003],[77.800916,53.404415],[80.03556,50.864751],[80.568447,51.388336],[81.945986,50.812196],[83.383004,51.069183],[83.935115,50.889246],[84.416377,50.3114],[85.11556,50.117303],[85.54127,49.692859],[86.829357,49.826675],[87.35997,49.214981],[86.598776,48.549182],[85.768233,48.455751],[85.720484,47.452969],[85.16429,47.000956],[83.180484,47.330031],[82.458926,45.53965],[81.947071,45.317027],[79.966106,44.917517],[80.866206,43.180362],[80.18015,42.920068],[80.25999,42.349999],[79.643645,42.496683],[79.142177,42.856092],[77.658392,42.960686],[76.000354,42.988022],[75.636965,42.8779],[74.212866,43.298339],[73.645304,43.091272],[73.489758,42.500894],[71.844638,42.845395],[71.186281,42.704293],[70.962315,42.266154]]]}} ]} ================================================ FILE: test/fixtures/world/KAZ_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 40.97989807 ], [ 45, 48.92249926 ], [ 56.25, 48.92249926 ], [ 56.25, 40.97989807 ], [ 45, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 48.92249926 ], [ 45, 52.48278022 ], [ 50.625, 52.48278022 ], [ 50.625, 48.92249926 ], [ 45, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 48.92249926 ], [ 50.625, 52.48278022 ], [ 56.25, 52.48278022 ], [ 56.25, 48.92249926 ], [ 50.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 40.97989807 ], [ 56.25, 48.92249926 ], [ 67.5, 48.92249926 ], [ 67.5, 40.97989807 ], [ 56.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 48.92249926 ], [ 56.25, 55.77657302 ], [ 67.5, 55.77657302 ], [ 67.5, 48.92249926 ], [ 56.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 36.59788913 ], [ 67.5, 40.97989807 ], [ 73.125, 40.97989807 ], [ 73.125, 36.59788913 ], [ 67.5, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 40.97989807 ], [ 67.5, 48.92249926 ], [ 78.75, 48.92249926 ], [ 78.75, 40.97989807 ], [ 67.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 48.92249926 ], [ 67.5, 55.77657302 ], [ 78.75, 55.77657302 ], [ 78.75, 48.92249926 ], [ 67.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 40.97989807 ], [ 78.75, 45.08903556 ], [ 84.375, 45.08903556 ], [ 84.375, 40.97989807 ], [ 78.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 45.08903556 ], [ 78.75, 48.92249926 ], [ 84.375, 48.92249926 ], [ 84.375, 45.08903556 ], [ 78.75, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 48.92249926 ], [ 78.75, 52.48278022 ], [ 84.375, 52.48278022 ], [ 84.375, 48.92249926 ], [ 78.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 45.08903556 ], [ 84.375, 48.92249926 ], [ 90, 48.92249926 ], [ 90, 45.08903556 ], [ 84.375, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 48.92249926 ], [ 84.375, 52.48278022 ], [ 90, 52.48278022 ], [ 90, 48.92249926 ], [ 84.375, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.962315, 42.266154 ], [ 70.388965, 42.081308 ], [ 69.070027, 41.384244 ], [ 68.632483, 40.668681 ], [ 68.259896, 40.662325 ], [ 67.985856, 41.135991 ], [ 66.714047, 41.168444 ], [ 66.510649, 41.987644 ], [ 66.023392, 41.994646 ], [ 66.098012, 42.99766 ], [ 64.900824, 43.728081 ], [ 63.185787, 43.650075 ], [ 62.0133, 43.504477 ], [ 61.05832, 44.405817 ], [ 60.239972, 44.784037 ], [ 58.689989, 45.500014 ], [ 58.503127, 45.586804 ], [ 55.928917, 44.995858 ], [ 55.968191, 41.308642 ], [ 55.455251, 41.259859 ], [ 54.755345, 42.043971 ], [ 54.079418, 42.324109 ], [ 52.944293, 42.116034 ], [ 52.50246, 41.783316 ], [ 52.446339, 42.027151 ], [ 52.692112, 42.443895 ], [ 52.501426, 42.792298 ], [ 51.342427, 43.132975 ], [ 50.891292, 44.031034 ], [ 50.339129, 44.284016 ], [ 50.305643, 44.609836 ], [ 51.278503, 44.514854 ], [ 51.316899, 45.245998 ], [ 52.16739, 45.408391 ], [ 53.040876, 45.259047 ], [ 53.220866, 46.234646 ], [ 53.042737, 46.853006 ], [ 52.042023, 46.804637 ], [ 51.191945, 47.048705 ], [ 50.034083, 46.60899 ], [ 49.10116, 46.39933 ], [ 48.593241, 46.561034 ], [ 48.694734, 47.075628 ], [ 48.057253, 47.743753 ], [ 47.315231, 47.715847 ], [ 46.466446, 48.394152 ], [ 47.043672, 49.152039 ], [ 46.751596, 49.356006 ], [ 47.54948, 50.454698 ], [ 48.577841, 49.87476 ], [ 48.702382, 50.605128 ], [ 50.766648, 51.692762 ], [ 52.328724, 51.718652 ], [ 54.532878, 51.02624 ], [ 55.716941, 50.621717 ], [ 56.777961, 51.043551 ], [ 58.363291, 51.063653 ], [ 59.642282, 50.545442 ], [ 59.932807, 50.842194 ], [ 61.337424, 50.79907 ], [ 61.588003, 51.272659 ], [ 59.967534, 51.96042 ], [ 60.927269, 52.447548 ], [ 60.739993, 52.719986 ], [ 61.699986, 52.979996 ], [ 60.978066, 53.664993 ], [ 61.436591, 54.006265 ], [ 65.178534, 54.354228 ], [ 65.666876, 54.601267 ], [ 68.1691, 54.970392 ], [ 69.068167, 55.38525 ], [ 70.865267, 55.169734 ], [ 71.180131, 54.133285 ], [ 72.22415, 54.376655 ], [ 73.508516, 54.035617 ], [ 73.425679, 53.48981 ], [ 74.384845, 53.546861 ], [ 76.8911, 54.490524 ], [ 76.525179, 54.177003 ], [ 77.800916, 53.404415 ], [ 80.03556, 50.864751 ], [ 80.568447, 51.388336 ], [ 81.945986, 50.812196 ], [ 83.383004, 51.069183 ], [ 83.935115, 50.889246 ], [ 84.416377, 50.3114 ], [ 85.11556, 50.117303 ], [ 85.54127, 49.692859 ], [ 86.829357, 49.826675 ], [ 87.35997, 49.214981 ], [ 86.598776, 48.549182 ], [ 85.768233, 48.455751 ], [ 85.720484, 47.452969 ], [ 85.16429, 47.000956 ], [ 83.180484, 47.330031 ], [ 82.458926, 45.53965 ], [ 81.947071, 45.317027 ], [ 79.966106, 44.917517 ], [ 80.866206, 43.180362 ], [ 80.18015, 42.920068 ], [ 80.25999, 42.349999 ], [ 79.643645, 42.496683 ], [ 79.142177, 42.856092 ], [ 77.658392, 42.960686 ], [ 76.000354, 42.988022 ], [ 75.636965, 42.8779 ], [ 74.212866, 43.298339 ], [ 73.645304, 43.091272 ], [ 73.489758, 42.500894 ], [ 71.844638, 42.845395 ], [ 71.186281, 42.704293 ], [ 70.962315, 42.266154 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/KEN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"KEN","properties":{"name":"Kenya"},"geometry":{"type":"Polygon","coordinates":[[[40.993,-0.85829],[41.58513,-1.68325],[40.88477,-2.08255],[40.63785,-2.49979],[40.26304,-2.57309],[40.12119,-3.27768],[39.80006,-3.68116],[39.60489,-4.34653],[39.20222,-4.67677],[37.7669,-3.67712],[37.69869,-3.09699],[34.07262,-1.05982],[33.903711,-0.95],[33.893569,0.109814],[34.18,0.515],[34.6721,1.17694],[35.03599,1.90584],[34.59607,3.05374],[34.47913,3.5556],[34.005,4.249885],[34.620196,4.847123],[35.298007,5.506],[35.817448,5.338232],[35.817448,4.776966],[36.159079,4.447864],[36.855093,4.447864],[38.120915,3.598605],[38.43697,3.58851],[38.67114,3.61607],[38.89251,3.50074],[39.559384,3.42206],[39.85494,3.83879],[40.76848,4.25702],[41.1718,3.91909],[41.855083,3.918912],[40.98105,2.78452],[40.993,-0.85829]]]}} ]} ================================================ FILE: test/fixtures/world/KEN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -5.61598582 ], [ 33.75, 0 ], [ 39.375, 0 ], [ 39.375, -5.61598582 ], [ 33.75, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 0 ], [ 33.75, 5.61598582 ], [ 39.375, 5.61598582 ], [ 39.375, 0 ], [ 33.75, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, -5.61598582 ], [ 39.375, 0 ], [ 45, 0 ], [ 45, -5.61598582 ], [ 39.375, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 0 ], [ 39.375, 5.61598582 ], [ 45, 5.61598582 ], [ 45, 0 ], [ 39.375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.993, -0.85829 ], [ 41.58513, -1.68325 ], [ 40.88477, -2.08255 ], [ 40.63785, -2.49979 ], [ 40.26304, -2.57309 ], [ 40.12119, -3.27768 ], [ 39.80006, -3.68116 ], [ 39.60489, -4.34653 ], [ 39.20222, -4.67677 ], [ 37.7669, -3.67712 ], [ 37.69869, -3.09699 ], [ 34.07262, -1.05982 ], [ 33.903711, -0.95 ], [ 33.893569, 0.109814 ], [ 34.18, 0.515 ], [ 34.6721, 1.17694 ], [ 35.03599, 1.90584 ], [ 34.59607, 3.05374 ], [ 34.47913, 3.5556 ], [ 34.005, 4.249885 ], [ 34.620196, 4.847123 ], [ 35.298007, 5.506 ], [ 35.817448, 5.338232 ], [ 35.817448, 4.776966 ], [ 36.159079, 4.447864 ], [ 36.855093, 4.447864 ], [ 38.120915, 3.598605 ], [ 38.43697, 3.58851 ], [ 38.67114, 3.61607 ], [ 38.89251, 3.50074 ], [ 39.559384, 3.42206 ], [ 39.85494, 3.83879 ], [ 40.76848, 4.25702 ], [ 41.1718, 3.91909 ], [ 41.855083, 3.918912 ], [ 40.98105, 2.78452 ], [ 40.993, -0.85829 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/KGZ.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"KGZ","properties":{"name":"Kyrgyzstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[71.186281,42.704293],[71.844638,42.845395],[73.489758,42.500894],[73.645304,43.091272],[74.212866,43.298339],[75.636965,42.8779],[76.000354,42.988022],[77.658392,42.960686],[79.142177,42.856092],[79.643645,42.496683],[80.25999,42.349999],[80.11943,42.123941],[78.543661,41.582243],[78.187197,41.185316],[76.904484,41.066486],[76.526368,40.427946],[75.467828,40.562072],[74.776862,40.366425],[73.822244,39.893973],[73.960013,39.660008],[73.675379,39.431237],[71.784694,39.279463],[70.549162,39.604198],[69.464887,39.526683],[69.55961,40.103211],[70.648019,39.935754],[71.014198,40.244366],[71.774875,40.145844],[73.055417,40.866033],[71.870115,41.3929],[71.157859,41.143587],[70.420022,41.519998],[71.259248,42.167711],[70.962315,42.266154]]]}} ]} ================================================ FILE: test/fixtures/world/KGZ_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 36.59788913 ], [ 67.5, 40.97989807 ], [ 73.125, 40.97989807 ], [ 73.125, 36.59788913 ], [ 67.5, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 40.97989807 ], [ 67.5, 45.08903556 ], [ 73.125, 45.08903556 ], [ 73.125, 40.97989807 ], [ 67.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 36.59788913 ], [ 73.125, 40.97989807 ], [ 78.75, 40.97989807 ], [ 78.75, 36.59788913 ], [ 73.125, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 40.97989807 ], [ 73.125, 45.08903556 ], [ 78.75, 45.08903556 ], [ 78.75, 40.97989807 ], [ 73.125, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 40.97989807 ], [ 78.75, 45.08903556 ], [ 84.375, 45.08903556 ], [ 84.375, 40.97989807 ], [ 78.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.962315, 42.266154 ], [ 71.186281, 42.704293 ], [ 71.844638, 42.845395 ], [ 73.489758, 42.500894 ], [ 73.645304, 43.091272 ], [ 74.212866, 43.298339 ], [ 75.636965, 42.8779 ], [ 76.000354, 42.988022 ], [ 77.658392, 42.960686 ], [ 79.142177, 42.856092 ], [ 79.643645, 42.496683 ], [ 80.25999, 42.349999 ], [ 80.11943, 42.123941 ], [ 78.543661, 41.582243 ], [ 78.187197, 41.185316 ], [ 76.904484, 41.066486 ], [ 76.526368, 40.427946 ], [ 75.467828, 40.562072 ], [ 74.776862, 40.366425 ], [ 73.822244, 39.893973 ], [ 73.960013, 39.660008 ], [ 73.675379, 39.431237 ], [ 71.784694, 39.279463 ], [ 70.549162, 39.604198 ], [ 69.464887, 39.526683 ], [ 69.55961, 40.103211 ], [ 70.648019, 39.935754 ], [ 71.014198, 40.244366 ], [ 71.774875, 40.145844 ], [ 73.055417, 40.866033 ], [ 71.870115, 41.3929 ], [ 71.157859, 41.143587 ], [ 70.420022, 41.519998 ], [ 71.259248, 42.167711 ], [ 70.962315, 42.266154 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/KHM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"KHM","properties":{"name":"Cambodia"},"geometry":{"type":"Polygon","coordinates":[[[103.49728,10.632555],[103.09069,11.153661],[102.584932,12.186595],[102.348099,13.394247],[102.988422,14.225721],[104.281418,14.416743],[105.218777,14.273212],[106.043946,13.881091],[106.496373,14.570584],[107.382727,14.202441],[107.614548,13.535531],[107.491403,12.337206],[105.810524,11.567615],[106.24967,10.961812],[105.199915,10.88931],[104.334335,10.486544],[103.49728,10.632555]]]}} ]} ================================================ FILE: test/fixtures/world/KHM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 11.17840187 ], [ 101.25, 16.63619188 ], [ 106.875, 16.63619188 ], [ 106.875, 11.17840187 ], [ 101.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 5.61598582 ], [ 101.25, 11.17840187 ], [ 106.875, 11.17840187 ], [ 106.875, 5.61598582 ], [ 101.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 11.17840187 ], [ 106.875, 16.63619188 ], [ 112.5, 16.63619188 ], [ 112.5, 11.17840187 ], [ 106.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.49728, 10.632555 ], [ 103.09069, 11.153661 ], [ 102.584932, 12.186595 ], [ 102.348099, 13.394247 ], [ 102.988422, 14.225721 ], [ 104.281418, 14.416743 ], [ 105.218777, 14.273212 ], [ 106.043946, 13.881091 ], [ 106.496373, 14.570584 ], [ 107.382727, 14.202441 ], [ 107.614548, 13.535531 ], [ 107.491403, 12.337206 ], [ 105.810524, 11.567615 ], [ 106.24967, 10.961812 ], [ 105.199915, 10.88931 ], [ 104.334335, 10.486544 ], [ 103.49728, 10.632555 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/KOR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"KOR","properties":{"name":"South Korea"},"geometry":{"type":"Polygon","coordinates":[[[128.349716,38.612243],[129.21292,37.432392],[129.46045,36.784189],[129.468304,35.632141],[129.091377,35.082484],[128.18585,34.890377],[127.386519,34.475674],[126.485748,34.390046],[126.37392,34.93456],[126.559231,35.684541],[126.117398,36.725485],[126.860143,36.893924],[126.174759,37.749686],[126.237339,37.840378],[126.68372,37.804773],[127.073309,38.256115],[127.780035,38.304536],[128.205746,38.370397],[128.349716,38.612243]]]}} ]} ================================================ FILE: test/fixtures/world/KOR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 31.95216224 ], [ 123.75, 40.97989807 ], [ 135, 40.97989807 ], [ 135, 31.95216224 ], [ 123.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.349716, 38.612243 ], [ 129.21292, 37.432392 ], [ 129.46045, 36.784189 ], [ 129.468304, 35.632141 ], [ 129.091377, 35.082484 ], [ 128.18585, 34.890377 ], [ 127.386519, 34.475674 ], [ 126.485748, 34.390046 ], [ 126.37392, 34.93456 ], [ 126.559231, 35.684541 ], [ 126.117398, 36.725485 ], [ 126.860143, 36.893924 ], [ 126.174759, 37.749686 ], [ 126.237339, 37.840378 ], [ 126.68372, 37.804773 ], [ 127.073309, 38.256115 ], [ 127.780035, 38.304536 ], [ 128.205746, 38.370397 ], [ 128.349716, 38.612243 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/KWT.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"KWT","properties":{"name":"Kuwait"},"geometry":{"type":"Polygon","coordinates":[[[47.974519,29.975819],[48.183189,29.534477],[48.093943,29.306299],[48.416094,28.552004],[47.708851,28.526063],[47.459822,29.002519],[46.568713,29.099025],[47.302622,30.05907],[47.974519,29.975819]]]}} ]} ================================================ FILE: test/fixtures/world/KWT_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 27.05912578 ], [ 45, 31.95216224 ], [ 50.625, 31.95216224 ], [ 50.625, 27.05912578 ], [ 45, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.974519, 29.975819 ], [ 48.183189, 29.534477 ], [ 48.093943, 29.306299 ], [ 48.416094, 28.552004 ], [ 47.708851, 28.526063 ], [ 47.459822, 29.002519 ], [ 46.568713, 29.099025 ], [ 47.302622, 30.05907 ], [ 47.974519, 29.975819 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/LAO.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"LAO","properties":{"name":"Laos"},"geometry":{"type":"Polygon","coordinates":[[[105.218777,14.273212],[105.544338,14.723934],[105.589039,15.570316],[104.779321,16.441865],[104.716947,17.428859],[103.956477,18.240954],[103.200192,18.309632],[102.998706,17.961695],[102.413005,17.932782],[102.113592,18.109102],[101.059548,17.512497],[101.035931,18.408928],[101.282015,19.462585],[100.606294,19.508344],[100.548881,20.109238],[100.115988,20.41785],[100.329101,20.786122],[101.180005,21.436573],[101.270026,21.201652],[101.80312,21.174367],[101.652018,22.318199],[102.170436,22.464753],[102.754896,21.675137],[103.203861,20.766562],[104.435,20.758733],[104.822574,19.886642],[104.183388,19.624668],[103.896532,19.265181],[105.094598,18.666975],[105.925762,17.485315],[106.556008,16.604284],[107.312706,15.908538],[107.564525,15.202173],[107.382727,14.202441],[106.496373,14.570584],[106.043946,13.881091],[105.218777,14.273212]]]}} ]} ================================================ FILE: test/fixtures/world/LAO_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 11.17840187 ], [ 101.25, 16.63619188 ], [ 106.875, 16.63619188 ], [ 106.875, 11.17840187 ], [ 101.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 16.63619188 ], [ 101.25, 21.94304553 ], [ 106.875, 21.94304553 ], [ 106.875, 16.63619188 ], [ 101.25, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 21.94304553 ], [ 101.25, 27.05912578 ], [ 106.875, 27.05912578 ], [ 106.875, 21.94304553 ], [ 101.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 11.17840187 ], [ 106.875, 16.63619188 ], [ 112.5, 16.63619188 ], [ 112.5, 11.17840187 ], [ 106.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 16.63619188 ], [ 95.625, 21.94304553 ], [ 101.25, 21.94304553 ], [ 101.25, 16.63619188 ], [ 95.625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.218777, 14.273212 ], [ 105.544338, 14.723934 ], [ 105.589039, 15.570316 ], [ 104.779321, 16.441865 ], [ 104.716947, 17.428859 ], [ 103.956477, 18.240954 ], [ 103.200192, 18.309632 ], [ 102.998706, 17.961695 ], [ 102.413005, 17.932782 ], [ 102.113592, 18.109102 ], [ 101.059548, 17.512497 ], [ 101.035931, 18.408928 ], [ 101.282015, 19.462585 ], [ 100.606294, 19.508344 ], [ 100.548881, 20.109238 ], [ 100.115988, 20.41785 ], [ 100.329101, 20.786122 ], [ 101.180005, 21.436573 ], [ 101.270026, 21.201652 ], [ 101.80312, 21.174367 ], [ 101.652018, 22.318199 ], [ 102.170436, 22.464753 ], [ 102.754896, 21.675137 ], [ 103.203861, 20.766562 ], [ 104.435, 20.758733 ], [ 104.822574, 19.886642 ], [ 104.183388, 19.624668 ], [ 103.896532, 19.265181 ], [ 105.094598, 18.666975 ], [ 105.925762, 17.485315 ], [ 106.556008, 16.604284 ], [ 107.312706, 15.908538 ], [ 107.564525, 15.202173 ], [ 107.382727, 14.202441 ], [ 106.496373, 14.570584 ], [ 106.043946, 13.881091 ], [ 105.218777, 14.273212 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/LBN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"LBN","properties":{"name":"Lebanon"},"geometry":{"type":"Polygon","coordinates":[[[35.821101,33.277426],[35.552797,33.264275],[35.460709,33.08904],[35.126053,33.0909],[35.482207,33.90545],[35.979592,34.610058],[35.998403,34.644914],[36.448194,34.593935],[36.61175,34.201789],[36.06646,33.824912],[35.821101,33.277426]]]}} ]} ================================================ FILE: test/fixtures/world/LBN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 31.95216224 ], [ 33.75, 36.59788913 ], [ 39.375, 36.59788913 ], [ 39.375, 31.95216224 ], [ 33.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.821101, 33.277426 ], [ 35.552797, 33.264275 ], [ 35.460709, 33.08904 ], [ 35.126053, 33.0909 ], [ 35.482207, 33.90545 ], [ 35.979592, 34.610058 ], [ 35.998403, 34.644914 ], [ 36.448194, 34.593935 ], [ 36.61175, 34.201789 ], [ 36.06646, 33.824912 ], [ 35.821101, 33.277426 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/LBR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"LBR","properties":{"name":"Liberia"},"geometry":{"type":"Polygon","coordinates":[[[-7.712159,4.364566],[-7.974107,4.355755],[-9.004794,4.832419],[-9.91342,5.593561],[-10.765384,6.140711],[-11.438779,6.785917],[-11.199802,7.105846],[-11.146704,7.396706],[-10.695595,7.939464],[-10.230094,8.406206],[-10.016567,8.428504],[-9.755342,8.541055],[-9.33728,7.928534],[-9.403348,7.526905],[-9.208786,7.313921],[-8.926065,7.309037],[-8.722124,7.711674],[-8.439298,7.686043],[-8.485446,7.395208],[-8.385452,6.911801],[-8.60288,6.467564],[-8.311348,6.193033],[-7.993693,6.12619],[-7.570153,5.707352],[-7.539715,5.313345],[-7.635368,5.188159],[-7.712159,4.364566]]]}} ]} ================================================ FILE: test/fixtures/world/LBR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 0 ], [ -11.25, 5.61598582 ], [ -5.625, 5.61598582 ], [ -5.625, 0 ], [ -11.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 5.61598582 ], [ -11.25, 11.17840187 ], [ -5.625, 11.17840187 ], [ -5.625, 5.61598582 ], [ -11.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 5.61598582 ], [ -16.875, 11.17840187 ], [ -11.25, 11.17840187 ], [ -11.25, 5.61598582 ], [ -16.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.712159, 4.364566 ], [ -7.974107, 4.355755 ], [ -9.004794, 4.832419 ], [ -9.91342, 5.593561 ], [ -10.765384, 6.140711 ], [ -11.438779, 6.785917 ], [ -11.199802, 7.105846 ], [ -11.146704, 7.396706 ], [ -10.695595, 7.939464 ], [ -10.230094, 8.406206 ], [ -10.016567, 8.428504 ], [ -9.755342, 8.541055 ], [ -9.33728, 7.928534 ], [ -9.403348, 7.526905 ], [ -9.208786, 7.313921 ], [ -8.926065, 7.309037 ], [ -8.722124, 7.711674 ], [ -8.439298, 7.686043 ], [ -8.485446, 7.395208 ], [ -8.385452, 6.911801 ], [ -8.60288, 6.467564 ], [ -8.311348, 6.193033 ], [ -7.993693, 6.12619 ], [ -7.570153, 5.707352 ], [ -7.539715, 5.313345 ], [ -7.635368, 5.188159 ], [ -7.712159, 4.364566 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/LBY.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"LBY","properties":{"name":"Libya"},"geometry":{"type":"Polygon","coordinates":[[[14.8513,22.86295],[14.143871,22.491289],[13.581425,23.040506],[11.999506,23.471668],[11.560669,24.097909],[10.771364,24.562532],[10.303847,24.379313],[9.948261,24.936954],[9.910693,25.365455],[9.319411,26.094325],[9.716286,26.512206],[9.629056,27.140953],[9.756128,27.688259],[9.683885,28.144174],[9.859998,28.95999],[9.805634,29.424638],[9.48214,30.307556],[9.970017,30.539325],[10.056575,30.961831],[9.950225,31.37607],[10.636901,31.761421],[10.94479,32.081815],[11.432253,32.368903],[11.488787,33.136996],[12.66331,32.79278],[13.08326,32.87882],[13.91868,32.71196],[15.24563,32.26508],[15.71394,31.37626],[16.61162,31.18218],[18.02109,30.76357],[19.08641,30.26639],[19.57404,30.52582],[20.05335,30.98576],[19.82033,31.75179],[20.13397,32.2382],[20.85452,32.7068],[21.54298,32.8432],[22.89576,32.63858],[23.2368,32.19149],[23.60913,32.18726],[23.9275,32.01667],[24.92114,31.89936],[25.16482,31.56915],[24.80287,31.08929],[24.95762,30.6616],[24.70007,30.04419],[25,29.238655],[25,25.6825],[25,22],[25,20.00304],[23.85,20],[23.83766,19.58047],[19.84926,21.49509],[15.86085,23.40972],[14.8513,22.86295]]]}} ]} ================================================ FILE: test/fixtures/world/LBY_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 21.94304553 ], [ 11.25, 31.95216224 ], [ 22.5, 31.95216224 ], [ 22.5, 21.94304553 ], [ 11.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 31.95216224 ], [ 11.25, 36.59788913 ], [ 16.875, 36.59788913 ], [ 16.875, 31.95216224 ], [ 11.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 16.63619188 ], [ 16.875, 21.94304553 ], [ 22.5, 21.94304553 ], [ 22.5, 16.63619188 ], [ 16.875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 31.95216224 ], [ 16.875, 36.59788913 ], [ 22.5, 36.59788913 ], [ 22.5, 31.95216224 ], [ 16.875, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.63619188 ], [ 22.5, 21.94304553 ], [ 28.125, 21.94304553 ], [ 28.125, 16.63619188 ], [ 22.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 21.94304553 ], [ 22.5, 27.05912578 ], [ 28.125, 27.05912578 ], [ 28.125, 21.94304553 ], [ 22.5, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 27.05912578 ], [ 22.5, 31.95216224 ], [ 28.125, 31.95216224 ], [ 28.125, 27.05912578 ], [ 22.5, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 31.95216224 ], [ 22.5, 36.59788913 ], [ 28.125, 36.59788913 ], [ 28.125, 31.95216224 ], [ 22.5, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 21.94304553 ], [ 5.625, 27.05912578 ], [ 11.25, 27.05912578 ], [ 11.25, 21.94304553 ], [ 5.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 27.05912578 ], [ 5.625, 31.95216224 ], [ 11.25, 31.95216224 ], [ 11.25, 27.05912578 ], [ 5.625, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 31.95216224 ], [ 5.625, 36.59788913 ], [ 11.25, 36.59788913 ], [ 11.25, 31.95216224 ], [ 5.625, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.8513, 22.86295 ], [ 14.143871, 22.491289 ], [ 13.581425, 23.040506 ], [ 11.999506, 23.471668 ], [ 11.560669, 24.097909 ], [ 10.771364, 24.562532 ], [ 10.303847, 24.379313 ], [ 9.948261, 24.936954 ], [ 9.910693, 25.365455 ], [ 9.319411, 26.094325 ], [ 9.716286, 26.512206 ], [ 9.629056, 27.140953 ], [ 9.756128, 27.688259 ], [ 9.683885, 28.144174 ], [ 9.859998, 28.95999 ], [ 9.805634, 29.424638 ], [ 9.48214, 30.307556 ], [ 9.970017, 30.539325 ], [ 10.056575, 30.961831 ], [ 9.950225, 31.37607 ], [ 10.636901, 31.761421 ], [ 10.94479, 32.081815 ], [ 11.432253, 32.368903 ], [ 11.488787, 33.136996 ], [ 12.66331, 32.79278 ], [ 13.08326, 32.87882 ], [ 13.91868, 32.71196 ], [ 15.24563, 32.26508 ], [ 15.71394, 31.37626 ], [ 16.61162, 31.18218 ], [ 18.02109, 30.76357 ], [ 19.08641, 30.26639 ], [ 19.57404, 30.52582 ], [ 20.05335, 30.98576 ], [ 19.82033, 31.75179 ], [ 20.13397, 32.2382 ], [ 20.85452, 32.7068 ], [ 21.54298, 32.8432 ], [ 22.89576, 32.63858 ], [ 23.2368, 32.19149 ], [ 23.60913, 32.18726 ], [ 23.9275, 32.01667 ], [ 24.92114, 31.89936 ], [ 25.16482, 31.56915 ], [ 24.80287, 31.08929 ], [ 24.95762, 30.6616 ], [ 24.70007, 30.04419 ], [ 25, 29.238655 ], [ 25, 25.6825 ], [ 25, 22 ], [ 25, 20.00304 ], [ 23.85, 20 ], [ 23.83766, 19.58047 ], [ 19.84926, 21.49509 ], [ 15.86085, 23.40972 ], [ 14.8513, 22.86295 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/LKA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"LKA","properties":{"name":"Sri Lanka"},"geometry":{"type":"Polygon","coordinates":[[[81.787959,7.523055],[81.637322,6.481775],[81.21802,6.197141],[80.348357,5.96837],[79.872469,6.763463],[79.695167,8.200843],[80.147801,9.824078],[80.838818,9.268427],[81.304319,8.564206],[81.787959,7.523055]]]}} ]} ================================================ FILE: test/fixtures/world/LKA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 5.61598582 ], [ 78.75, 11.17840187 ], [ 84.375, 11.17840187 ], [ 84.375, 5.61598582 ], [ 78.75, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.787959, 7.523055 ], [ 81.637322, 6.481775 ], [ 81.21802, 6.197141 ], [ 80.348357, 5.96837 ], [ 79.872469, 6.763463 ], [ 79.695167, 8.200843 ], [ 80.147801, 9.824078 ], [ 80.838818, 9.268427 ], [ 81.304319, 8.564206 ], [ 81.787959, 7.523055 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/LSO.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"LSO","properties":{"name":"Lesotho"},"geometry":{"type":"Polygon","coordinates":[[[28.978263,-28.955597],[29.325166,-29.257387],[29.018415,-29.743766],[28.8484,-30.070051],[28.291069,-30.226217],[28.107205,-30.545732],[27.749397,-30.645106],[26.999262,-29.875954],[27.532511,-29.242711],[28.074338,-28.851469],[28.5417,-28.647502],[28.978263,-28.955597]]]}} ]} ================================================ FILE: test/fixtures/world/LSO_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -31.95216224 ], [ 22.5, -27.05912578 ], [ 28.125, -27.05912578 ], [ 28.125, -31.95216224 ], [ 22.5, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -31.95216224 ], [ 28.125, -27.05912578 ], [ 33.75, -27.05912578 ], [ 33.75, -31.95216224 ], [ 28.125, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.978263, -28.955597 ], [ 29.325166, -29.257387 ], [ 29.018415, -29.743766 ], [ 28.8484, -30.070051 ], [ 28.291069, -30.226217 ], [ 28.107205, -30.545732 ], [ 27.749397, -30.645106 ], [ 26.999262, -29.875954 ], [ 27.532511, -29.242711 ], [ 28.074338, -28.851469 ], [ 28.5417, -28.647502 ], [ 28.978263, -28.955597 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/LTU.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"LTU","properties":{"name":"Lithuania"},"geometry":{"type":"Polygon","coordinates":[[[22.731099,54.327537],[22.651052,54.582741],[22.757764,54.856574],[22.315724,55.015299],[21.268449,55.190482],[21.0558,56.031076],[22.201157,56.337802],[23.878264,56.273671],[24.860684,56.372528],[25.000934,56.164531],[25.533047,56.100297],[26.494331,55.615107],[26.588279,55.167176],[25.768433,54.846963],[25.536354,54.282423],[24.450684,53.905702],[23.484128,53.912498],[23.243987,54.220567],[22.731099,54.327537]]]}} ]} ================================================ FILE: test/fixtures/world/LTU_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 52.48278022 ], [ 16.875, 55.77657302 ], [ 22.5, 55.77657302 ], [ 22.5, 52.48278022 ], [ 16.875, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 55.77657302 ], [ 16.875, 58.81374172 ], [ 22.5, 58.81374172 ], [ 22.5, 55.77657302 ], [ 16.875, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 52.48278022 ], [ 22.5, 55.77657302 ], [ 28.125, 55.77657302 ], [ 28.125, 52.48278022 ], [ 22.5, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 55.77657302 ], [ 22.5, 58.81374172 ], [ 28.125, 58.81374172 ], [ 28.125, 55.77657302 ], [ 22.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.731099, 54.327537 ], [ 22.651052, 54.582741 ], [ 22.757764, 54.856574 ], [ 22.315724, 55.015299 ], [ 21.268449, 55.190482 ], [ 21.0558, 56.031076 ], [ 22.201157, 56.337802 ], [ 23.878264, 56.273671 ], [ 24.860684, 56.372528 ], [ 25.000934, 56.164531 ], [ 25.533047, 56.100297 ], [ 26.494331, 55.615107 ], [ 26.588279, 55.167176 ], [ 25.768433, 54.846963 ], [ 25.536354, 54.282423 ], [ 24.450684, 53.905702 ], [ 23.484128, 53.912498 ], [ 23.243987, 54.220567 ], [ 22.731099, 54.327537 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/LUX.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"LUX","properties":{"name":"Luxembourg"},"geometry":{"type":"Polygon","coordinates":[[[6.043073,50.128052],[6.242751,49.902226],[6.18632,49.463803],[5.897759,49.442667],[5.674052,49.529484],[5.782417,50.090328],[6.043073,50.128052]]]}} ]} ================================================ FILE: test/fixtures/world/LUX_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 48.92249926 ], [ 5.625, 52.48278022 ], [ 11.25, 52.48278022 ], [ 11.25, 48.92249926 ], [ 5.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.043073, 50.128052 ], [ 6.242751, 49.902226 ], [ 6.18632, 49.463803 ], [ 5.897759, 49.442667 ], [ 5.674052, 49.529484 ], [ 5.782417, 50.090328 ], [ 6.043073, 50.128052 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/LVA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"LVA","properties":{"name":"Latvia"},"geometry":{"type":"Polygon","coordinates":[[[21.0558,56.031076],[21.090424,56.783873],[21.581866,57.411871],[22.524341,57.753374],[23.318453,57.006236],[24.12073,57.025693],[24.312863,57.793424],[25.164594,57.970157],[25.60281,57.847529],[26.463532,57.476389],[27.288185,57.474528],[27.770016,57.244258],[27.855282,56.759326],[28.176709,56.16913],[27.10246,55.783314],[26.494331,55.615107],[25.533047,56.100297],[25.000934,56.164531],[24.860684,56.372528],[23.878264,56.273671],[22.201157,56.337802],[21.0558,56.031076]]]}} ]} ================================================ FILE: test/fixtures/world/LVA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 55.77657302 ], [ 16.875, 58.81374172 ], [ 22.5, 58.81374172 ], [ 22.5, 55.77657302 ], [ 16.875, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 52.48278022 ], [ 22.5, 55.77657302 ], [ 28.125, 55.77657302 ], [ 28.125, 52.48278022 ], [ 22.5, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 55.77657302 ], [ 22.5, 58.81374172 ], [ 28.125, 58.81374172 ], [ 28.125, 55.77657302 ], [ 22.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 55.77657302 ], [ 28.125, 58.81374172 ], [ 33.75, 58.81374172 ], [ 33.75, 55.77657302 ], [ 28.125, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0558, 56.031076 ], [ 21.090424, 56.783873 ], [ 21.581866, 57.411871 ], [ 22.524341, 57.753374 ], [ 23.318453, 57.006236 ], [ 24.12073, 57.025693 ], [ 24.312863, 57.793424 ], [ 25.164594, 57.970157 ], [ 25.60281, 57.847529 ], [ 26.463532, 57.476389 ], [ 27.288185, 57.474528 ], [ 27.770016, 57.244258 ], [ 27.855282, 56.759326 ], [ 28.176709, 56.16913 ], [ 27.10246, 55.783314 ], [ 26.494331, 55.615107 ], [ 25.533047, 56.100297 ], [ 25.000934, 56.164531 ], [ 24.860684, 56.372528 ], [ 23.878264, 56.273671 ], [ 22.201157, 56.337802 ], [ 21.0558, 56.031076 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MAR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MAR","properties":{"name":"Morocco"},"geometry":{"type":"Polygon","coordinates":[[[-5.193863,35.755182],[-4.591006,35.330712],[-3.640057,35.399855],[-2.604306,35.179093],[-2.169914,35.168396],[-1.792986,34.527919],[-1.733455,33.919713],[-1.388049,32.864015],[-1.124551,32.651522],[-1.307899,32.262889],[-2.616605,32.094346],[-3.06898,31.724498],[-3.647498,31.637294],[-3.690441,30.896952],[-4.859646,30.501188],[-5.242129,30.000443],[-6.060632,29.7317],[-7.059228,29.579228],[-8.674116,28.841289],[-8.66559,27.656426],[-8.817809,27.656426],[-8.817828,27.656426],[-8.794884,27.120696],[-9.413037,27.088476],[-9.735343,26.860945],[-10.189424,26.860945],[-10.551263,26.990808],[-11.392555,26.883424],[-11.71822,26.104092],[-12.030759,26.030866],[-12.500963,24.770116],[-13.89111,23.691009],[-14.221168,22.310163],[-14.630833,21.86094],[-14.750955,21.5006],[-17.002962,21.420734],[-17.020428,21.42231],[-16.973248,21.885745],[-16.589137,22.158234],[-16.261922,22.67934],[-16.326414,23.017768],[-15.982611,23.723358],[-15.426004,24.359134],[-15.089332,24.520261],[-14.824645,25.103533],[-14.800926,25.636265],[-14.43994,26.254418],[-13.773805,26.618892],[-13.139942,27.640148],[-13.121613,27.654148],[-12.618837,28.038186],[-11.688919,28.148644],[-10.900957,28.832142],[-10.399592,29.098586],[-9.564811,29.933574],[-9.814718,31.177736],[-9.434793,32.038096],[-9.300693,32.564679],[-8.657476,33.240245],[-7.654178,33.697065],[-6.912544,34.110476],[-6.244342,35.145865],[-5.929994,35.759988],[-5.193863,35.755182]]]}} ]} ================================================ FILE: test/fixtures/world/MAR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 21.94304553 ], [ -11.25, 27.05912578 ], [ -5.625, 27.05912578 ], [ -5.625, 21.94304553 ], [ -11.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 27.05912578 ], [ -11.25, 31.95216224 ], [ -5.625, 31.95216224 ], [ -5.625, 27.05912578 ], [ -11.25, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 31.95216224 ], [ -11.25, 36.59788913 ], [ -5.625, 36.59788913 ], [ -5.625, 31.95216224 ], [ -11.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 16.63619188 ], [ -16.875, 21.94304553 ], [ -11.25, 21.94304553 ], [ -11.25, 16.63619188 ], [ -16.875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 21.94304553 ], [ -16.875, 27.05912578 ], [ -11.25, 27.05912578 ], [ -11.25, 21.94304553 ], [ -16.875, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 27.05912578 ], [ -16.875, 31.95216224 ], [ -11.25, 31.95216224 ], [ -11.25, 27.05912578 ], [ -16.875, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 16.63619188 ], [ -22.5, 21.94304553 ], [ -16.875, 21.94304553 ], [ -16.875, 16.63619188 ], [ -22.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 21.94304553 ], [ -22.5, 27.05912578 ], [ -16.875, 27.05912578 ], [ -16.875, 21.94304553 ], [ -22.5, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 27.05912578 ], [ -5.625, 31.95216224 ], [ 0, 31.95216224 ], [ 0, 27.05912578 ], [ -5.625, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 31.95216224 ], [ -5.625, 36.59788913 ], [ 0, 36.59788913 ], [ 0, 31.95216224 ], [ -5.625, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.193863, 35.755182 ], [ -4.591006, 35.330712 ], [ -3.640057, 35.399855 ], [ -2.604306, 35.179093 ], [ -2.169914, 35.168396 ], [ -1.792986, 34.527919 ], [ -1.733455, 33.919713 ], [ -1.388049, 32.864015 ], [ -1.124551, 32.651522 ], [ -1.307899, 32.262889 ], [ -2.616605, 32.094346 ], [ -3.06898, 31.724498 ], [ -3.647498, 31.637294 ], [ -3.690441, 30.896952 ], [ -4.859646, 30.501188 ], [ -5.242129, 30.000443 ], [ -6.060632, 29.7317 ], [ -7.059228, 29.579228 ], [ -8.674116, 28.841289 ], [ -8.66559, 27.656426 ], [ -8.817809, 27.656426 ], [ -8.817828, 27.656426 ], [ -8.794884, 27.120696 ], [ -9.413037, 27.088476 ], [ -9.735343, 26.860945 ], [ -10.189424, 26.860945 ], [ -10.551263, 26.990808 ], [ -11.392555, 26.883424 ], [ -11.71822, 26.104092 ], [ -12.030759, 26.030866 ], [ -12.500963, 24.770116 ], [ -13.89111, 23.691009 ], [ -14.221168, 22.310163 ], [ -14.630833, 21.86094 ], [ -14.750955, 21.5006 ], [ -17.002962, 21.420734 ], [ -17.020428, 21.42231 ], [ -16.973248, 21.885745 ], [ -16.589137, 22.158234 ], [ -16.261922, 22.67934 ], [ -16.326414, 23.017768 ], [ -15.982611, 23.723358 ], [ -15.426004, 24.359134 ], [ -15.089332, 24.520261 ], [ -14.824645, 25.103533 ], [ -14.800926, 25.636265 ], [ -14.43994, 26.254418 ], [ -13.773805, 26.618892 ], [ -13.139942, 27.640148 ], [ -13.121613, 27.654148 ], [ -12.618837, 28.038186 ], [ -11.688919, 28.148644 ], [ -10.900957, 28.832142 ], [ -10.399592, 29.098586 ], [ -9.564811, 29.933574 ], [ -9.814718, 31.177736 ], [ -9.434793, 32.038096 ], [ -9.300693, 32.564679 ], [ -8.657476, 33.240245 ], [ -7.654178, 33.697065 ], [ -6.912544, 34.110476 ], [ -6.244342, 35.145865 ], [ -5.929994, 35.759988 ], [ -5.193863, 35.755182 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MDA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MDA","properties":{"name":"Moldova"},"geometry":{"type":"Polygon","coordinates":[[[26.619337,48.220726],[26.857824,48.368211],[27.522537,48.467119],[28.259547,48.155562],[28.670891,48.118149],[29.122698,47.849095],[29.050868,47.510227],[29.415135,47.346645],[29.559674,46.928583],[29.908852,46.674361],[29.83821,46.525326],[30.024659,46.423937],[29.759972,46.349988],[29.170654,46.379262],[29.072107,46.517678],[28.862972,46.437889],[28.933717,46.25883],[28.659987,45.939987],[28.485269,45.596907],[28.233554,45.488283],[28.054443,45.944586],[28.160018,46.371563],[28.12803,46.810476],[27.551166,47.405117],[27.233873,47.826771],[26.924176,48.123264],[26.619337,48.220726]]]}} ]} ================================================ FILE: test/fixtures/world/MDA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 45.08903556 ], [ 22.5, 48.92249926 ], [ 28.125, 48.92249926 ], [ 28.125, 45.08903556 ], [ 22.5, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 45.08903556 ], [ 28.125, 48.92249926 ], [ 33.75, 48.92249926 ], [ 33.75, 45.08903556 ], [ 28.125, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619337, 48.220726 ], [ 26.857824, 48.368211 ], [ 27.522537, 48.467119 ], [ 28.259547, 48.155562 ], [ 28.670891, 48.118149 ], [ 29.122698, 47.849095 ], [ 29.050868, 47.510227 ], [ 29.415135, 47.346645 ], [ 29.559674, 46.928583 ], [ 29.908852, 46.674361 ], [ 29.83821, 46.525326 ], [ 30.024659, 46.423937 ], [ 29.759972, 46.349988 ], [ 29.170654, 46.379262 ], [ 29.072107, 46.517678 ], [ 28.862972, 46.437889 ], [ 28.933717, 46.25883 ], [ 28.659987, 45.939987 ], [ 28.485269, 45.596907 ], [ 28.233554, 45.488283 ], [ 28.054443, 45.944586 ], [ 28.160018, 46.371563 ], [ 28.12803, 46.810476 ], [ 27.551166, 47.405117 ], [ 27.233873, 47.826771 ], [ 26.924176, 48.123264 ], [ 26.619337, 48.220726 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MDG.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MDG","properties":{"name":"Madagascar"},"geometry":{"type":"Polygon","coordinates":[[[49.543519,-12.469833],[49.808981,-12.895285],[50.056511,-13.555761],[50.217431,-14.758789],[50.476537,-15.226512],[50.377111,-15.706069],[50.200275,-16.000263],[49.860606,-15.414253],[49.672607,-15.710204],[49.863344,-16.451037],[49.774564,-16.875042],[49.498612,-17.106036],[49.435619,-17.953064],[49.041792,-19.118781],[48.548541,-20.496888],[47.930749,-22.391501],[47.547723,-23.781959],[47.095761,-24.94163],[46.282478,-25.178463],[45.409508,-25.601434],[44.833574,-25.346101],[44.03972,-24.988345],[43.763768,-24.460677],[43.697778,-23.574116],[43.345654,-22.776904],[43.254187,-22.057413],[43.433298,-21.336475],[43.893683,-21.163307],[43.89637,-20.830459],[44.374325,-20.072366],[44.464397,-19.435454],[44.232422,-18.961995],[44.042976,-18.331387],[43.963084,-17.409945],[44.312469,-16.850496],[44.446517,-16.216219],[44.944937,-16.179374],[45.502732,-15.974373],[45.872994,-15.793454],[46.312243,-15.780018],[46.882183,-15.210182],[47.70513,-14.594303],[48.005215,-14.091233],[47.869047,-13.663869],[48.293828,-13.784068],[48.84506,-13.089175],[48.863509,-12.487868],[49.194651,-12.040557],[49.543519,-12.469833]]]}} ]} ================================================ FILE: test/fixtures/world/MDG_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, -16.63619188 ], [ 39.375, -11.17840187 ], [ 45, -11.17840187 ], [ 45, -16.63619188 ], [ 39.375, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, -21.94304553 ], [ 39.375, -16.63619188 ], [ 45, -16.63619188 ], [ 45, -21.94304553 ], [ 39.375, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, -27.05912578 ], [ 39.375, -21.94304553 ], [ 45, -21.94304553 ], [ 45, -27.05912578 ], [ 39.375, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, -16.63619188 ], [ 45, -11.17840187 ], [ 50.625, -11.17840187 ], [ 50.625, -16.63619188 ], [ 45, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, -21.94304553 ], [ 45, -16.63619188 ], [ 50.625, -16.63619188 ], [ 50.625, -21.94304553 ], [ 45, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, -27.05912578 ], [ 45, -21.94304553 ], [ 50.625, -21.94304553 ], [ 50.625, -27.05912578 ], [ 45, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.543519, -12.469833 ], [ 49.808981, -12.895285 ], [ 50.056511, -13.555761 ], [ 50.217431, -14.758789 ], [ 50.476537, -15.226512 ], [ 50.377111, -15.706069 ], [ 50.200275, -16.000263 ], [ 49.860606, -15.414253 ], [ 49.672607, -15.710204 ], [ 49.863344, -16.451037 ], [ 49.774564, -16.875042 ], [ 49.498612, -17.106036 ], [ 49.435619, -17.953064 ], [ 49.041792, -19.118781 ], [ 48.548541, -20.496888 ], [ 47.930749, -22.391501 ], [ 47.547723, -23.781959 ], [ 47.095761, -24.94163 ], [ 46.282478, -25.178463 ], [ 45.409508, -25.601434 ], [ 44.833574, -25.346101 ], [ 44.03972, -24.988345 ], [ 43.763768, -24.460677 ], [ 43.697778, -23.574116 ], [ 43.345654, -22.776904 ], [ 43.254187, -22.057413 ], [ 43.433298, -21.336475 ], [ 43.893683, -21.163307 ], [ 43.89637, -20.830459 ], [ 44.374325, -20.072366 ], [ 44.464397, -19.435454 ], [ 44.232422, -18.961995 ], [ 44.042976, -18.331387 ], [ 43.963084, -17.409945 ], [ 44.312469, -16.850496 ], [ 44.446517, -16.216219 ], [ 44.944937, -16.179374 ], [ 45.502732, -15.974373 ], [ 45.872994, -15.793454 ], [ 46.312243, -15.780018 ], [ 46.882183, -15.210182 ], [ 47.70513, -14.594303 ], [ 48.005215, -14.091233 ], [ 47.869047, -13.663869 ], [ 48.293828, -13.784068 ], [ 48.84506, -13.089175 ], [ 48.863509, -12.487868 ], [ 49.194651, -12.040557 ], [ 49.543519, -12.469833 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MEX.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MEX","properties":{"name":"Mexico"},"geometry":{"type":"Polygon","coordinates":[[[-97.140008,25.869997],[-97.528072,24.992144],[-97.702946,24.272343],[-97.776042,22.93258],[-97.872367,22.444212],[-97.699044,21.898689],[-97.38896,21.411019],[-97.189333,20.635433],[-96.525576,19.890931],[-96.292127,19.320371],[-95.900885,18.828024],[-94.839063,18.562717],[-94.42573,18.144371],[-93.548651,18.423837],[-92.786114,18.524839],[-92.037348,18.704569],[-91.407903,18.876083],[-90.77187,19.28412],[-90.53359,19.867418],[-90.451476,20.707522],[-90.278618,20.999855],[-89.601321,21.261726],[-88.543866,21.493675],[-87.658417,21.458846],[-87.05189,21.543543],[-86.811982,21.331515],[-86.845908,20.849865],[-87.383291,20.255405],[-87.621054,19.646553],[-87.43675,19.472403],[-87.58656,19.04013],[-87.837191,18.259816],[-88.090664,18.516648],[-88.300031,18.499982],[-88.490123,18.486831],[-88.848344,17.883198],[-89.029857,18.001511],[-89.150909,17.955468],[-89.14308,17.808319],[-90.067934,17.819326],[-91.00152,17.817595],[-91.002269,17.254658],[-91.453921,17.252177],[-91.08167,16.918477],[-90.711822,16.687483],[-90.600847,16.470778],[-90.438867,16.41011],[-90.464473,16.069562],[-91.74796,16.066565],[-92.229249,15.251447],[-92.087216,15.064585],[-92.20323,14.830103],[-92.22775,14.538829],[-93.359464,15.61543],[-93.875169,15.940164],[-94.691656,16.200975],[-95.250227,16.128318],[-96.053382,15.752088],[-96.557434,15.653515],[-97.263592,15.917065],[-98.01303,16.107312],[-98.947676,16.566043],[-99.697397,16.706164],[-100.829499,17.171071],[-101.666089,17.649026],[-101.918528,17.91609],[-102.478132,17.975751],[-103.50099,18.292295],[-103.917527,18.748572],[-104.99201,19.316134],[-105.493038,19.946767],[-105.731396,20.434102],[-105.397773,20.531719],[-105.500661,20.816895],[-105.270752,21.076285],[-105.265817,21.422104],[-105.603161,21.871146],[-105.693414,22.26908],[-106.028716,22.773752],[-106.90998,23.767774],[-107.915449,24.548915],[-108.401905,25.172314],[-109.260199,25.580609],[-109.444089,25.824884],[-109.291644,26.442934],[-109.801458,26.676176],[-110.391732,27.162115],[-110.641019,27.859876],[-111.178919,27.941241],[-111.759607,28.467953],[-112.228235,28.954409],[-112.271824,29.266844],[-112.809594,30.021114],[-113.163811,30.786881],[-113.148669,31.170966],[-113.871881,31.567608],[-114.205737,31.524045],[-114.776451,31.799532],[-114.9367,31.393485],[-114.771232,30.913617],[-114.673899,30.162681],[-114.330974,29.750432],[-113.588875,29.061611],[-113.424053,28.826174],[-113.271969,28.754783],[-113.140039,28.411289],[-112.962298,28.42519],[-112.761587,27.780217],[-112.457911,27.525814],[-112.244952,27.171727],[-111.616489,26.662817],[-111.284675,25.73259],[-110.987819,25.294606],[-110.710007,24.826004],[-110.655049,24.298595],[-110.172856,24.265548],[-109.771847,23.811183],[-109.409104,23.364672],[-109.433392,23.185588],[-109.854219,22.818272],[-110.031392,22.823078],[-110.295071,23.430973],[-110.949501,24.000964],[-111.670568,24.484423],[-112.182036,24.738413],[-112.148989,25.470125],[-112.300711,26.012004],[-112.777297,26.32196],[-113.464671,26.768186],[-113.59673,26.63946],[-113.848937,26.900064],[-114.465747,27.14209],[-115.055142,27.722727],[-114.982253,27.7982],[-114.570366,27.741485],[-114.199329,28.115003],[-114.162018,28.566112],[-114.931842,29.279479],[-115.518654,29.556362],[-115.887365,30.180794],[-116.25835,30.836464],[-116.721526,31.635744],[-117.12776,32.53534],[-115.99135,32.61239],[-114.72139,32.72083],[-114.815,32.52528],[-113.30498,32.03914],[-111.02361,31.33472],[-109.035,31.34194],[-108.24194,31.34222],[-108.24,31.754854],[-106.50759,31.75452],[-106.1429,31.39995],[-105.63159,31.08383],[-105.03737,30.64402],[-104.70575,30.12173],[-104.45697,29.57196],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-101.6624,29.7793],[-100.9576,29.38071],[-100.45584,28.69612],[-100.11,28.11],[-99.52,27.54],[-99.3,26.84],[-99.02,26.37],[-98.24,26.06],[-97.53,25.84],[-97.140008,25.869997]]]}} ]} ================================================ FILE: test/fixtures/world/MEX_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 11.17840187 ], [ -101.25, 21.94304553 ], [ -90, 21.94304553 ], [ -90, 11.17840187 ], [ -101.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 21.94304553 ], [ -101.25, 27.05912578 ], [ -95.625, 27.05912578 ], [ -95.625, 21.94304553 ], [ -101.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 27.05912578 ], [ -101.25, 31.95216224 ], [ -95.625, 31.95216224 ], [ -95.625, 27.05912578 ], [ -101.25, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.875, 16.63619188 ], [ -106.875, 21.94304553 ], [ -101.25, 21.94304553 ], [ -101.25, 16.63619188 ], [ -106.875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 21.94304553 ], [ -112.5, 31.95216224 ], [ -101.25, 31.95216224 ], [ -101.25, 21.94304553 ], [ -112.5, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 21.94304553 ], [ -118.125, 27.05912578 ], [ -112.5, 27.05912578 ], [ -112.5, 21.94304553 ], [ -118.125, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 27.05912578 ], [ -118.125, 31.95216224 ], [ -112.5, 31.95216224 ], [ -112.5, 27.05912578 ], [ -118.125, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 31.95216224 ], [ -118.125, 36.59788913 ], [ -112.5, 36.59788913 ], [ -112.5, 31.95216224 ], [ -118.125, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 16.63619188 ], [ -90, 21.94304553 ], [ -84.375, 21.94304553 ], [ -84.375, 16.63619188 ], [ -90, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.140008, 25.869997 ], [ -97.528072, 24.992144 ], [ -97.702946, 24.272343 ], [ -97.776042, 22.93258 ], [ -97.872367, 22.444212 ], [ -97.699044, 21.898689 ], [ -97.38896, 21.411019 ], [ -97.189333, 20.635433 ], [ -96.525576, 19.890931 ], [ -96.292127, 19.320371 ], [ -95.900885, 18.828024 ], [ -94.839063, 18.562717 ], [ -94.42573, 18.144371 ], [ -93.548651, 18.423837 ], [ -92.786114, 18.524839 ], [ -92.037348, 18.704569 ], [ -91.407903, 18.876083 ], [ -90.77187, 19.28412 ], [ -90.53359, 19.867418 ], [ -90.451476, 20.707522 ], [ -90.278618, 20.999855 ], [ -89.601321, 21.261726 ], [ -88.543866, 21.493675 ], [ -87.658417, 21.458846 ], [ -87.05189, 21.543543 ], [ -86.811982, 21.331515 ], [ -86.845908, 20.849865 ], [ -87.383291, 20.255405 ], [ -87.621054, 19.646553 ], [ -87.43675, 19.472403 ], [ -87.58656, 19.04013 ], [ -87.837191, 18.259816 ], [ -88.090664, 18.516648 ], [ -88.300031, 18.499982 ], [ -88.490123, 18.486831 ], [ -88.848344, 17.883198 ], [ -89.029857, 18.001511 ], [ -89.150909, 17.955468 ], [ -89.14308, 17.808319 ], [ -90.067934, 17.819326 ], [ -91.00152, 17.817595 ], [ -91.002269, 17.254658 ], [ -91.453921, 17.252177 ], [ -91.08167, 16.918477 ], [ -90.711822, 16.687483 ], [ -90.600847, 16.470778 ], [ -90.438867, 16.41011 ], [ -90.464473, 16.069562 ], [ -91.74796, 16.066565 ], [ -92.229249, 15.251447 ], [ -92.087216, 15.064585 ], [ -92.20323, 14.830103 ], [ -92.22775, 14.538829 ], [ -93.359464, 15.61543 ], [ -93.875169, 15.940164 ], [ -94.691656, 16.200975 ], [ -95.250227, 16.128318 ], [ -96.053382, 15.752088 ], [ -96.557434, 15.653515 ], [ -97.263592, 15.917065 ], [ -98.01303, 16.107312 ], [ -98.947676, 16.566043 ], [ -99.697397, 16.706164 ], [ -100.829499, 17.171071 ], [ -101.666089, 17.649026 ], [ -101.918528, 17.91609 ], [ -102.478132, 17.975751 ], [ -103.50099, 18.292295 ], [ -103.917527, 18.748572 ], [ -104.99201, 19.316134 ], [ -105.493038, 19.946767 ], [ -105.731396, 20.434102 ], [ -105.397773, 20.531719 ], [ -105.500661, 20.816895 ], [ -105.270752, 21.076285 ], [ -105.265817, 21.422104 ], [ -105.603161, 21.871146 ], [ -105.693414, 22.26908 ], [ -106.028716, 22.773752 ], [ -106.90998, 23.767774 ], [ -107.915449, 24.548915 ], [ -108.401905, 25.172314 ], [ -109.260199, 25.580609 ], [ -109.444089, 25.824884 ], [ -109.291644, 26.442934 ], [ -109.801458, 26.676176 ], [ -110.391732, 27.162115 ], [ -110.641019, 27.859876 ], [ -111.178919, 27.941241 ], [ -111.759607, 28.467953 ], [ -112.228235, 28.954409 ], [ -112.271824, 29.266844 ], [ -112.809594, 30.021114 ], [ -113.163811, 30.786881 ], [ -113.148669, 31.170966 ], [ -113.871881, 31.567608 ], [ -114.205737, 31.524045 ], [ -114.776451, 31.799532 ], [ -114.9367, 31.393485 ], [ -114.771232, 30.913617 ], [ -114.673899, 30.162681 ], [ -114.330974, 29.750432 ], [ -113.588875, 29.061611 ], [ -113.424053, 28.826174 ], [ -113.271969, 28.754783 ], [ -113.140039, 28.411289 ], [ -112.962298, 28.42519 ], [ -112.761587, 27.780217 ], [ -112.457911, 27.525814 ], [ -112.244952, 27.171727 ], [ -111.616489, 26.662817 ], [ -111.284675, 25.73259 ], [ -110.987819, 25.294606 ], [ -110.710007, 24.826004 ], [ -110.655049, 24.298595 ], [ -110.172856, 24.265548 ], [ -109.771847, 23.811183 ], [ -109.409104, 23.364672 ], [ -109.433392, 23.185588 ], [ -109.854219, 22.818272 ], [ -110.031392, 22.823078 ], [ -110.295071, 23.430973 ], [ -110.949501, 24.000964 ], [ -111.670568, 24.484423 ], [ -112.182036, 24.738413 ], [ -112.148989, 25.470125 ], [ -112.300711, 26.012004 ], [ -112.777297, 26.32196 ], [ -113.464671, 26.768186 ], [ -113.59673, 26.63946 ], [ -113.848937, 26.900064 ], [ -114.465747, 27.14209 ], [ -115.055142, 27.722727 ], [ -114.982253, 27.7982 ], [ -114.570366, 27.741485 ], [ -114.199329, 28.115003 ], [ -114.162018, 28.566112 ], [ -114.931842, 29.279479 ], [ -115.518654, 29.556362 ], [ -115.887365, 30.180794 ], [ -116.25835, 30.836464 ], [ -116.721526, 31.635744 ], [ -117.12776, 32.53534 ], [ -115.99135, 32.61239 ], [ -114.72139, 32.72083 ], [ -114.815, 32.52528 ], [ -113.30498, 32.03914 ], [ -111.02361, 31.33472 ], [ -109.035, 31.34194 ], [ -108.24194, 31.34222 ], [ -108.24, 31.754854 ], [ -106.50759, 31.75452 ], [ -106.1429, 31.39995 ], [ -105.63159, 31.08383 ], [ -105.03737, 30.64402 ], [ -104.70575, 30.12173 ], [ -104.45697, 29.57196 ], [ -103.94, 29.27 ], [ -103.11, 28.97 ], [ -102.48, 29.76 ], [ -101.6624, 29.7793 ], [ -100.9576, 29.38071 ], [ -100.45584, 28.69612 ], [ -100.11, 28.11 ], [ -99.52, 27.54 ], [ -99.3, 26.84 ], [ -99.02, 26.37 ], [ -98.24, 26.06 ], [ -97.53, 25.84 ], [ -97.140008, 25.869997 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MKD.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MKD","properties":{"name":"Macedonia"},"geometry":{"type":"Polygon","coordinates":[[[20.59023,41.85541],[20.71731,41.84711],[20.76216,42.05186],[21.3527,42.2068],[21.576636,42.245224],[21.91708,42.30364],[22.380526,42.32026],[22.881374,41.999297],[22.952377,41.337994],[22.76177,41.3048],[22.597308,41.130487],[22.055378,41.149866],[21.674161,40.931275],[21.02004,40.842727],[20.60518,41.08622],[20.46315,41.51509],[20.59023,41.85541]]]}} ]} ================================================ FILE: test/fixtures/world/MKD_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 36.59788913 ], [ 16.875, 40.97989807 ], [ 22.5, 40.97989807 ], [ 22.5, 36.59788913 ], [ 16.875, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 40.97989807 ], [ 16.875, 45.08903556 ], [ 22.5, 45.08903556 ], [ 22.5, 40.97989807 ], [ 16.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 40.97989807 ], [ 22.5, 45.08903556 ], [ 28.125, 45.08903556 ], [ 28.125, 40.97989807 ], [ 22.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.59023, 41.85541 ], [ 20.71731, 41.84711 ], [ 20.76216, 42.05186 ], [ 21.3527, 42.2068 ], [ 21.576636, 42.245224 ], [ 21.91708, 42.30364 ], [ 22.380526, 42.32026 ], [ 22.881374, 41.999297 ], [ 22.952377, 41.337994 ], [ 22.76177, 41.3048 ], [ 22.597308, 41.130487 ], [ 22.055378, 41.149866 ], [ 21.674161, 40.931275 ], [ 21.02004, 40.842727 ], [ 20.60518, 41.08622 ], [ 20.46315, 41.51509 ], [ 20.59023, 41.85541 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MLI.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MLI","properties":{"name":"Mali"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-11.834208,14.799097],[-11.666078,15.388208],[-11.349095,15.411256],[-10.650791,15.132746],[-10.086846,15.330486],[-9.700255,15.264107],[-9.550238,15.486497],[-5.537744,15.50169],[-5.315277,16.201854],[-5.488523,16.325102],[-5.971129,20.640833],[-6.453787,24.956591],[-4.923337,24.974574],[-1.550055,22.792666],[1.823228,20.610809],[2.060991,20.142233],[2.683588,19.85623],[3.146661,19.693579],[3.158133,19.057364],[4.267419,19.155265],[4.27021,16.852227],[3.723422,16.184284],[3.638259,15.56812],[2.749993,15.409525],[1.385528,15.323561],[1.015783,14.968182],[0.374892,14.928908],[-0.266257,14.924309],[-0.515854,15.116158],[-1.066363,14.973815],[-2.001035,14.559008],[-2.191825,14.246418],[-2.967694,13.79815],[-3.103707,13.541267],[-3.522803,13.337662],[-4.006391,13.472485],[-4.280405,13.228444],[-4.427166,12.542646],[-5.220942,11.713859],[-5.197843,11.375146],[-5.470565,10.95127],[-5.404342,10.370737],[-5.816926,10.222555],[-6.050452,10.096361],[-6.205223,10.524061],[-6.493965,10.411303],[-6.666461,10.430811],[-6.850507,10.138994],[-7.622759,10.147236],[-7.89959,10.297382],[-8.029944,10.206535],[-8.335377,10.494812],[-8.282357,10.792597],[-8.407311,10.909257],[-8.620321,10.810891],[-8.581305,11.136246],[-8.376305,11.393646],[-8.786099,11.812561],[-8.905265,12.088358],[-9.127474,12.30806],[-9.327616,12.334286],[-9.567912,12.194243],[-9.890993,12.060479],[-10.165214,11.844084],[-10.593224,11.923975],[-10.87083,12.177887],[-11.036556,12.211245],[-11.297574,12.077971],[-11.456169,12.076834],[-11.513943,12.442988],[-11.467899,12.754519],[-11.553398,13.141214],[-11.927716,13.422075],[-12.124887,13.994727],[-12.17075,14.616834]]]}} ]} ================================================ FILE: test/fixtures/world/MLI_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 11.17840187 ], [ -11.25, 21.94304553 ], [ 0, 21.94304553 ], [ 0, 11.17840187 ], [ -11.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 21.94304553 ], [ -11.25, 27.05912578 ], [ -5.625, 27.05912578 ], [ -5.625, 21.94304553 ], [ -11.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 5.61598582 ], [ -11.25, 11.17840187 ], [ -5.625, 11.17840187 ], [ -5.625, 5.61598582 ], [ -11.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 11.17840187 ], [ -16.875, 16.63619188 ], [ -11.25, 16.63619188 ], [ -11.25, 11.17840187 ], [ -16.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 21.94304553 ], [ -5.625, 27.05912578 ], [ 0, 27.05912578 ], [ 0, 21.94304553 ], [ -5.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 5.61598582 ], [ -5.625, 11.17840187 ], [ 0, 11.17840187 ], [ 0, 5.61598582 ], [ -5.625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 11.17840187 ], [ 0, 16.63619188 ], [ 5.625, 16.63619188 ], [ 5.625, 11.17840187 ], [ 0, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 16.63619188 ], [ 0, 21.94304553 ], [ 5.625, 21.94304553 ], [ 5.625, 16.63619188 ], [ 0, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.17075, 14.616834 ], [ -11.834208, 14.799097 ], [ -11.666078, 15.388208 ], [ -11.349095, 15.411256 ], [ -10.650791, 15.132746 ], [ -10.086846, 15.330486 ], [ -9.700255, 15.264107 ], [ -9.550238, 15.486497 ], [ -5.537744, 15.50169 ], [ -5.315277, 16.201854 ], [ -5.488523, 16.325102 ], [ -5.971129, 20.640833 ], [ -6.453787, 24.956591 ], [ -4.923337, 24.974574 ], [ -1.550055, 22.792666 ], [ 1.823228, 20.610809 ], [ 2.060991, 20.142233 ], [ 2.683588, 19.85623 ], [ 3.146661, 19.693579 ], [ 3.158133, 19.057364 ], [ 4.267419, 19.155265 ], [ 4.27021, 16.852227 ], [ 3.723422, 16.184284 ], [ 3.638259, 15.56812 ], [ 2.749993, 15.409525 ], [ 1.385528, 15.323561 ], [ 1.015783, 14.968182 ], [ 0.374892, 14.928908 ], [ -0.266257, 14.924309 ], [ -0.515854, 15.116158 ], [ -1.066363, 14.973815 ], [ -2.001035, 14.559008 ], [ -2.191825, 14.246418 ], [ -2.967694, 13.79815 ], [ -3.103707, 13.541267 ], [ -3.522803, 13.337662 ], [ -4.006391, 13.472485 ], [ -4.280405, 13.228444 ], [ -4.427166, 12.542646 ], [ -5.220942, 11.713859 ], [ -5.197843, 11.375146 ], [ -5.470565, 10.95127 ], [ -5.404342, 10.370737 ], [ -5.816926, 10.222555 ], [ -6.050452, 10.096361 ], [ -6.205223, 10.524061 ], [ -6.493965, 10.411303 ], [ -6.666461, 10.430811 ], [ -6.850507, 10.138994 ], [ -7.622759, 10.147236 ], [ -7.89959, 10.297382 ], [ -8.029944, 10.206535 ], [ -8.335377, 10.494812 ], [ -8.282357, 10.792597 ], [ -8.407311, 10.909257 ], [ -8.620321, 10.810891 ], [ -8.581305, 11.136246 ], [ -8.376305, 11.393646 ], [ -8.786099, 11.812561 ], [ -8.905265, 12.088358 ], [ -9.127474, 12.30806 ], [ -9.327616, 12.334286 ], [ -9.567912, 12.194243 ], [ -9.890993, 12.060479 ], [ -10.165214, 11.844084 ], [ -10.593224, 11.923975 ], [ -10.87083, 12.177887 ], [ -11.036556, 12.211245 ], [ -11.297574, 12.077971 ], [ -11.456169, 12.076834 ], [ -11.513943, 12.442988 ], [ -11.467899, 12.754519 ], [ -11.553398, 13.141214 ], [ -11.927716, 13.422075 ], [ -12.124887, 13.994727 ], [ -12.17075, 14.616834 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MLT.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MLT","properties":{"name":"Malta"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.566171,35.852721],[14.532684,35.820191],[14.436463,35.821664],[14.352334,35.872281],[14.3513,35.978399],[14.448348,35.957444],[14.537025,35.886285],[14.566171,35.852721]]],[[[14.313473,36.027569],[14.253632,36.012143],[14.194204,36.042245],[14.180354,36.060383],[14.263243,36.075809],[14.303758,36.062295],[14.320914,36.03625],[14.313473,36.027569]]]]}} ]} ================================================ FILE: test/fixtures/world/MLT_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 31.95216224 ], [ 11.25, 36.59788913 ], [ 16.875, 36.59788913 ], [ 16.875, 31.95216224 ], [ 11.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.566171, 35.852721 ], [ 14.532684, 35.820191 ], [ 14.436463, 35.821664 ], [ 14.352334, 35.872281 ], [ 14.3513, 35.978399 ], [ 14.448348, 35.957444 ], [ 14.537025, 35.886285 ], [ 14.566171, 35.852721 ] ] ], [ [ [ 14.313473, 36.027569 ], [ 14.253632, 36.012143 ], [ 14.194204, 36.042245 ], [ 14.180354, 36.060383 ], [ 14.263243, 36.075809 ], [ 14.303758, 36.062295 ], [ 14.320914, 36.03625 ], [ 14.313473, 36.027569 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MMR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MMR","properties":{"name":"Myanmar"},"geometry":{"type":"Polygon","coordinates":[[[99.543309,20.186598],[98.959676,19.752981],[98.253724,19.708203],[97.797783,18.62708],[97.375896,18.445438],[97.859123,17.567946],[98.493761,16.837836],[98.903348,16.177824],[98.537376,15.308497],[98.192074,15.123703],[98.430819,14.622028],[99.097755,13.827503],[99.212012,13.269294],[99.196354,12.804748],[99.587286,11.892763],[99.038121,10.960546],[98.553551,9.93296],[98.457174,10.675266],[98.764546,11.441292],[98.428339,12.032987],[98.509574,13.122378],[98.103604,13.64046],[97.777732,14.837286],[97.597072,16.100568],[97.16454,16.928734],[96.505769,16.427241],[95.369352,15.71439],[94.808405,15.803454],[94.188804,16.037936],[94.533486,17.27724],[94.324817,18.213514],[93.540988,19.366493],[93.663255,19.726962],[93.078278,19.855145],[92.368554,20.670883],[92.303234,21.475485],[92.652257,21.324048],[92.672721,22.041239],[93.166128,22.27846],[93.060294,22.703111],[93.286327,23.043658],[93.325188,24.078556],[94.106742,23.850741],[94.552658,24.675238],[94.603249,25.162495],[95.155153,26.001307],[95.124768,26.573572],[96.419366,27.264589],[97.133999,27.083774],[97.051989,27.699059],[97.402561,27.882536],[97.327114,28.261583],[97.911988,28.335945],[98.246231,27.747221],[98.68269,27.508812],[98.712094,26.743536],[98.671838,25.918703],[97.724609,25.083637],[97.60472,23.897405],[98.660262,24.063286],[98.898749,23.142722],[99.531992,22.949039],[99.240899,22.118314],[99.983489,21.742937],[100.416538,21.558839],[101.150033,21.849984],[101.180005,21.436573],[100.329101,20.786122],[100.115988,20.41785],[99.543309,20.186598]]]}} ]} ================================================ FILE: test/fixtures/world/MMR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 11.17840187 ], [ 90, 21.94304553 ], [ 101.25, 21.94304553 ], [ 101.25, 11.17840187 ], [ 90, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 21.94304553 ], [ 90, 27.05912578 ], [ 95.625, 27.05912578 ], [ 95.625, 21.94304553 ], [ 90, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 21.94304553 ], [ 95.625, 27.05912578 ], [ 101.25, 27.05912578 ], [ 101.25, 21.94304553 ], [ 95.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 27.05912578 ], [ 95.625, 31.95216224 ], [ 101.25, 31.95216224 ], [ 101.25, 27.05912578 ], [ 95.625, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 5.61598582 ], [ 95.625, 11.17840187 ], [ 101.25, 11.17840187 ], [ 101.25, 5.61598582 ], [ 95.625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.543309, 20.186598 ], [ 98.959676, 19.752981 ], [ 98.253724, 19.708203 ], [ 97.797783, 18.62708 ], [ 97.375896, 18.445438 ], [ 97.859123, 17.567946 ], [ 98.493761, 16.837836 ], [ 98.903348, 16.177824 ], [ 98.537376, 15.308497 ], [ 98.192074, 15.123703 ], [ 98.430819, 14.622028 ], [ 99.097755, 13.827503 ], [ 99.212012, 13.269294 ], [ 99.196354, 12.804748 ], [ 99.587286, 11.892763 ], [ 99.038121, 10.960546 ], [ 98.553551, 9.93296 ], [ 98.457174, 10.675266 ], [ 98.764546, 11.441292 ], [ 98.428339, 12.032987 ], [ 98.509574, 13.122378 ], [ 98.103604, 13.64046 ], [ 97.777732, 14.837286 ], [ 97.597072, 16.100568 ], [ 97.16454, 16.928734 ], [ 96.505769, 16.427241 ], [ 95.369352, 15.71439 ], [ 94.808405, 15.803454 ], [ 94.188804, 16.037936 ], [ 94.533486, 17.27724 ], [ 94.324817, 18.213514 ], [ 93.540988, 19.366493 ], [ 93.663255, 19.726962 ], [ 93.078278, 19.855145 ], [ 92.368554, 20.670883 ], [ 92.303234, 21.475485 ], [ 92.652257, 21.324048 ], [ 92.672721, 22.041239 ], [ 93.166128, 22.27846 ], [ 93.060294, 22.703111 ], [ 93.286327, 23.043658 ], [ 93.325188, 24.078556 ], [ 94.106742, 23.850741 ], [ 94.552658, 24.675238 ], [ 94.603249, 25.162495 ], [ 95.155153, 26.001307 ], [ 95.124768, 26.573572 ], [ 96.419366, 27.264589 ], [ 97.133999, 27.083774 ], [ 97.051989, 27.699059 ], [ 97.402561, 27.882536 ], [ 97.327114, 28.261583 ], [ 97.911988, 28.335945 ], [ 98.246231, 27.747221 ], [ 98.68269, 27.508812 ], [ 98.712094, 26.743536 ], [ 98.671838, 25.918703 ], [ 97.724609, 25.083637 ], [ 97.60472, 23.897405 ], [ 98.660262, 24.063286 ], [ 98.898749, 23.142722 ], [ 99.531992, 22.949039 ], [ 99.240899, 22.118314 ], [ 99.983489, 21.742937 ], [ 100.416538, 21.558839 ], [ 101.150033, 21.849984 ], [ 101.180005, 21.436573 ], [ 100.329101, 20.786122 ], [ 100.115988, 20.41785 ], [ 99.543309, 20.186598 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MNE.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MNE","properties":{"name":"Montenegro"},"geometry":{"type":"Polygon","coordinates":[[[19.801613,42.500093],[19.738051,42.688247],[19.30449,42.19574],[19.37177,41.87755],[19.16246,41.95502],[18.88214,42.28151],[18.45,42.48],[18.56,42.65],[18.70648,43.20011],[19.03165,43.43253],[19.21852,43.52384],[19.48389,43.35229],[19.63,43.21378],[19.95857,43.10604],[20.3398,42.89852],[20.25758,42.81275],[20.0707,42.58863],[19.801613,42.500093]]]}} ]} ================================================ FILE: test/fixtures/world/MNE_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 40.97989807 ], [ 16.875, 45.08903556 ], [ 22.5, 45.08903556 ], [ 22.5, 40.97989807 ], [ 16.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.801613, 42.500093 ], [ 19.738051, 42.688247 ], [ 19.30449, 42.19574 ], [ 19.37177, 41.87755 ], [ 19.16246, 41.95502 ], [ 18.88214, 42.28151 ], [ 18.45, 42.48 ], [ 18.56, 42.65 ], [ 18.70648, 43.20011 ], [ 19.03165, 43.43253 ], [ 19.21852, 43.52384 ], [ 19.48389, 43.35229 ], [ 19.63, 43.21378 ], [ 19.95857, 43.10604 ], [ 20.3398, 42.89852 ], [ 20.25758, 42.81275 ], [ 20.0707, 42.58863 ], [ 19.801613, 42.500093 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MNG.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MNG","properties":{"name":"Mongolia"},"geometry":{"type":"Polygon","coordinates":[[[87.751264,49.297198],[88.805567,49.470521],[90.713667,50.331812],[92.234712,50.802171],[93.104219,50.49529],[94.147566,50.480537],[94.815949,50.013433],[95.814028,49.977467],[97.259728,49.726061],[98.231762,50.422401],[97.82574,51.010995],[98.861491,52.047366],[99.981732,51.634006],[100.88948,51.516856],[102.065223,51.259921],[102.255909,50.510561],[103.676545,50.089966],[104.621552,50.275329],[105.886591,50.406019],[106.888804,50.274296],[107.868176,49.793705],[108.475167,49.282548],[109.402449,49.292961],[110.662011,49.130128],[111.581231,49.377968],[112.89774,49.543565],[114.362456,50.248303],[114.96211,50.140247],[115.485695,49.805177],[116.678801,49.888531],[116.191802,49.134598],[115.485282,48.135383],[115.742837,47.726545],[116.308953,47.85341],[117.295507,47.697709],[118.064143,48.06673],[118.866574,47.74706],[119.772824,47.048059],[119.66327,46.69268],[118.874326,46.805412],[117.421701,46.672733],[116.717868,46.388202],[115.985096,45.727235],[114.460332,45.339817],[113.463907,44.808893],[112.436062,45.011646],[111.873306,45.102079],[111.348377,44.457442],[111.667737,44.073176],[111.829588,43.743118],[111.129682,43.406834],[110.412103,42.871234],[109.243596,42.519446],[107.744773,42.481516],[106.129316,42.134328],[104.964994,41.59741],[104.522282,41.908347],[103.312278,41.907468],[101.83304,42.514873],[100.845866,42.663804],[99.515817,42.524691],[97.451757,42.74889],[96.349396,42.725635],[95.762455,43.319449],[95.306875,44.241331],[94.688929,44.352332],[93.480734,44.975472],[92.133891,45.115076],[90.94554,45.286073],[90.585768,45.719716],[90.970809,46.888146],[90.280826,47.693549],[88.854298,48.069082],[88.013832,48.599463],[87.751264,49.297198]]]}} ]} ================================================ FILE: test/fixtures/world/MNG_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 40.97989807 ], [ 101.25, 48.92249926 ], [ 112.5, 48.92249926 ], [ 112.5, 40.97989807 ], [ 101.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 48.92249926 ], [ 101.25, 52.48278022 ], [ 106.875, 52.48278022 ], [ 106.875, 48.92249926 ], [ 101.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 48.92249926 ], [ 106.875, 52.48278022 ], [ 112.5, 52.48278022 ], [ 112.5, 48.92249926 ], [ 106.875, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 40.97989807 ], [ 112.5, 45.08903556 ], [ 118.125, 45.08903556 ], [ 118.125, 40.97989807 ], [ 112.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 45.08903556 ], [ 112.5, 48.92249926 ], [ 118.125, 48.92249926 ], [ 118.125, 45.08903556 ], [ 112.5, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 48.92249926 ], [ 112.5, 52.48278022 ], [ 118.125, 52.48278022 ], [ 118.125, 48.92249926 ], [ 112.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 45.08903556 ], [ 118.125, 48.92249926 ], [ 123.75, 48.92249926 ], [ 123.75, 45.08903556 ], [ 118.125, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 45.08903556 ], [ 84.375, 48.92249926 ], [ 90, 48.92249926 ], [ 90, 45.08903556 ], [ 84.375, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 48.92249926 ], [ 84.375, 52.48278022 ], [ 90, 52.48278022 ], [ 90, 48.92249926 ], [ 84.375, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 40.97989807 ], [ 90, 48.92249926 ], [ 101.25, 48.92249926 ], [ 101.25, 40.97989807 ], [ 90, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 48.92249926 ], [ 90, 52.48278022 ], [ 95.625, 52.48278022 ], [ 95.625, 48.92249926 ], [ 90, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 48.92249926 ], [ 95.625, 52.48278022 ], [ 101.25, 52.48278022 ], [ 101.25, 48.92249926 ], [ 95.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.751264, 49.297198 ], [ 88.805567, 49.470521 ], [ 90.713667, 50.331812 ], [ 92.234712, 50.802171 ], [ 93.104219, 50.49529 ], [ 94.147566, 50.480537 ], [ 94.815949, 50.013433 ], [ 95.814028, 49.977467 ], [ 97.259728, 49.726061 ], [ 98.231762, 50.422401 ], [ 97.82574, 51.010995 ], [ 98.861491, 52.047366 ], [ 99.981732, 51.634006 ], [ 100.88948, 51.516856 ], [ 102.065223, 51.259921 ], [ 102.255909, 50.510561 ], [ 103.676545, 50.089966 ], [ 104.621552, 50.275329 ], [ 105.886591, 50.406019 ], [ 106.888804, 50.274296 ], [ 107.868176, 49.793705 ], [ 108.475167, 49.282548 ], [ 109.402449, 49.292961 ], [ 110.662011, 49.130128 ], [ 111.581231, 49.377968 ], [ 112.89774, 49.543565 ], [ 114.362456, 50.248303 ], [ 114.96211, 50.140247 ], [ 115.485695, 49.805177 ], [ 116.678801, 49.888531 ], [ 116.191802, 49.134598 ], [ 115.485282, 48.135383 ], [ 115.742837, 47.726545 ], [ 116.308953, 47.85341 ], [ 117.295507, 47.697709 ], [ 118.064143, 48.06673 ], [ 118.866574, 47.74706 ], [ 119.772824, 47.048059 ], [ 119.66327, 46.69268 ], [ 118.874326, 46.805412 ], [ 117.421701, 46.672733 ], [ 116.717868, 46.388202 ], [ 115.985096, 45.727235 ], [ 114.460332, 45.339817 ], [ 113.463907, 44.808893 ], [ 112.436062, 45.011646 ], [ 111.873306, 45.102079 ], [ 111.348377, 44.457442 ], [ 111.667737, 44.073176 ], [ 111.829588, 43.743118 ], [ 111.129682, 43.406834 ], [ 110.412103, 42.871234 ], [ 109.243596, 42.519446 ], [ 107.744773, 42.481516 ], [ 106.129316, 42.134328 ], [ 104.964994, 41.59741 ], [ 104.522282, 41.908347 ], [ 103.312278, 41.907468 ], [ 101.83304, 42.514873 ], [ 100.845866, 42.663804 ], [ 99.515817, 42.524691 ], [ 97.451757, 42.74889 ], [ 96.349396, 42.725635 ], [ 95.762455, 43.319449 ], [ 95.306875, 44.241331 ], [ 94.688929, 44.352332 ], [ 93.480734, 44.975472 ], [ 92.133891, 45.115076 ], [ 90.94554, 45.286073 ], [ 90.585768, 45.719716 ], [ 90.970809, 46.888146 ], [ 90.280826, 47.693549 ], [ 88.854298, 48.069082 ], [ 88.013832, 48.599463 ], [ 87.751264, 49.297198 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MOZ.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MOZ","properties":{"name":"Mozambique"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[35.312398,-11.439146],[36.514082,-11.720938],[36.775151,-11.594537],[37.471284,-11.568751],[37.827645,-11.268769],[38.427557,-11.285202],[39.52103,-10.896854],[40.316589,-10.317096],[40.478387,-10.765441],[40.437253,-11.761711],[40.560811,-12.639177],[40.59962,-14.201975],[40.775475,-14.691764],[40.477251,-15.406294],[40.089264,-16.100774],[39.452559,-16.720891],[38.538351,-17.101023],[37.411133,-17.586368],[36.281279,-18.659688],[35.896497,-18.84226],[35.1984,-19.552811],[34.786383,-19.784012],[34.701893,-20.497043],[35.176127,-21.254361],[35.373428,-21.840837],[35.385848,-22.14],[35.562546,-22.09],[35.533935,-23.070788],[35.371774,-23.535359],[35.60747,-23.706563],[35.458746,-24.12261],[35.040735,-24.478351],[34.215824,-24.816314],[33.01321,-25.357573],[32.574632,-25.727318],[32.660363,-26.148584],[32.915955,-26.215867],[32.83012,-26.742192],[32.071665,-26.73382],[31.985779,-26.29178],[31.837778,-25.843332],[31.752408,-25.484284],[31.930589,-24.369417],[31.670398,-23.658969],[31.191409,-22.25151],[32.244988,-21.116489],[32.508693,-20.395292],[32.659743,-20.30429],[32.772708,-19.715592],[32.611994,-19.419383],[32.654886,-18.67209],[32.849861,-17.979057],[32.847639,-16.713398],[32.328239,-16.392074],[31.852041,-16.319417],[31.636498,-16.07199],[31.173064,-15.860944],[30.338955,-15.880839],[30.274256,-15.507787],[30.179481,-14.796099],[33.214025,-13.97186],[33.7897,-14.451831],[34.064825,-14.35995],[34.459633,-14.61301],[34.517666,-15.013709],[34.307291,-15.478641],[34.381292,-16.18356],[35.03381,-16.8013],[35.339063,-16.10744],[35.771905,-15.896859],[35.686845,-14.611046],[35.267956,-13.887834],[34.907151,-13.565425],[34.559989,-13.579998],[34.280006,-12.280025],[34.559989,-11.52002]]]}} ]} ================================================ FILE: test/fixtures/world/MOZ_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -16.63619188 ], [ 28.125, -11.17840187 ], [ 33.75, -11.17840187 ], [ 33.75, -16.63619188 ], [ 28.125, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -21.94304553 ], [ 28.125, -16.63619188 ], [ 33.75, -16.63619188 ], [ 33.75, -21.94304553 ], [ 28.125, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -27.05912578 ], [ 28.125, -21.94304553 ], [ 33.75, -21.94304553 ], [ 33.75, -27.05912578 ], [ 28.125, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -11.17840187 ], [ 33.75, -5.61598582 ], [ 39.375, -5.61598582 ], [ 39.375, -11.17840187 ], [ 33.75, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -21.94304553 ], [ 33.75, -11.17840187 ], [ 45, -11.17840187 ], [ 45, -21.94304553 ], [ 33.75, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -27.05912578 ], [ 33.75, -21.94304553 ], [ 39.375, -21.94304553 ], [ 39.375, -27.05912578 ], [ 33.75, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, -11.17840187 ], [ 39.375, -5.61598582 ], [ 45, -5.61598582 ], [ 45, -11.17840187 ], [ 39.375, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.559989, -11.52002 ], [ 35.312398, -11.439146 ], [ 36.514082, -11.720938 ], [ 36.775151, -11.594537 ], [ 37.471284, -11.568751 ], [ 37.827645, -11.268769 ], [ 38.427557, -11.285202 ], [ 39.52103, -10.896854 ], [ 40.316589, -10.317096 ], [ 40.478387, -10.765441 ], [ 40.437253, -11.761711 ], [ 40.560811, -12.639177 ], [ 40.59962, -14.201975 ], [ 40.775475, -14.691764 ], [ 40.477251, -15.406294 ], [ 40.089264, -16.100774 ], [ 39.452559, -16.720891 ], [ 38.538351, -17.101023 ], [ 37.411133, -17.586368 ], [ 36.281279, -18.659688 ], [ 35.896497, -18.84226 ], [ 35.1984, -19.552811 ], [ 34.786383, -19.784012 ], [ 34.701893, -20.497043 ], [ 35.176127, -21.254361 ], [ 35.373428, -21.840837 ], [ 35.385848, -22.14 ], [ 35.562546, -22.09 ], [ 35.533935, -23.070788 ], [ 35.371774, -23.535359 ], [ 35.60747, -23.706563 ], [ 35.458746, -24.12261 ], [ 35.040735, -24.478351 ], [ 34.215824, -24.816314 ], [ 33.01321, -25.357573 ], [ 32.574632, -25.727318 ], [ 32.660363, -26.148584 ], [ 32.915955, -26.215867 ], [ 32.83012, -26.742192 ], [ 32.071665, -26.73382 ], [ 31.985779, -26.29178 ], [ 31.837778, -25.843332 ], [ 31.752408, -25.484284 ], [ 31.930589, -24.369417 ], [ 31.670398, -23.658969 ], [ 31.191409, -22.25151 ], [ 32.244988, -21.116489 ], [ 32.508693, -20.395292 ], [ 32.659743, -20.30429 ], [ 32.772708, -19.715592 ], [ 32.611994, -19.419383 ], [ 32.654886, -18.67209 ], [ 32.849861, -17.979057 ], [ 32.847639, -16.713398 ], [ 32.328239, -16.392074 ], [ 31.852041, -16.319417 ], [ 31.636498, -16.07199 ], [ 31.173064, -15.860944 ], [ 30.338955, -15.880839 ], [ 30.274256, -15.507787 ], [ 30.179481, -14.796099 ], [ 33.214025, -13.97186 ], [ 33.7897, -14.451831 ], [ 34.064825, -14.35995 ], [ 34.459633, -14.61301 ], [ 34.517666, -15.013709 ], [ 34.307291, -15.478641 ], [ 34.381292, -16.18356 ], [ 35.03381, -16.8013 ], [ 35.339063, -16.10744 ], [ 35.771905, -15.896859 ], [ 35.686845, -14.611046 ], [ 35.267956, -13.887834 ], [ 34.907151, -13.565425 ], [ 34.559989, -13.579998 ], [ 34.280006, -12.280025 ], [ 34.559989, -11.52002 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MRT.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MRT","properties":{"name":"Mauritania"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-12.830658,15.303692],[-13.435738,16.039383],[-14.099521,16.304302],[-14.577348,16.598264],[-15.135737,16.587282],[-15.623666,16.369337],[-16.12069,16.455663],[-16.463098,16.135036],[-16.549708,16.673892],[-16.270552,17.166963],[-16.146347,18.108482],[-16.256883,19.096716],[-16.377651,19.593817],[-16.277838,20.092521],[-16.536324,20.567866],[-17.063423,20.999752],[-16.845194,21.333323],[-12.929102,21.327071],[-13.118754,22.77122],[-12.874222,23.284832],[-11.937224,23.374594],[-11.969419,25.933353],[-8.687294,25.881056],[-8.6844,27.395744],[-4.923337,24.974574],[-6.453787,24.956591],[-5.971129,20.640833],[-5.488523,16.325102],[-5.315277,16.201854],[-5.537744,15.50169],[-9.550238,15.486497],[-9.700255,15.264107],[-10.086846,15.330486],[-10.650791,15.132746],[-11.349095,15.411256],[-11.666078,15.388208],[-11.834208,14.799097],[-12.17075,14.616834]]]}} ]} ================================================ FILE: test/fixtures/world/MRT_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 11.17840187 ], [ -11.25, 21.94304553 ], [ 0, 21.94304553 ], [ 0, 11.17840187 ], [ -11.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 21.94304553 ], [ -11.25, 27.05912578 ], [ -5.625, 27.05912578 ], [ -5.625, 21.94304553 ], [ -11.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 27.05912578 ], [ -11.25, 31.95216224 ], [ -5.625, 31.95216224 ], [ -5.625, 27.05912578 ], [ -11.25, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 11.17840187 ], [ -16.875, 16.63619188 ], [ -11.25, 16.63619188 ], [ -11.25, 11.17840187 ], [ -16.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 16.63619188 ], [ -16.875, 21.94304553 ], [ -11.25, 21.94304553 ], [ -11.25, 16.63619188 ], [ -16.875, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 21.94304553 ], [ -16.875, 27.05912578 ], [ -11.25, 27.05912578 ], [ -11.25, 21.94304553 ], [ -16.875, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 16.63619188 ], [ -22.5, 21.94304553 ], [ -16.875, 21.94304553 ], [ -16.875, 16.63619188 ], [ -22.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 21.94304553 ], [ -5.625, 27.05912578 ], [ 0, 27.05912578 ], [ 0, 21.94304553 ], [ -5.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.17075, 14.616834 ], [ -12.830658, 15.303692 ], [ -13.435738, 16.039383 ], [ -14.099521, 16.304302 ], [ -14.577348, 16.598264 ], [ -15.135737, 16.587282 ], [ -15.623666, 16.369337 ], [ -16.12069, 16.455663 ], [ -16.463098, 16.135036 ], [ -16.549708, 16.673892 ], [ -16.270552, 17.166963 ], [ -16.146347, 18.108482 ], [ -16.256883, 19.096716 ], [ -16.377651, 19.593817 ], [ -16.277838, 20.092521 ], [ -16.536324, 20.567866 ], [ -17.063423, 20.999752 ], [ -16.845194, 21.333323 ], [ -12.929102, 21.327071 ], [ -13.118754, 22.77122 ], [ -12.874222, 23.284832 ], [ -11.937224, 23.374594 ], [ -11.969419, 25.933353 ], [ -8.687294, 25.881056 ], [ -8.6844, 27.395744 ], [ -4.923337, 24.974574 ], [ -6.453787, 24.956591 ], [ -5.971129, 20.640833 ], [ -5.488523, 16.325102 ], [ -5.315277, 16.201854 ], [ -5.537744, 15.50169 ], [ -9.550238, 15.486497 ], [ -9.700255, 15.264107 ], [ -10.086846, 15.330486 ], [ -10.650791, 15.132746 ], [ -11.349095, 15.411256 ], [ -11.666078, 15.388208 ], [ -11.834208, 14.799097 ], [ -12.17075, 14.616834 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MWI.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MWI","properties":{"name":"Malawi"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[34.280006,-12.280025],[34.559989,-13.579998],[34.907151,-13.565425],[35.267956,-13.887834],[35.686845,-14.611046],[35.771905,-15.896859],[35.339063,-16.10744],[35.03381,-16.8013],[34.381292,-16.18356],[34.307291,-15.478641],[34.517666,-15.013709],[34.459633,-14.61301],[34.064825,-14.35995],[33.7897,-14.451831],[33.214025,-13.97186],[32.688165,-13.712858],[32.991764,-12.783871],[33.306422,-12.435778],[33.114289,-11.607198],[33.31531,-10.79655],[33.485688,-10.525559],[33.231388,-9.676722],[32.759375,-9.230599],[33.739729,-9.417151],[33.940838,-9.693674],[34.280006,-10.16],[34.559989,-11.52002]]]}} ]} ================================================ FILE: test/fixtures/world/MWI_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -11.17840187 ], [ 28.125, -5.61598582 ], [ 33.75, -5.61598582 ], [ 33.75, -11.17840187 ], [ 28.125, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -16.63619188 ], [ 28.125, -11.17840187 ], [ 33.75, -11.17840187 ], [ 33.75, -16.63619188 ], [ 28.125, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -11.17840187 ], [ 33.75, -5.61598582 ], [ 39.375, -5.61598582 ], [ 39.375, -11.17840187 ], [ 33.75, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -16.63619188 ], [ 33.75, -11.17840187 ], [ 39.375, -11.17840187 ], [ 39.375, -16.63619188 ], [ 33.75, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -21.94304553 ], [ 33.75, -16.63619188 ], [ 39.375, -16.63619188 ], [ 39.375, -21.94304553 ], [ 33.75, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.559989, -11.52002 ], [ 34.280006, -12.280025 ], [ 34.559989, -13.579998 ], [ 34.907151, -13.565425 ], [ 35.267956, -13.887834 ], [ 35.686845, -14.611046 ], [ 35.771905, -15.896859 ], [ 35.339063, -16.10744 ], [ 35.03381, -16.8013 ], [ 34.381292, -16.18356 ], [ 34.307291, -15.478641 ], [ 34.517666, -15.013709 ], [ 34.459633, -14.61301 ], [ 34.064825, -14.35995 ], [ 33.7897, -14.451831 ], [ 33.214025, -13.97186 ], [ 32.688165, -13.712858 ], [ 32.991764, -12.783871 ], [ 33.306422, -12.435778 ], [ 33.114289, -11.607198 ], [ 33.31531, -10.79655 ], [ 33.485688, -10.525559 ], [ 33.231388, -9.676722 ], [ 32.759375, -9.230599 ], [ 33.739729, -9.417151 ], [ 33.940838, -9.693674 ], [ 34.280006, -10.16 ], [ 34.559989, -11.52002 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/MYS.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"MYS","properties":{"name":"Malaysia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.075516,6.204867],[101.154219,5.691384],[101.814282,5.810808],[102.141187,6.221636],[102.371147,6.128205],[102.961705,5.524495],[103.381215,4.855001],[103.438575,4.181606],[103.332122,3.726698],[103.429429,3.382869],[103.502448,2.791019],[103.854674,2.515454],[104.247932,1.631141],[104.228811,1.293048],[103.519707,1.226334],[102.573615,1.967115],[101.390638,2.760814],[101.27354,3.270292],[100.695435,3.93914],[100.557408,4.76728],[100.196706,5.312493],[100.30626,6.040562],[100.085757,6.464489],[100.259596,6.642825],[101.075516,6.204867]]],[[[118.618321,4.478202],[117.882035,4.137551],[117.015214,4.306094],[115.865517,4.306559],[115.519078,3.169238],[115.134037,2.821482],[114.621355,1.430688],[113.80585,1.217549],[112.859809,1.49779],[112.380252,1.410121],[111.797548,0.904441],[111.159138,0.976478],[110.514061,0.773131],[109.830227,1.338136],[109.66326,2.006467],[110.396135,1.663775],[111.168853,1.850637],[111.370081,2.697303],[111.796928,2.885897],[112.995615,3.102395],[113.712935,3.893509],[114.204017,4.525874],[114.659596,4.007637],[114.869557,4.348314],[115.347461,4.316636],[115.4057,4.955228],[115.45071,5.44773],[116.220741,6.143191],[116.725103,6.924771],[117.129626,6.928053],[117.643393,6.422166],[117.689075,5.98749],[118.347691,5.708696],[119.181904,5.407836],[119.110694,5.016128],[118.439727,4.966519],[118.618321,4.478202]]]]}} ]} ================================================ FILE: test/fixtures/world/MYS_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 0 ], [ 101.25, 5.61598582 ], [ 106.875, 5.61598582 ], [ 106.875, 0 ], [ 101.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 5.61598582 ], [ 101.25, 11.17840187 ], [ 106.875, 11.17840187 ], [ 106.875, 5.61598582 ], [ 101.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 0 ], [ 106.875, 5.61598582 ], [ 112.5, 5.61598582 ], [ 112.5, 0 ], [ 106.875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 0 ], [ 112.5, 11.17840187 ], [ 123.75, 11.17840187 ], [ 123.75, 0 ], [ 112.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 0 ], [ 95.625, 5.61598582 ], [ 101.25, 5.61598582 ], [ 101.25, 0 ], [ 95.625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 5.61598582 ], [ 95.625, 11.17840187 ], [ 101.25, 11.17840187 ], [ 101.25, 5.61598582 ], [ 95.625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.075516, 6.204867 ], [ 101.154219, 5.691384 ], [ 101.814282, 5.810808 ], [ 102.141187, 6.221636 ], [ 102.371147, 6.128205 ], [ 102.961705, 5.524495 ], [ 103.381215, 4.855001 ], [ 103.438575, 4.181606 ], [ 103.332122, 3.726698 ], [ 103.429429, 3.382869 ], [ 103.502448, 2.791019 ], [ 103.854674, 2.515454 ], [ 104.247932, 1.631141 ], [ 104.228811, 1.293048 ], [ 103.519707, 1.226334 ], [ 102.573615, 1.967115 ], [ 101.390638, 2.760814 ], [ 101.27354, 3.270292 ], [ 100.695435, 3.93914 ], [ 100.557408, 4.76728 ], [ 100.196706, 5.312493 ], [ 100.30626, 6.040562 ], [ 100.085757, 6.464489 ], [ 100.259596, 6.642825 ], [ 101.075516, 6.204867 ] ] ], [ [ [ 118.618321, 4.478202 ], [ 117.882035, 4.137551 ], [ 117.015214, 4.306094 ], [ 115.865517, 4.306559 ], [ 115.519078, 3.169238 ], [ 115.134037, 2.821482 ], [ 114.621355, 1.430688 ], [ 113.80585, 1.217549 ], [ 112.859809, 1.49779 ], [ 112.380252, 1.410121 ], [ 111.797548, 0.904441 ], [ 111.159138, 0.976478 ], [ 110.514061, 0.773131 ], [ 109.830227, 1.338136 ], [ 109.66326, 2.006467 ], [ 110.396135, 1.663775 ], [ 111.168853, 1.850637 ], [ 111.370081, 2.697303 ], [ 111.796928, 2.885897 ], [ 112.995615, 3.102395 ], [ 113.712935, 3.893509 ], [ 114.204017, 4.525874 ], [ 114.659596, 4.007637 ], [ 114.869557, 4.348314 ], [ 115.347461, 4.316636 ], [ 115.4057, 4.955228 ], [ 115.45071, 5.44773 ], [ 116.220741, 6.143191 ], [ 116.725103, 6.924771 ], [ 117.129626, 6.928053 ], [ 117.643393, 6.422166 ], [ 117.689075, 5.98749 ], [ 118.347691, 5.708696 ], [ 119.181904, 5.407836 ], [ 119.110694, 5.016128 ], [ 118.439727, 4.966519 ], [ 118.618321, 4.478202 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/NAM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"NAM","properties":{"name":"Namibia"},"geometry":{"type":"Polygon","coordinates":[[[16.344977,-28.576705],[15.601818,-27.821247],[15.210472,-27.090956],[14.989711,-26.117372],[14.743214,-25.39292],[14.408144,-23.853014],[14.385717,-22.656653],[14.257714,-22.111208],[13.868642,-21.699037],[13.352498,-20.872834],[12.826845,-19.673166],[12.608564,-19.045349],[11.794919,-18.069129],[11.734199,-17.301889],[12.215461,-17.111668],[12.814081,-16.941343],[13.462362,-16.971212],[14.058501,-17.423381],[14.209707,-17.353101],[18.263309,-17.309951],[18.956187,-17.789095],[21.377176,-17.930636],[23.215048,-17.523116],[24.033862,-17.295843],[24.682349,-17.353411],[25.07695,-17.578823],[25.084443,-17.661816],[24.520705,-17.887125],[24.217365,-17.889347],[23.579006,-18.281261],[23.196858,-17.869038],[21.65504,-18.219146],[20.910641,-18.252219],[20.881134,-21.814327],[19.895458,-21.849157],[19.895768,-24.76779],[19.894734,-28.461105],[19.002127,-28.972443],[18.464899,-29.045462],[17.836152,-28.856378],[17.387497,-28.783514],[17.218929,-28.355943],[16.824017,-28.082162],[16.344977,-28.576705]]]}} ]} ================================================ FILE: test/fixtures/world/NAM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, -21.94304553 ], [ 11.25, -16.63619188 ], [ 16.875, -16.63619188 ], [ 16.875, -21.94304553 ], [ 11.25, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, -31.95216224 ], [ 11.25, -21.94304553 ], [ 22.5, -21.94304553 ], [ 22.5, -31.95216224 ], [ 11.25, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -21.94304553 ], [ 16.875, -16.63619188 ], [ 22.5, -16.63619188 ], [ 22.5, -21.94304553 ], [ 16.875, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -21.94304553 ], [ 22.5, -16.63619188 ], [ 28.125, -16.63619188 ], [ 28.125, -21.94304553 ], [ 22.5, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.344977, -28.576705 ], [ 15.601818, -27.821247 ], [ 15.210472, -27.090956 ], [ 14.989711, -26.117372 ], [ 14.743214, -25.39292 ], [ 14.408144, -23.853014 ], [ 14.385717, -22.656653 ], [ 14.257714, -22.111208 ], [ 13.868642, -21.699037 ], [ 13.352498, -20.872834 ], [ 12.826845, -19.673166 ], [ 12.608564, -19.045349 ], [ 11.794919, -18.069129 ], [ 11.734199, -17.301889 ], [ 12.215461, -17.111668 ], [ 12.814081, -16.941343 ], [ 13.462362, -16.971212 ], [ 14.058501, -17.423381 ], [ 14.209707, -17.353101 ], [ 18.263309, -17.309951 ], [ 18.956187, -17.789095 ], [ 21.377176, -17.930636 ], [ 23.215048, -17.523116 ], [ 24.033862, -17.295843 ], [ 24.682349, -17.353411 ], [ 25.07695, -17.578823 ], [ 25.084443, -17.661816 ], [ 24.520705, -17.887125 ], [ 24.217365, -17.889347 ], [ 23.579006, -18.281261 ], [ 23.196858, -17.869038 ], [ 21.65504, -18.219146 ], [ 20.910641, -18.252219 ], [ 20.881134, -21.814327 ], [ 19.895458, -21.849157 ], [ 19.895768, -24.76779 ], [ 19.894734, -28.461105 ], [ 19.002127, -28.972443 ], [ 18.464899, -29.045462 ], [ 17.836152, -28.856378 ], [ 17.387497, -28.783514 ], [ 17.218929, -28.355943 ], [ 16.824017, -28.082162 ], [ 16.344977, -28.576705 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/NCL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"NCL","properties":{"name":"New Caledonia"},"geometry":{"type":"Polygon","coordinates":[[[165.77999,-21.080005],[166.599991,-21.700019],[167.120011,-22.159991],[166.740035,-22.399976],[166.189732,-22.129708],[165.474375,-21.679607],[164.829815,-21.14982],[164.167995,-20.444747],[164.029606,-20.105646],[164.459967,-20.120012],[165.020036,-20.459991],[165.460009,-20.800022],[165.77999,-21.080005]]]}} ]} ================================================ FILE: test/fixtures/world/NCL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, -21.94304553 ], [ 163.125, -16.63619188 ], [ 168.75, -16.63619188 ], [ 168.75, -21.94304553 ], [ 163.125, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, -27.05912578 ], [ 163.125, -21.94304553 ], [ 168.75, -21.94304553 ], [ 168.75, -27.05912578 ], [ 163.125, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.77999, -21.080005 ], [ 166.599991, -21.700019 ], [ 167.120011, -22.159991 ], [ 166.740035, -22.399976 ], [ 166.189732, -22.129708 ], [ 165.474375, -21.679607 ], [ 164.829815, -21.14982 ], [ 164.167995, -20.444747 ], [ 164.029606, -20.105646 ], [ 164.459967, -20.120012 ], [ 165.020036, -20.459991 ], [ 165.460009, -20.800022 ], [ 165.77999, -21.080005 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/NER.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"NER","properties":{"name":"Niger"},"geometry":{"type":"Polygon","coordinates":[[[2.154474,11.94015],[2.177108,12.625018],[1.024103,12.851826],[0.993046,13.33575],[0.429928,13.988733],[0.295646,14.444235],[0.374892,14.928908],[1.015783,14.968182],[1.385528,15.323561],[2.749993,15.409525],[3.638259,15.56812],[3.723422,16.184284],[4.27021,16.852227],[4.267419,19.155265],[5.677566,19.601207],[8.572893,21.565661],[11.999506,23.471668],[13.581425,23.040506],[14.143871,22.491289],[14.8513,22.86295],[15.096888,21.308519],[15.471077,21.048457],[15.487148,20.730415],[15.903247,20.387619],[15.685741,19.95718],[15.300441,17.92795],[15.247731,16.627306],[13.972202,15.684366],[13.540394,14.367134],[13.956699,13.996691],[13.954477,13.353449],[14.595781,13.330427],[14.495787,12.859396],[14.213531,12.802035],[14.181336,12.483657],[13.995353,12.461565],[13.318702,13.556356],[13.083987,13.596147],[12.302071,13.037189],[11.527803,13.32898],[10.989593,13.387323],[10.701032,13.246918],[10.114814,13.277252],[9.524928,12.851102],[9.014933,12.826659],[7.804671,13.343527],[7.330747,13.098038],[6.820442,13.115091],[6.445426,13.492768],[5.443058,13.865924],[4.368344,13.747482],[4.107946,13.531216],[3.967283,12.956109],[3.680634,12.552903],[3.61118,11.660167],[2.848643,12.235636],[2.490164,12.233052],[2.154474,11.94015]]]}} ]} ================================================ FILE: test/fixtures/world/NER_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 11.17840187 ], [ 0, 21.94304553 ], [ 11.25, 21.94304553 ], [ 11.25, 11.17840187 ], [ 0, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 11.17840187 ], [ 11.25, 16.63619188 ], [ 16.875, 16.63619188 ], [ 16.875, 11.17840187 ], [ 11.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 16.63619188 ], [ 11.25, 21.94304553 ], [ 16.875, 21.94304553 ], [ 16.875, 16.63619188 ], [ 11.25, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 21.94304553 ], [ 11.25, 27.05912578 ], [ 16.875, 27.05912578 ], [ 16.875, 21.94304553 ], [ 11.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 21.94304553 ], [ 5.625, 27.05912578 ], [ 11.25, 27.05912578 ], [ 11.25, 21.94304553 ], [ 5.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.154474, 11.94015 ], [ 2.177108, 12.625018 ], [ 1.024103, 12.851826 ], [ 0.993046, 13.33575 ], [ 0.429928, 13.988733 ], [ 0.295646, 14.444235 ], [ 0.374892, 14.928908 ], [ 1.015783, 14.968182 ], [ 1.385528, 15.323561 ], [ 2.749993, 15.409525 ], [ 3.638259, 15.56812 ], [ 3.723422, 16.184284 ], [ 4.27021, 16.852227 ], [ 4.267419, 19.155265 ], [ 5.677566, 19.601207 ], [ 8.572893, 21.565661 ], [ 11.999506, 23.471668 ], [ 13.581425, 23.040506 ], [ 14.143871, 22.491289 ], [ 14.8513, 22.86295 ], [ 15.096888, 21.308519 ], [ 15.471077, 21.048457 ], [ 15.487148, 20.730415 ], [ 15.903247, 20.387619 ], [ 15.685741, 19.95718 ], [ 15.300441, 17.92795 ], [ 15.247731, 16.627306 ], [ 13.972202, 15.684366 ], [ 13.540394, 14.367134 ], [ 13.956699, 13.996691 ], [ 13.954477, 13.353449 ], [ 14.595781, 13.330427 ], [ 14.495787, 12.859396 ], [ 14.213531, 12.802035 ], [ 14.181336, 12.483657 ], [ 13.995353, 12.461565 ], [ 13.318702, 13.556356 ], [ 13.083987, 13.596147 ], [ 12.302071, 13.037189 ], [ 11.527803, 13.32898 ], [ 10.989593, 13.387323 ], [ 10.701032, 13.246918 ], [ 10.114814, 13.277252 ], [ 9.524928, 12.851102 ], [ 9.014933, 12.826659 ], [ 7.804671, 13.343527 ], [ 7.330747, 13.098038 ], [ 6.820442, 13.115091 ], [ 6.445426, 13.492768 ], [ 5.443058, 13.865924 ], [ 4.368344, 13.747482 ], [ 4.107946, 13.531216 ], [ 3.967283, 12.956109 ], [ 3.680634, 12.552903 ], [ 3.61118, 11.660167 ], [ 2.848643, 12.235636 ], [ 2.490164, 12.233052 ], [ 2.154474, 11.94015 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/NGA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"NGA","properties":{"name":"Nigeria"},"geometry":{"type":"Polygon","coordinates":[[[8.500288,4.771983],[7.462108,4.412108],[7.082596,4.464689],[6.698072,4.240594],[5.898173,4.262453],[5.362805,4.887971],[5.033574,5.611802],[4.325607,6.270651],[3.57418,6.2583],[2.691702,6.258817],[2.749063,7.870734],[2.723793,8.506845],[2.912308,9.137608],[3.220352,9.444153],[3.705438,10.06321],[3.60007,10.332186],[3.797112,10.734746],[3.572216,11.327939],[3.61118,11.660167],[3.680634,12.552903],[3.967283,12.956109],[4.107946,13.531216],[4.368344,13.747482],[5.443058,13.865924],[6.445426,13.492768],[6.820442,13.115091],[7.330747,13.098038],[7.804671,13.343527],[9.014933,12.826659],[9.524928,12.851102],[10.114814,13.277252],[10.701032,13.246918],[10.989593,13.387323],[11.527803,13.32898],[12.302071,13.037189],[13.083987,13.596147],[13.318702,13.556356],[13.995353,12.461565],[14.181336,12.483657],[14.577178,12.085361],[14.468192,11.904752],[14.415379,11.572369],[13.57295,10.798566],[13.308676,10.160362],[13.1676,9.640626],[12.955468,9.417772],[12.753672,8.717763],[12.218872,8.305824],[12.063946,7.799808],[11.839309,7.397042],[11.745774,6.981383],[11.058788,6.644427],[10.497375,7.055358],[10.118277,7.03877],[9.522706,6.453482],[9.233163,6.444491],[8.757533,5.479666],[8.500288,4.771983]]]}} ]} ================================================ FILE: test/fixtures/world/NGA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 0 ], [ 0, 11.17840187 ], [ 11.25, 11.17840187 ], [ 11.25, 0 ], [ 0, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 11.17840187 ], [ 0, 16.63619188 ], [ 5.625, 16.63619188 ], [ 5.625, 11.17840187 ], [ 0, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 11.17840187 ], [ 11.25, 16.63619188 ], [ 16.875, 16.63619188 ], [ 16.875, 11.17840187 ], [ 11.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 5.61598582 ], [ 11.25, 11.17840187 ], [ 16.875, 11.17840187 ], [ 16.875, 5.61598582 ], [ 11.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 11.17840187 ], [ 5.625, 16.63619188 ], [ 11.25, 16.63619188 ], [ 11.25, 11.17840187 ], [ 5.625, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.500288, 4.771983 ], [ 7.462108, 4.412108 ], [ 7.082596, 4.464689 ], [ 6.698072, 4.240594 ], [ 5.898173, 4.262453 ], [ 5.362805, 4.887971 ], [ 5.033574, 5.611802 ], [ 4.325607, 6.270651 ], [ 3.57418, 6.2583 ], [ 2.691702, 6.258817 ], [ 2.749063, 7.870734 ], [ 2.723793, 8.506845 ], [ 2.912308, 9.137608 ], [ 3.220352, 9.444153 ], [ 3.705438, 10.06321 ], [ 3.60007, 10.332186 ], [ 3.797112, 10.734746 ], [ 3.572216, 11.327939 ], [ 3.61118, 11.660167 ], [ 3.680634, 12.552903 ], [ 3.967283, 12.956109 ], [ 4.107946, 13.531216 ], [ 4.368344, 13.747482 ], [ 5.443058, 13.865924 ], [ 6.445426, 13.492768 ], [ 6.820442, 13.115091 ], [ 7.330747, 13.098038 ], [ 7.804671, 13.343527 ], [ 9.014933, 12.826659 ], [ 9.524928, 12.851102 ], [ 10.114814, 13.277252 ], [ 10.701032, 13.246918 ], [ 10.989593, 13.387323 ], [ 11.527803, 13.32898 ], [ 12.302071, 13.037189 ], [ 13.083987, 13.596147 ], [ 13.318702, 13.556356 ], [ 13.995353, 12.461565 ], [ 14.181336, 12.483657 ], [ 14.577178, 12.085361 ], [ 14.468192, 11.904752 ], [ 14.415379, 11.572369 ], [ 13.57295, 10.798566 ], [ 13.308676, 10.160362 ], [ 13.1676, 9.640626 ], [ 12.955468, 9.417772 ], [ 12.753672, 8.717763 ], [ 12.218872, 8.305824 ], [ 12.063946, 7.799808 ], [ 11.839309, 7.397042 ], [ 11.745774, 6.981383 ], [ 11.058788, 6.644427 ], [ 10.497375, 7.055358 ], [ 10.118277, 7.03877 ], [ 9.522706, 6.453482 ], [ 9.233163, 6.444491 ], [ 8.757533, 5.479666 ], [ 8.500288, 4.771983 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/NIC.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"NIC","properties":{"name":"Nicaragua"},"geometry":{"type":"Polygon","coordinates":[[[-85.71254,11.088445],[-86.058488,11.403439],[-86.52585,11.806877],[-86.745992,12.143962],[-87.167516,12.458258],[-87.668493,12.90991],[-87.557467,13.064552],[-87.392386,12.914018],[-87.316654,12.984686],[-87.005769,13.025794],[-86.880557,13.254204],[-86.733822,13.263093],[-86.755087,13.754845],[-86.520708,13.778487],[-86.312142,13.771356],[-86.096264,14.038187],[-85.801295,13.836055],[-85.698665,13.960078],[-85.514413,14.079012],[-85.165365,14.35437],[-85.148751,14.560197],[-85.052787,14.551541],[-84.924501,14.790493],[-84.820037,14.819587],[-84.649582,14.666805],[-84.449336,14.621614],[-84.228342,14.748764],[-83.975721,14.749436],[-83.628585,14.880074],[-83.489989,15.016267],[-83.147219,14.995829],[-83.233234,14.899866],[-83.284162,14.676624],[-83.182126,14.310703],[-83.4125,13.970078],[-83.519832,13.567699],[-83.552207,13.127054],[-83.498515,12.869292],[-83.473323,12.419087],[-83.626104,12.32085],[-83.719613,11.893124],[-83.650858,11.629032],[-83.85547,11.373311],[-83.808936,11.103044],[-83.655612,10.938764],[-83.895054,10.726839],[-84.190179,10.79345],[-84.355931,10.999226],[-84.673069,11.082657],[-84.903003,10.952303],[-85.561852,11.217119],[-85.71254,11.088445]]]}} ]} ================================================ FILE: test/fixtures/world/NIC_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 11.17840187 ], [ -84.375, 16.63619188 ], [ -78.75, 16.63619188 ], [ -78.75, 11.17840187 ], [ -84.375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 5.61598582 ], [ -84.375, 11.17840187 ], [ -78.75, 11.17840187 ], [ -78.75, 5.61598582 ], [ -84.375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 11.17840187 ], [ -90, 16.63619188 ], [ -84.375, 16.63619188 ], [ -84.375, 11.17840187 ], [ -90, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 5.61598582 ], [ -90, 11.17840187 ], [ -84.375, 11.17840187 ], [ -84.375, 5.61598582 ], [ -90, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.71254, 11.088445 ], [ -86.058488, 11.403439 ], [ -86.52585, 11.806877 ], [ -86.745992, 12.143962 ], [ -87.167516, 12.458258 ], [ -87.668493, 12.90991 ], [ -87.557467, 13.064552 ], [ -87.392386, 12.914018 ], [ -87.316654, 12.984686 ], [ -87.005769, 13.025794 ], [ -86.880557, 13.254204 ], [ -86.733822, 13.263093 ], [ -86.755087, 13.754845 ], [ -86.520708, 13.778487 ], [ -86.312142, 13.771356 ], [ -86.096264, 14.038187 ], [ -85.801295, 13.836055 ], [ -85.698665, 13.960078 ], [ -85.514413, 14.079012 ], [ -85.165365, 14.35437 ], [ -85.148751, 14.560197 ], [ -85.052787, 14.551541 ], [ -84.924501, 14.790493 ], [ -84.820037, 14.819587 ], [ -84.649582, 14.666805 ], [ -84.449336, 14.621614 ], [ -84.228342, 14.748764 ], [ -83.975721, 14.749436 ], [ -83.628585, 14.880074 ], [ -83.489989, 15.016267 ], [ -83.147219, 14.995829 ], [ -83.233234, 14.899866 ], [ -83.284162, 14.676624 ], [ -83.182126, 14.310703 ], [ -83.4125, 13.970078 ], [ -83.519832, 13.567699 ], [ -83.552207, 13.127054 ], [ -83.498515, 12.869292 ], [ -83.473323, 12.419087 ], [ -83.626104, 12.32085 ], [ -83.719613, 11.893124 ], [ -83.650858, 11.629032 ], [ -83.85547, 11.373311 ], [ -83.808936, 11.103044 ], [ -83.655612, 10.938764 ], [ -83.895054, 10.726839 ], [ -84.190179, 10.79345 ], [ -84.355931, 10.999226 ], [ -84.673069, 11.082657 ], [ -84.903003, 10.952303 ], [ -85.561852, 11.217119 ], [ -85.71254, 11.088445 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/NLD.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"NLD","properties":{"name":"Netherlands"},"geometry":{"type":"Polygon","coordinates":[[[6.074183,53.510403],[6.90514,53.482162],[7.092053,53.144043],[6.84287,52.22844],[6.589397,51.852029],[5.988658,51.851616],[6.156658,50.803721],[5.606976,51.037298],[4.973991,51.475024],[4.047071,51.267259],[3.314971,51.345755],[3.830289,51.620545],[4.705997,53.091798],[6.074183,53.510403]]]}} ]} ================================================ FILE: test/fixtures/world/NLD_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 48.92249926 ], [ 0, 55.77657302 ], [ 11.25, 55.77657302 ], [ 11.25, 48.92249926 ], [ 0, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.074183, 53.510403 ], [ 6.90514, 53.482162 ], [ 7.092053, 53.144043 ], [ 6.84287, 52.22844 ], [ 6.589397, 51.852029 ], [ 5.988658, 51.851616 ], [ 6.156658, 50.803721 ], [ 5.606976, 51.037298 ], [ 4.973991, 51.475024 ], [ 4.047071, 51.267259 ], [ 3.314971, 51.345755 ], [ 3.830289, 51.620545 ], [ 4.705997, 53.091798 ], [ 6.074183, 53.510403 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/NOR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"NOR","properties":{"name":"Norway"},"geometry":{"type":"MultiPolygon","coordinates":[[[[28.165547,71.185474],[31.293418,70.453788],[30.005435,70.186259],[31.101079,69.55808],[29.399581,69.156916],[28.59193,69.064777],[29.015573,69.766491],[27.732292,70.164193],[26.179622,69.825299],[25.689213,69.092114],[24.735679,68.649557],[23.66205,68.891247],[22.356238,68.841741],[21.244936,69.370443],[20.645593,69.106247],[20.025269,69.065139],[19.87856,68.407194],[17.993868,68.567391],[17.729182,68.010552],[16.768879,68.013937],[16.108712,67.302456],[15.108411,66.193867],[13.55569,64.787028],[13.919905,64.445421],[13.571916,64.049114],[12.579935,64.066219],[11.930569,63.128318],[11.992064,61.800362],[12.631147,61.293572],[12.300366,60.117933],[11.468272,59.432393],[11.027369,58.856149],[10.356557,59.469807],[8.382,58.313288],[7.048748,58.078884],[5.665835,58.588155],[5.308234,59.663232],[4.992078,61.970998],[5.9129,62.614473],[8.553411,63.454008],[10.527709,64.486038],[12.358347,65.879726],[14.761146,67.810642],[16.435927,68.563205],[19.184028,69.817444],[21.378416,70.255169],[23.023742,70.202072],[24.546543,71.030497],[26.37005,70.986262],[28.165547,71.185474]]],[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[21.41611,77.93504],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[25.447625,80.40734],[27.407506,80.056406],[25.924651,79.517834],[23.024466,79.400012],[20.075188,79.566823],[19.897266,79.842362],[18.462264,79.85988],[17.368015,80.318896],[20.455992,80.598156],[21.907945,80.357679],[22.919253,80.657144],[25.447625,80.40734]]]]}} ]} ================================================ FILE: test/fixtures/world/NOR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 55.77657302 ], [ 0, 61.60639637 ], [ 11.25, 61.60639637 ], [ 11.25, 55.77657302 ], [ 0, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 61.60639637 ], [ 0, 64.1681069 ], [ 5.625, 64.1681069 ], [ 5.625, 61.60639637 ], [ 0, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 58.81374172 ], [ 11.25, 61.60639637 ], [ 16.875, 61.60639637 ], [ 16.875, 58.81374172 ], [ 11.25, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 61.60639637 ], [ 11.25, 64.1681069 ], [ 16.875, 64.1681069 ], [ 16.875, 61.60639637 ], [ 11.25, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 64.1681069 ], [ 11.25, 66.51326044 ], [ 16.875, 66.51326044 ], [ 16.875, 64.1681069 ], [ 11.25, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 66.51326044 ], [ 11.25, 70.61261424 ], [ 22.5, 70.61261424 ], [ 22.5, 66.51326044 ], [ 11.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 75.49715732 ], [ 11.25, 76.84081641 ], [ 16.875, 76.84081641 ], [ 16.875, 75.49715732 ], [ 11.25, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 76.84081641 ], [ 11.25, 79.17133464 ], [ 22.5, 79.17133464 ], [ 22.5, 76.84081641 ], [ 11.25, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 79.17133464 ], [ 11.25, 80.1787135 ], [ 16.875, 80.1787135 ], [ 16.875, 79.17133464 ], [ 11.25, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 75.49715732 ], [ 16.875, 76.84081641 ], [ 22.5, 76.84081641 ], [ 22.5, 75.49715732 ], [ 16.875, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 79.17133464 ], [ 16.875, 80.1787135 ], [ 22.5, 80.1787135 ], [ 22.5, 79.17133464 ], [ 16.875, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 80.1787135 ], [ 16.875, 81.09321385 ], [ 22.5, 81.09321385 ], [ 22.5, 80.1787135 ], [ 16.875, 80.1787135 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 66.51326044 ], [ 22.5, 68.65655498 ], [ 28.125, 68.65655498 ], [ 28.125, 66.51326044 ], [ 22.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 68.65655498 ], [ 22.5, 70.61261424 ], [ 28.125, 70.61261424 ], [ 28.125, 68.65655498 ], [ 22.5, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 70.61261424 ], [ 22.5, 72.39570571 ], [ 28.125, 72.39570571 ], [ 28.125, 70.61261424 ], [ 22.5, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 76.84081641 ], [ 22.5, 78.06198919 ], [ 28.125, 78.06198919 ], [ 28.125, 76.84081641 ], [ 22.5, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 78.06198919 ], [ 22.5, 79.17133464 ], [ 28.125, 79.17133464 ], [ 28.125, 78.06198919 ], [ 22.5, 78.06198919 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 79.17133464 ], [ 22.5, 80.1787135 ], [ 28.125, 80.1787135 ], [ 28.125, 79.17133464 ], [ 22.5, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 80.1787135 ], [ 22.5, 81.09321385 ], [ 28.125, 81.09321385 ], [ 28.125, 80.1787135 ], [ 22.5, 80.1787135 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 68.65655498 ], [ 28.125, 70.61261424 ], [ 33.75, 70.61261424 ], [ 33.75, 68.65655498 ], [ 28.125, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 70.61261424 ], [ 28.125, 72.39570571 ], [ 33.75, 72.39570571 ], [ 33.75, 70.61261424 ], [ 28.125, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 61.60639637 ], [ 5.625, 64.1681069 ], [ 11.25, 64.1681069 ], [ 11.25, 61.60639637 ], [ 5.625, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 64.1681069 ], [ 5.625, 66.51326044 ], [ 11.25, 66.51326044 ], [ 11.25, 64.1681069 ], [ 5.625, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 78.06198919 ], [ 5.625, 79.17133464 ], [ 11.25, 79.17133464 ], [ 11.25, 78.06198919 ], [ 5.625, 78.06198919 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 79.17133464 ], [ 5.625, 80.1787135 ], [ 11.25, 80.1787135 ], [ 11.25, 79.17133464 ], [ 5.625, 79.17133464 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.165547, 71.185474 ], [ 31.293418, 70.453788 ], [ 30.005435, 70.186259 ], [ 31.101079, 69.55808 ], [ 29.399581, 69.156916 ], [ 28.59193, 69.064777 ], [ 29.015573, 69.766491 ], [ 27.732292, 70.164193 ], [ 26.179622, 69.825299 ], [ 25.689213, 69.092114 ], [ 24.735679, 68.649557 ], [ 23.66205, 68.891247 ], [ 22.356238, 68.841741 ], [ 21.244936, 69.370443 ], [ 20.645593, 69.106247 ], [ 20.025269, 69.065139 ], [ 19.87856, 68.407194 ], [ 17.993868, 68.567391 ], [ 17.729182, 68.010552 ], [ 16.768879, 68.013937 ], [ 16.108712, 67.302456 ], [ 15.108411, 66.193867 ], [ 13.55569, 64.787028 ], [ 13.919905, 64.445421 ], [ 13.571916, 64.049114 ], [ 12.579935, 64.066219 ], [ 11.930569, 63.128318 ], [ 11.992064, 61.800362 ], [ 12.631147, 61.293572 ], [ 12.300366, 60.117933 ], [ 11.468272, 59.432393 ], [ 11.027369, 58.856149 ], [ 10.356557, 59.469807 ], [ 8.382, 58.313288 ], [ 7.048748, 58.078884 ], [ 5.665835, 58.588155 ], [ 5.308234, 59.663232 ], [ 4.992078, 61.970998 ], [ 5.9129, 62.614473 ], [ 8.553411, 63.454008 ], [ 10.527709, 64.486038 ], [ 12.358347, 65.879726 ], [ 14.761146, 67.810642 ], [ 16.435927, 68.563205 ], [ 19.184028, 69.817444 ], [ 21.378416, 70.255169 ], [ 23.023742, 70.202072 ], [ 24.546543, 71.030497 ], [ 26.37005, 70.986262 ], [ 28.165547, 71.185474 ] ] ], [ [ [ 24.72412, 77.85385 ], [ 22.49032, 77.44493 ], [ 20.72601, 77.67704 ], [ 21.41611, 77.93504 ], [ 20.8119, 78.25463 ], [ 22.88426, 78.45494 ], [ 23.28134, 78.07954 ], [ 24.72412, 77.85385 ] ] ], [ [ [ 18.25183, 79.70175 ], [ 21.54383, 78.95611 ], [ 19.02737, 78.5626 ], [ 18.47172, 77.82669 ], [ 17.59441, 77.63796 ], [ 17.1182, 76.80941 ], [ 15.91315, 76.77045 ], [ 13.76259, 77.38035 ], [ 14.66956, 77.73565 ], [ 13.1706, 78.02493 ], [ 11.22231, 78.8693 ], [ 10.44453, 79.65239 ], [ 13.17077, 80.01046 ], [ 13.71852, 79.66039 ], [ 15.14282, 79.67431 ], [ 15.52255, 80.01608 ], [ 16.99085, 80.05086 ], [ 18.25183, 79.70175 ] ] ], [ [ [ 25.447625, 80.40734 ], [ 27.407506, 80.056406 ], [ 25.924651, 79.517834 ], [ 23.024466, 79.400012 ], [ 20.075188, 79.566823 ], [ 19.897266, 79.842362 ], [ 18.462264, 79.85988 ], [ 17.368015, 80.318896 ], [ 20.455992, 80.598156 ], [ 21.907945, 80.357679 ], [ 22.919253, 80.657144 ], [ 25.447625, 80.40734 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/NPL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"NPL","properties":{"name":"Nepal"},"geometry":{"type":"Polygon","coordinates":[[[88.120441,27.876542],[88.043133,27.445819],[88.174804,26.810405],[88.060238,26.414615],[87.227472,26.397898],[86.024393,26.630985],[85.251779,26.726198],[84.675018,27.234901],[83.304249,27.364506],[81.999987,27.925479],[81.057203,28.416095],[80.088425,28.79447],[80.476721,29.729865],[81.111256,30.183481],[81.525804,30.422717],[82.327513,30.115268],[83.337115,29.463732],[83.898993,29.320226],[84.23458,28.839894],[85.011638,28.642774],[85.82332,28.203576],[86.954517,27.974262],[88.120441,27.876542]]]}} ]} ================================================ FILE: test/fixtures/world/NPL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 27.05912578 ], [ 78.75, 31.95216224 ], [ 84.375, 31.95216224 ], [ 84.375, 27.05912578 ], [ 78.75, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 21.94304553 ], [ 84.375, 27.05912578 ], [ 90, 27.05912578 ], [ 90, 21.94304553 ], [ 84.375, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 27.05912578 ], [ 84.375, 31.95216224 ], [ 90, 31.95216224 ], [ 90, 27.05912578 ], [ 84.375, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.120441, 27.876542 ], [ 88.043133, 27.445819 ], [ 88.174804, 26.810405 ], [ 88.060238, 26.414615 ], [ 87.227472, 26.397898 ], [ 86.024393, 26.630985 ], [ 85.251779, 26.726198 ], [ 84.675018, 27.234901 ], [ 83.304249, 27.364506 ], [ 81.999987, 27.925479 ], [ 81.057203, 28.416095 ], [ 80.088425, 28.79447 ], [ 80.476721, 29.729865 ], [ 81.111256, 30.183481 ], [ 81.525804, 30.422717 ], [ 82.327513, 30.115268 ], [ 83.337115, 29.463732 ], [ 83.898993, 29.320226 ], [ 84.23458, 28.839894 ], [ 85.011638, 28.642774 ], [ 85.82332, 28.203576 ], [ 86.954517, 27.974262 ], [ 88.120441, 27.876542 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/NZL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"NZL","properties":{"name":"New Zealand"},"geometry":{"type":"MultiPolygon","coordinates":[[[[173.020375,-40.919052],[173.247234,-41.331999],[173.958405,-40.926701],[174.247587,-41.349155],[174.248517,-41.770008],[173.876447,-42.233184],[173.22274,-42.970038],[172.711246,-43.372288],[173.080113,-43.853344],[172.308584,-43.865694],[171.452925,-44.242519],[171.185138,-44.897104],[170.616697,-45.908929],[169.831422,-46.355775],[169.332331,-46.641235],[168.411354,-46.619945],[167.763745,-46.290197],[166.676886,-46.219917],[166.509144,-45.852705],[167.046424,-45.110941],[168.303763,-44.123973],[168.949409,-43.935819],[169.667815,-43.555326],[170.52492,-43.031688],[171.12509,-42.512754],[171.569714,-41.767424],[171.948709,-41.514417],[172.097227,-40.956104],[172.79858,-40.493962],[173.020375,-40.919052]]],[[[174.612009,-36.156397],[175.336616,-37.209098],[175.357596,-36.526194],[175.808887,-36.798942],[175.95849,-37.555382],[176.763195,-37.881253],[177.438813,-37.961248],[178.010354,-37.579825],[178.517094,-37.695373],[178.274731,-38.582813],[177.97046,-39.166343],[177.206993,-39.145776],[176.939981,-39.449736],[177.032946,-39.879943],[176.885824,-40.065978],[176.508017,-40.604808],[176.01244,-41.289624],[175.239567,-41.688308],[175.067898,-41.425895],[174.650973,-41.281821],[175.22763,-40.459236],[174.900157,-39.908933],[173.824047,-39.508854],[173.852262,-39.146602],[174.574802,-38.797683],[174.743474,-38.027808],[174.697017,-37.381129],[174.292028,-36.711092],[174.319004,-36.534824],[173.840997,-36.121981],[173.054171,-35.237125],[172.636005,-34.529107],[173.007042,-34.450662],[173.551298,-35.006183],[174.32939,-35.265496],[174.612009,-36.156397]]]]}} ]} ================================================ FILE: test/fixtures/world/NZL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, -45.08903556 ], [ 163.125, -40.97989807 ], [ 168.75, -40.97989807 ], [ 168.75, -45.08903556 ], [ 163.125, -45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, -48.92249926 ], [ 163.125, -45.08903556 ], [ 168.75, -45.08903556 ], [ 168.75, -48.92249926 ], [ 163.125, -48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, -40.97989807 ], [ 168.75, -31.95216224 ], [ 180, -31.95216224 ], [ 180, -40.97989807 ], [ 168.75, -40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, -45.08903556 ], [ 168.75, -40.97989807 ], [ 174.375, -40.97989807 ], [ 174.375, -45.08903556 ], [ 168.75, -45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, -48.92249926 ], [ 168.75, -45.08903556 ], [ 174.375, -45.08903556 ], [ 174.375, -48.92249926 ], [ 168.75, -48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.375, -45.08903556 ], [ 174.375, -40.97989807 ], [ 180, -40.97989807 ], [ 180, -45.08903556 ], [ 174.375, -45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.020375, -40.919052 ], [ 173.247234, -41.331999 ], [ 173.958405, -40.926701 ], [ 174.247587, -41.349155 ], [ 174.248517, -41.770008 ], [ 173.876447, -42.233184 ], [ 173.22274, -42.970038 ], [ 172.711246, -43.372288 ], [ 173.080113, -43.853344 ], [ 172.308584, -43.865694 ], [ 171.452925, -44.242519 ], [ 171.185138, -44.897104 ], [ 170.616697, -45.908929 ], [ 169.831422, -46.355775 ], [ 169.332331, -46.641235 ], [ 168.411354, -46.619945 ], [ 167.763745, -46.290197 ], [ 166.676886, -46.219917 ], [ 166.509144, -45.852705 ], [ 167.046424, -45.110941 ], [ 168.303763, -44.123973 ], [ 168.949409, -43.935819 ], [ 169.667815, -43.555326 ], [ 170.52492, -43.031688 ], [ 171.12509, -42.512754 ], [ 171.569714, -41.767424 ], [ 171.948709, -41.514417 ], [ 172.097227, -40.956104 ], [ 172.79858, -40.493962 ], [ 173.020375, -40.919052 ] ] ], [ [ [ 174.612009, -36.156397 ], [ 175.336616, -37.209098 ], [ 175.357596, -36.526194 ], [ 175.808887, -36.798942 ], [ 175.95849, -37.555382 ], [ 176.763195, -37.881253 ], [ 177.438813, -37.961248 ], [ 178.010354, -37.579825 ], [ 178.517094, -37.695373 ], [ 178.274731, -38.582813 ], [ 177.97046, -39.166343 ], [ 177.206993, -39.145776 ], [ 176.939981, -39.449736 ], [ 177.032946, -39.879943 ], [ 176.885824, -40.065978 ], [ 176.508017, -40.604808 ], [ 176.01244, -41.289624 ], [ 175.239567, -41.688308 ], [ 175.067898, -41.425895 ], [ 174.650973, -41.281821 ], [ 175.22763, -40.459236 ], [ 174.900157, -39.908933 ], [ 173.824047, -39.508854 ], [ 173.852262, -39.146602 ], [ 174.574802, -38.797683 ], [ 174.743474, -38.027808 ], [ 174.697017, -37.381129 ], [ 174.292028, -36.711092 ], [ 174.319004, -36.534824 ], [ 173.840997, -36.121981 ], [ 173.054171, -35.237125 ], [ 172.636005, -34.529107 ], [ 173.007042, -34.450662 ], [ 173.551298, -35.006183 ], [ 174.32939, -35.265496 ], [ 174.612009, -36.156397 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/OMN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"OMN","properties":{"name":"Oman"},"geometry":{"type":"MultiPolygon","coordinates":[[[[58.861141,21.114035],[58.487986,20.428986],[58.034318,20.481437],[57.826373,20.243002],[57.665762,19.736005],[57.7887,19.06757],[57.694391,18.94471],[57.234264,18.947991],[56.609651,18.574267],[56.512189,18.087113],[56.283521,17.876067],[55.661492,17.884128],[55.269939,17.632309],[55.2749,17.228354],[54.791002,16.950697],[54.239253,17.044981],[53.570508,16.707663],[53.108573,16.651051],[52.782184,17.349742],[52.00001,19.000003],[54.999982,19.999994],[55.666659,22.000001],[55.208341,22.70833],[55.234489,23.110993],[55.525841,23.524869],[55.528632,23.933604],[55.981214,24.130543],[55.804119,24.269604],[55.886233,24.920831],[56.396847,24.924732],[56.84514,24.241673],[57.403453,23.878594],[58.136948,23.747931],[58.729211,23.565668],[59.180502,22.992395],[59.450098,22.660271],[59.80806,22.533612],[59.806148,22.310525],[59.442191,21.714541],[59.282408,21.433886],[58.861141,21.114035]]],[[[56.391421,25.895991],[56.261042,25.714606],[56.070821,26.055464],[56.362017,26.395934],[56.485679,26.309118],[56.391421,25.895991]]]]}} ]} ================================================ FILE: test/fixtures/world/OMN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 16.63619188 ], [ 50.625, 21.94304553 ], [ 56.25, 21.94304553 ], [ 56.25, 16.63619188 ], [ 50.625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 21.94304553 ], [ 50.625, 27.05912578 ], [ 56.25, 27.05912578 ], [ 56.25, 21.94304553 ], [ 50.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 16.63619188 ], [ 56.25, 21.94304553 ], [ 61.875, 21.94304553 ], [ 61.875, 16.63619188 ], [ 56.25, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 21.94304553 ], [ 56.25, 27.05912578 ], [ 61.875, 27.05912578 ], [ 61.875, 21.94304553 ], [ 56.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.861141, 21.114035 ], [ 58.487986, 20.428986 ], [ 58.034318, 20.481437 ], [ 57.826373, 20.243002 ], [ 57.665762, 19.736005 ], [ 57.7887, 19.06757 ], [ 57.694391, 18.94471 ], [ 57.234264, 18.947991 ], [ 56.609651, 18.574267 ], [ 56.512189, 18.087113 ], [ 56.283521, 17.876067 ], [ 55.661492, 17.884128 ], [ 55.269939, 17.632309 ], [ 55.2749, 17.228354 ], [ 54.791002, 16.950697 ], [ 54.239253, 17.044981 ], [ 53.570508, 16.707663 ], [ 53.108573, 16.651051 ], [ 52.782184, 17.349742 ], [ 52.00001, 19.000003 ], [ 54.999982, 19.999994 ], [ 55.666659, 22.000001 ], [ 55.208341, 22.70833 ], [ 55.234489, 23.110993 ], [ 55.525841, 23.524869 ], [ 55.528632, 23.933604 ], [ 55.981214, 24.130543 ], [ 55.804119, 24.269604 ], [ 55.886233, 24.920831 ], [ 56.396847, 24.924732 ], [ 56.84514, 24.241673 ], [ 57.403453, 23.878594 ], [ 58.136948, 23.747931 ], [ 58.729211, 23.565668 ], [ 59.180502, 22.992395 ], [ 59.450098, 22.660271 ], [ 59.80806, 22.533612 ], [ 59.806148, 22.310525 ], [ 59.442191, 21.714541 ], [ 59.282408, 21.433886 ], [ 58.861141, 21.114035 ] ] ], [ [ [ 56.391421, 25.895991 ], [ 56.261042, 25.714606 ], [ 56.070821, 26.055464 ], [ 56.362017, 26.395934 ], [ 56.485679, 26.309118 ], [ 56.391421, 25.895991 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PAK.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PAK","properties":{"name":"Pakistan"},"geometry":{"type":"Polygon","coordinates":[[[75.158028,37.133031],[75.896897,36.666806],[76.192848,35.898403],[77.837451,35.49401],[76.871722,34.653544],[75.757061,34.504923],[74.240203,34.748887],[73.749948,34.317699],[74.104294,33.441473],[74.451559,32.7649],[75.258642,32.271105],[74.405929,31.692639],[74.42138,30.979815],[73.450638,29.976413],[72.823752,28.961592],[71.777666,27.91318],[70.616496,27.989196],[69.514393,26.940966],[70.168927,26.491872],[70.282873,25.722229],[70.844699,25.215102],[71.04324,24.356524],[68.842599,24.359134],[68.176645,23.691965],[67.443667,23.944844],[67.145442,24.663611],[66.372828,25.425141],[64.530408,25.237039],[62.905701,25.218409],[61.497363,25.078237],[61.874187,26.239975],[63.316632,26.756532],[63.233898,27.217047],[62.755426,27.378923],[62.72783,28.259645],[61.771868,28.699334],[61.369309,29.303276],[60.874248,29.829239],[62.549857,29.318572],[63.550261,29.468331],[64.148002,29.340819],[64.350419,29.560031],[65.046862,29.472181],[66.346473,29.887943],[66.381458,30.738899],[66.938891,31.304911],[67.683394,31.303154],[67.792689,31.58293],[68.556932,31.71331],[68.926677,31.620189],[69.317764,31.901412],[69.262522,32.501944],[69.687147,33.105499],[70.323594,33.358533],[69.930543,34.02012],[70.881803,33.988856],[71.156773,34.348911],[71.115019,34.733126],[71.613076,35.153203],[71.498768,35.650563],[71.262348,36.074388],[71.846292,36.509942],[72.920025,36.720007],[74.067552,36.836176],[74.575893,37.020841],[75.158028,37.133031]]]}} ]} ================================================ FILE: test/fixtures/world/PAK_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 21.94304553 ], [ 56.25, 31.95216224 ], [ 67.5, 31.95216224 ], [ 67.5, 21.94304553 ], [ 56.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 21.94304553 ], [ 67.5, 27.05912578 ], [ 73.125, 27.05912578 ], [ 73.125, 21.94304553 ], [ 67.5, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 27.05912578 ], [ 67.5, 31.95216224 ], [ 73.125, 31.95216224 ], [ 73.125, 27.05912578 ], [ 67.5, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 31.95216224 ], [ 67.5, 40.97989807 ], [ 78.75, 40.97989807 ], [ 78.75, 31.95216224 ], [ 67.5, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 27.05912578 ], [ 73.125, 31.95216224 ], [ 78.75, 31.95216224 ], [ 78.75, 27.05912578 ], [ 73.125, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.158028, 37.133031 ], [ 75.896897, 36.666806 ], [ 76.192848, 35.898403 ], [ 77.837451, 35.49401 ], [ 76.871722, 34.653544 ], [ 75.757061, 34.504923 ], [ 74.240203, 34.748887 ], [ 73.749948, 34.317699 ], [ 74.104294, 33.441473 ], [ 74.451559, 32.7649 ], [ 75.258642, 32.271105 ], [ 74.405929, 31.692639 ], [ 74.42138, 30.979815 ], [ 73.450638, 29.976413 ], [ 72.823752, 28.961592 ], [ 71.777666, 27.91318 ], [ 70.616496, 27.989196 ], [ 69.514393, 26.940966 ], [ 70.168927, 26.491872 ], [ 70.282873, 25.722229 ], [ 70.844699, 25.215102 ], [ 71.04324, 24.356524 ], [ 68.842599, 24.359134 ], [ 68.176645, 23.691965 ], [ 67.443667, 23.944844 ], [ 67.145442, 24.663611 ], [ 66.372828, 25.425141 ], [ 64.530408, 25.237039 ], [ 62.905701, 25.218409 ], [ 61.497363, 25.078237 ], [ 61.874187, 26.239975 ], [ 63.316632, 26.756532 ], [ 63.233898, 27.217047 ], [ 62.755426, 27.378923 ], [ 62.72783, 28.259645 ], [ 61.771868, 28.699334 ], [ 61.369309, 29.303276 ], [ 60.874248, 29.829239 ], [ 62.549857, 29.318572 ], [ 63.550261, 29.468331 ], [ 64.148002, 29.340819 ], [ 64.350419, 29.560031 ], [ 65.046862, 29.472181 ], [ 66.346473, 29.887943 ], [ 66.381458, 30.738899 ], [ 66.938891, 31.304911 ], [ 67.683394, 31.303154 ], [ 67.792689, 31.58293 ], [ 68.556932, 31.71331 ], [ 68.926677, 31.620189 ], [ 69.317764, 31.901412 ], [ 69.262522, 32.501944 ], [ 69.687147, 33.105499 ], [ 70.323594, 33.358533 ], [ 69.930543, 34.02012 ], [ 70.881803, 33.988856 ], [ 71.156773, 34.348911 ], [ 71.115019, 34.733126 ], [ 71.613076, 35.153203 ], [ 71.498768, 35.650563 ], [ 71.262348, 36.074388 ], [ 71.846292, 36.509942 ], [ 72.920025, 36.720007 ], [ 74.067552, 36.836176 ], [ 74.575893, 37.020841 ], [ 75.158028, 37.133031 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PAN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PAN","properties":{"name":"Panama"},"geometry":{"type":"Polygon","coordinates":[[[-77.881571,7.223771],[-78.214936,7.512255],[-78.429161,8.052041],[-78.182096,8.319182],[-78.435465,8.387705],[-78.622121,8.718124],[-79.120307,8.996092],[-79.557877,8.932375],[-79.760578,8.584515],[-80.164481,8.333316],[-80.382659,8.298409],[-80.480689,8.090308],[-80.00369,7.547524],[-80.276671,7.419754],[-80.421158,7.271572],[-80.886401,7.220541],[-81.059543,7.817921],[-81.189716,7.647906],[-81.519515,7.70661],[-81.721311,8.108963],[-82.131441,8.175393],[-82.390934,8.292362],[-82.820081,8.290864],[-82.850958,8.073823],[-82.965783,8.225028],[-82.913176,8.423517],[-82.829771,8.626295],[-82.868657,8.807266],[-82.719183,8.925709],[-82.927155,9.07433],[-82.932891,9.476812],[-82.546196,9.566135],[-82.187123,9.207449],[-82.207586,8.995575],[-81.808567,8.950617],[-81.714154,9.031955],[-81.439287,8.786234],[-80.947302,8.858504],[-80.521901,9.111072],[-79.9146,9.312765],[-79.573303,9.61161],[-79.021192,9.552931],[-79.05845,9.454565],[-78.500888,9.420459],[-78.055928,9.24773],[-77.729514,8.946844],[-77.353361,8.670505],[-77.474723,8.524286],[-77.242566,7.935278],[-77.431108,7.638061],[-77.753414,7.70984],[-77.881571,7.223771]]]}} ]} ================================================ FILE: test/fixtures/world/PAN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 5.61598582 ], [ -78.75, 11.17840187 ], [ -73.125, 11.17840187 ], [ -73.125, 5.61598582 ], [ -78.75, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 5.61598582 ], [ -84.375, 11.17840187 ], [ -78.75, 11.17840187 ], [ -78.75, 5.61598582 ], [ -84.375, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.881571, 7.223771 ], [ -78.214936, 7.512255 ], [ -78.429161, 8.052041 ], [ -78.182096, 8.319182 ], [ -78.435465, 8.387705 ], [ -78.622121, 8.718124 ], [ -79.120307, 8.996092 ], [ -79.557877, 8.932375 ], [ -79.760578, 8.584515 ], [ -80.164481, 8.333316 ], [ -80.382659, 8.298409 ], [ -80.480689, 8.090308 ], [ -80.00369, 7.547524 ], [ -80.276671, 7.419754 ], [ -80.421158, 7.271572 ], [ -80.886401, 7.220541 ], [ -81.059543, 7.817921 ], [ -81.189716, 7.647906 ], [ -81.519515, 7.70661 ], [ -81.721311, 8.108963 ], [ -82.131441, 8.175393 ], [ -82.390934, 8.292362 ], [ -82.820081, 8.290864 ], [ -82.850958, 8.073823 ], [ -82.965783, 8.225028 ], [ -82.913176, 8.423517 ], [ -82.829771, 8.626295 ], [ -82.868657, 8.807266 ], [ -82.719183, 8.925709 ], [ -82.927155, 9.07433 ], [ -82.932891, 9.476812 ], [ -82.546196, 9.566135 ], [ -82.187123, 9.207449 ], [ -82.207586, 8.995575 ], [ -81.808567, 8.950617 ], [ -81.714154, 9.031955 ], [ -81.439287, 8.786234 ], [ -80.947302, 8.858504 ], [ -80.521901, 9.111072 ], [ -79.9146, 9.312765 ], [ -79.573303, 9.61161 ], [ -79.021192, 9.552931 ], [ -79.05845, 9.454565 ], [ -78.500888, 9.420459 ], [ -78.055928, 9.24773 ], [ -77.729514, 8.946844 ], [ -77.353361, 8.670505 ], [ -77.474723, 8.524286 ], [ -77.242566, 7.935278 ], [ -77.431108, 7.638061 ], [ -77.753414, 7.70984 ], [ -77.881571, 7.223771 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PER.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PER","properties":{"name":"Peru"},"geometry":{"type":"Polygon","coordinates":[[[-69.590424,-17.580012],[-69.858444,-18.092694],[-70.372572,-18.347975],[-71.37525,-17.773799],[-71.462041,-17.363488],[-73.44453,-16.359363],[-75.237883,-15.265683],[-76.009205,-14.649286],[-76.423469,-13.823187],[-76.259242,-13.535039],[-77.106192,-12.222716],[-78.092153,-10.377712],[-79.036953,-8.386568],[-79.44592,-7.930833],[-79.760578,-7.194341],[-80.537482,-6.541668],[-81.249996,-6.136834],[-80.926347,-5.690557],[-81.410943,-4.736765],[-81.09967,-4.036394],[-80.302561,-3.404856],[-80.184015,-3.821162],[-80.469295,-4.059287],[-80.442242,-4.425724],[-80.028908,-4.346091],[-79.624979,-4.454198],[-79.205289,-4.959129],[-78.639897,-4.547784],[-78.450684,-3.873097],[-77.837905,-3.003021],[-76.635394,-2.608678],[-75.544996,-1.56161],[-75.233723,-0.911417],[-75.373223,-0.152032],[-75.106625,-0.057205],[-74.441601,-0.53082],[-74.122395,-1.002833],[-73.659504,-1.260491],[-73.070392,-2.308954],[-72.325787,-2.434218],[-71.774761,-2.16979],[-71.413646,-2.342802],[-70.813476,-2.256865],[-70.047709,-2.725156],[-70.692682,-3.742872],[-70.394044,-3.766591],[-69.893635,-4.298187],[-70.794769,-4.251265],[-70.928843,-4.401591],[-71.748406,-4.593983],[-72.891928,-5.274561],[-72.964507,-5.741251],[-73.219711,-6.089189],[-73.120027,-6.629931],[-73.724487,-6.918595],[-73.723401,-7.340999],[-73.987235,-7.52383],[-73.571059,-8.424447],[-73.015383,-9.032833],[-73.226713,-9.462213],[-72.563033,-9.520194],[-72.184891,-10.053598],[-71.302412,-10.079436],[-70.481894,-9.490118],[-70.548686,-11.009147],[-70.093752,-11.123972],[-69.529678,-10.951734],[-68.66508,-12.5613],[-68.88008,-12.899729],[-68.929224,-13.602684],[-68.948887,-14.453639],[-69.339535,-14.953195],[-69.160347,-15.323974],[-69.389764,-15.660129],[-68.959635,-16.500698],[-69.590424,-17.580012]]]}} ]} ================================================ FILE: test/fixtures/world/PER_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -16.63619188 ], [ -73.125, -11.17840187 ], [ -67.5, -11.17840187 ], [ -67.5, -16.63619188 ], [ -73.125, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -21.94304553 ], [ -73.125, -16.63619188 ], [ -67.5, -16.63619188 ], [ -67.5, -21.94304553 ], [ -73.125, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, -11.17840187 ], [ -78.75, 0 ], [ -67.5, 0 ], [ -67.5, -11.17840187 ], [ -78.75, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, -16.63619188 ], [ -78.75, -11.17840187 ], [ -73.125, -11.17840187 ], [ -73.125, -16.63619188 ], [ -78.75, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, -11.17840187 ], [ -84.375, -5.61598582 ], [ -78.75, -5.61598582 ], [ -78.75, -11.17840187 ], [ -84.375, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, -5.61598582 ], [ -84.375, 0 ], [ -78.75, 0 ], [ -78.75, -5.61598582 ], [ -84.375, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.590424, -17.580012 ], [ -69.858444, -18.092694 ], [ -70.372572, -18.347975 ], [ -71.37525, -17.773799 ], [ -71.462041, -17.363488 ], [ -73.44453, -16.359363 ], [ -75.237883, -15.265683 ], [ -76.009205, -14.649286 ], [ -76.423469, -13.823187 ], [ -76.259242, -13.535039 ], [ -77.106192, -12.222716 ], [ -78.092153, -10.377712 ], [ -79.036953, -8.386568 ], [ -79.44592, -7.930833 ], [ -79.760578, -7.194341 ], [ -80.537482, -6.541668 ], [ -81.249996, -6.136834 ], [ -80.926347, -5.690557 ], [ -81.410943, -4.736765 ], [ -81.09967, -4.036394 ], [ -80.302561, -3.404856 ], [ -80.184015, -3.821162 ], [ -80.469295, -4.059287 ], [ -80.442242, -4.425724 ], [ -80.028908, -4.346091 ], [ -79.624979, -4.454198 ], [ -79.205289, -4.959129 ], [ -78.639897, -4.547784 ], [ -78.450684, -3.873097 ], [ -77.837905, -3.003021 ], [ -76.635394, -2.608678 ], [ -75.544996, -1.56161 ], [ -75.233723, -0.911417 ], [ -75.373223, -0.152032 ], [ -75.106625, -0.057205 ], [ -74.441601, -0.53082 ], [ -74.122395, -1.002833 ], [ -73.659504, -1.260491 ], [ -73.070392, -2.308954 ], [ -72.325787, -2.434218 ], [ -71.774761, -2.16979 ], [ -71.413646, -2.342802 ], [ -70.813476, -2.256865 ], [ -70.047709, -2.725156 ], [ -70.692682, -3.742872 ], [ -70.394044, -3.766591 ], [ -69.893635, -4.298187 ], [ -70.794769, -4.251265 ], [ -70.928843, -4.401591 ], [ -71.748406, -4.593983 ], [ -72.891928, -5.274561 ], [ -72.964507, -5.741251 ], [ -73.219711, -6.089189 ], [ -73.120027, -6.629931 ], [ -73.724487, -6.918595 ], [ -73.723401, -7.340999 ], [ -73.987235, -7.52383 ], [ -73.571059, -8.424447 ], [ -73.015383, -9.032833 ], [ -73.226713, -9.462213 ], [ -72.563033, -9.520194 ], [ -72.184891, -10.053598 ], [ -71.302412, -10.079436 ], [ -70.481894, -9.490118 ], [ -70.548686, -11.009147 ], [ -70.093752, -11.123972 ], [ -69.529678, -10.951734 ], [ -68.66508, -12.5613 ], [ -68.88008, -12.899729 ], [ -68.929224, -13.602684 ], [ -68.948887, -14.453639 ], [ -69.339535, -14.953195 ], [ -69.160347, -15.323974 ], [ -69.389764, -15.660129 ], [ -68.959635, -16.500698 ], [ -69.590424, -17.580012 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PHL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PHL","properties":{"name":"Philippines"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.376814,8.414706],[126.478513,7.750354],[126.537424,7.189381],[126.196773,6.274294],[125.831421,7.293715],[125.363852,6.786485],[125.683161,6.049657],[125.396512,5.581003],[124.219788,6.161355],[123.93872,6.885136],[124.243662,7.36061],[123.610212,7.833527],[123.296071,7.418876],[122.825506,7.457375],[122.085499,6.899424],[121.919928,7.192119],[122.312359,8.034962],[122.942398,8.316237],[123.487688,8.69301],[123.841154,8.240324],[124.60147,8.514158],[124.764612,8.960409],[125.471391,8.986997],[125.412118,9.760335],[126.222714,9.286074],[126.306637,8.782487],[126.376814,8.414706]]],[[[123.982438,10.278779],[123.623183,9.950091],[123.309921,9.318269],[122.995883,9.022189],[122.380055,9.713361],[122.586089,9.981045],[122.837081,10.261157],[122.947411,10.881868],[123.49885,10.940624],[123.337774,10.267384],[124.077936,11.232726],[123.982438,10.278779]]],[[[118.504581,9.316383],[117.174275,8.3675],[117.664477,9.066889],[118.386914,9.6845],[118.987342,10.376292],[119.511496,11.369668],[119.689677,10.554291],[119.029458,10.003653],[118.504581,9.316383]]],[[[121.883548,11.891755],[122.483821,11.582187],[123.120217,11.58366],[123.100838,11.165934],[122.637714,10.741308],[122.00261,10.441017],[121.967367,10.905691],[122.03837,11.415841],[121.883548,11.891755]]],[[[125.502552,12.162695],[125.783465,11.046122],[125.011884,11.311455],[125.032761,10.975816],[125.277449,10.358722],[124.801819,10.134679],[124.760168,10.837995],[124.459101,10.88993],[124.302522,11.495371],[124.891013,11.415583],[124.87799,11.79419],[124.266762,12.557761],[125.227116,12.535721],[125.502552,12.162695]]],[[[121.527394,13.06959],[121.26219,12.20556],[120.833896,12.704496],[120.323436,13.466413],[121.180128,13.429697],[121.527394,13.06959]]],[[[121.321308,18.504065],[121.937601,18.218552],[122.246006,18.47895],[122.336957,18.224883],[122.174279,17.810283],[122.515654,17.093505],[122.252311,16.262444],[121.662786,15.931018],[121.50507,15.124814],[121.728829,14.328376],[122.258925,14.218202],[122.701276,14.336541],[123.950295,13.782131],[123.855107,13.237771],[124.181289,12.997527],[124.077419,12.536677],[123.298035,13.027526],[122.928652,13.55292],[122.671355,13.185836],[122.03465,13.784482],[121.126385,13.636687],[120.628637,13.857656],[120.679384,14.271016],[120.991819,14.525393],[120.693336,14.756671],[120.564145,14.396279],[120.070429,14.970869],[119.920929,15.406347],[119.883773,16.363704],[120.286488,16.034629],[120.390047,17.599081],[120.715867,18.505227],[121.321308,18.504065]]]]}} ]} ================================================ FILE: test/fixtures/world/PHL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 5.61598582 ], [ 112.5, 11.17840187 ], [ 118.125, 11.17840187 ], [ 118.125, 5.61598582 ], [ 112.5, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 11.17840187 ], [ 118.125, 16.63619188 ], [ 123.75, 16.63619188 ], [ 123.75, 11.17840187 ], [ 118.125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 16.63619188 ], [ 118.125, 21.94304553 ], [ 123.75, 21.94304553 ], [ 123.75, 16.63619188 ], [ 118.125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 5.61598582 ], [ 118.125, 11.17840187 ], [ 123.75, 11.17840187 ], [ 123.75, 5.61598582 ], [ 118.125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 0 ], [ 123.75, 5.61598582 ], [ 129.375, 5.61598582 ], [ 129.375, 0 ], [ 123.75, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 11.17840187 ], [ 123.75, 16.63619188 ], [ 129.375, 16.63619188 ], [ 129.375, 11.17840187 ], [ 123.75, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 5.61598582 ], [ 123.75, 11.17840187 ], [ 129.375, 11.17840187 ], [ 129.375, 5.61598582 ], [ 123.75, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.376814, 8.414706 ], [ 126.478513, 7.750354 ], [ 126.537424, 7.189381 ], [ 126.196773, 6.274294 ], [ 125.831421, 7.293715 ], [ 125.363852, 6.786485 ], [ 125.683161, 6.049657 ], [ 125.396512, 5.581003 ], [ 124.219788, 6.161355 ], [ 123.93872, 6.885136 ], [ 124.243662, 7.36061 ], [ 123.610212, 7.833527 ], [ 123.296071, 7.418876 ], [ 122.825506, 7.457375 ], [ 122.085499, 6.899424 ], [ 121.919928, 7.192119 ], [ 122.312359, 8.034962 ], [ 122.942398, 8.316237 ], [ 123.487688, 8.69301 ], [ 123.841154, 8.240324 ], [ 124.60147, 8.514158 ], [ 124.764612, 8.960409 ], [ 125.471391, 8.986997 ], [ 125.412118, 9.760335 ], [ 126.222714, 9.286074 ], [ 126.306637, 8.782487 ], [ 126.376814, 8.414706 ] ] ], [ [ [ 123.982438, 10.278779 ], [ 123.623183, 9.950091 ], [ 123.309921, 9.318269 ], [ 122.995883, 9.022189 ], [ 122.380055, 9.713361 ], [ 122.586089, 9.981045 ], [ 122.837081, 10.261157 ], [ 122.947411, 10.881868 ], [ 123.49885, 10.940624 ], [ 123.337774, 10.267384 ], [ 124.077936, 11.232726 ], [ 123.982438, 10.278779 ] ] ], [ [ [ 118.504581, 9.316383 ], [ 117.174275, 8.3675 ], [ 117.664477, 9.066889 ], [ 118.386914, 9.6845 ], [ 118.987342, 10.376292 ], [ 119.511496, 11.369668 ], [ 119.689677, 10.554291 ], [ 119.029458, 10.003653 ], [ 118.504581, 9.316383 ] ] ], [ [ [ 121.883548, 11.891755 ], [ 122.483821, 11.582187 ], [ 123.120217, 11.58366 ], [ 123.100838, 11.165934 ], [ 122.637714, 10.741308 ], [ 122.00261, 10.441017 ], [ 121.967367, 10.905691 ], [ 122.03837, 11.415841 ], [ 121.883548, 11.891755 ] ] ], [ [ [ 125.502552, 12.162695 ], [ 125.783465, 11.046122 ], [ 125.011884, 11.311455 ], [ 125.032761, 10.975816 ], [ 125.277449, 10.358722 ], [ 124.801819, 10.134679 ], [ 124.760168, 10.837995 ], [ 124.459101, 10.88993 ], [ 124.302522, 11.495371 ], [ 124.891013, 11.415583 ], [ 124.87799, 11.79419 ], [ 124.266762, 12.557761 ], [ 125.227116, 12.535721 ], [ 125.502552, 12.162695 ] ] ], [ [ [ 121.527394, 13.06959 ], [ 121.26219, 12.20556 ], [ 120.833896, 12.704496 ], [ 120.323436, 13.466413 ], [ 121.180128, 13.429697 ], [ 121.527394, 13.06959 ] ] ], [ [ [ 121.321308, 18.504065 ], [ 121.937601, 18.218552 ], [ 122.246006, 18.47895 ], [ 122.336957, 18.224883 ], [ 122.174279, 17.810283 ], [ 122.515654, 17.093505 ], [ 122.252311, 16.262444 ], [ 121.662786, 15.931018 ], [ 121.50507, 15.124814 ], [ 121.728829, 14.328376 ], [ 122.258925, 14.218202 ], [ 122.701276, 14.336541 ], [ 123.950295, 13.782131 ], [ 123.855107, 13.237771 ], [ 124.181289, 12.997527 ], [ 124.077419, 12.536677 ], [ 123.298035, 13.027526 ], [ 122.928652, 13.55292 ], [ 122.671355, 13.185836 ], [ 122.03465, 13.784482 ], [ 121.126385, 13.636687 ], [ 120.628637, 13.857656 ], [ 120.679384, 14.271016 ], [ 120.991819, 14.525393 ], [ 120.693336, 14.756671 ], [ 120.564145, 14.396279 ], [ 120.070429, 14.970869 ], [ 119.920929, 15.406347 ], [ 119.883773, 16.363704 ], [ 120.286488, 16.034629 ], [ 120.390047, 17.599081 ], [ 120.715867, 18.505227 ], [ 121.321308, 18.504065 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PNG.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PNG","properties":{"name":"Papua New Guinea"},"geometry":{"type":"MultiPolygon","coordinates":[[[[155.880026,-6.819997],[155.599991,-6.919991],[155.166994,-6.535931],[154.729192,-5.900828],[154.514114,-5.139118],[154.652504,-5.042431],[154.759991,-5.339984],[155.062918,-5.566792],[155.547746,-6.200655],[156.019965,-6.540014],[155.880026,-6.819997]]],[[[151.982796,-5.478063],[151.459107,-5.56028],[151.30139,-5.840728],[150.754447,-6.083763],[150.241197,-6.317754],[149.709963,-6.316513],[148.890065,-6.02604],[148.318937,-5.747142],[148.401826,-5.437756],[149.298412,-5.583742],[149.845562,-5.505503],[149.99625,-5.026101],[150.139756,-5.001348],[150.236908,-5.53222],[150.807467,-5.455842],[151.089672,-5.113693],[151.647881,-4.757074],[151.537862,-4.167807],[152.136792,-4.14879],[152.338743,-4.312966],[152.318693,-4.867661],[151.982796,-5.478063]]],[[[147.191874,-7.388024],[148.084636,-8.044108],[148.734105,-9.104664],[149.306835,-9.071436],[149.266631,-9.514406],[150.038728,-9.684318],[149.738798,-9.872937],[150.801628,-10.293687],[150.690575,-10.582713],[150.028393,-10.652476],[149.78231,-10.393267],[148.923138,-10.280923],[147.913018,-10.130441],[147.135443,-9.492444],[146.567881,-8.942555],[146.048481,-8.067414],[144.744168,-7.630128],[143.897088,-7.91533],[143.286376,-8.245491],[143.413913,-8.983069],[142.628431,-9.326821],[142.068259,-9.159596],[141.033852,-9.117893],[141.017057,-5.859022],[141.00021,-2.600151],[142.735247,-3.289153],[144.583971,-3.861418],[145.27318,-4.373738],[145.829786,-4.876498],[145.981922,-5.465609],[147.648073,-6.083659],[147.891108,-6.614015],[146.970905,-6.721657],[147.191874,-7.388024]]],[[[153.140038,-4.499983],[152.827292,-4.766427],[152.638673,-4.176127],[152.406026,-3.789743],[151.953237,-3.462062],[151.384279,-3.035422],[150.66205,-2.741486],[150.939965,-2.500002],[151.479984,-2.779985],[151.820015,-2.999972],[152.239989,-3.240009],[152.640017,-3.659983],[153.019994,-3.980015],[153.140038,-4.499983]]]]}} ]} ================================================ FILE: test/fixtures/world/PNG_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, -11.17840187 ], [ 140.625, -5.61598582 ], [ 146.25, -5.61598582 ], [ 146.25, -11.17840187 ], [ 140.625, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.625, -5.61598582 ], [ 140.625, 0 ], [ 146.25, 0 ], [ 146.25, -5.61598582 ], [ 140.625, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, -11.17840187 ], [ 146.25, 0 ], [ 157.5, 0 ], [ 157.5, -11.17840187 ], [ 146.25, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 155.880026, -6.819997 ], [ 155.599991, -6.919991 ], [ 155.166994, -6.535931 ], [ 154.729192, -5.900828 ], [ 154.514114, -5.139118 ], [ 154.652504, -5.042431 ], [ 154.759991, -5.339984 ], [ 155.062918, -5.566792 ], [ 155.547746, -6.200655 ], [ 156.019965, -6.540014 ], [ 155.880026, -6.819997 ] ] ], [ [ [ 151.982796, -5.478063 ], [ 151.459107, -5.56028 ], [ 151.30139, -5.840728 ], [ 150.754447, -6.083763 ], [ 150.241197, -6.317754 ], [ 149.709963, -6.316513 ], [ 148.890065, -6.02604 ], [ 148.318937, -5.747142 ], [ 148.401826, -5.437756 ], [ 149.298412, -5.583742 ], [ 149.845562, -5.505503 ], [ 149.99625, -5.026101 ], [ 150.139756, -5.001348 ], [ 150.236908, -5.53222 ], [ 150.807467, -5.455842 ], [ 151.089672, -5.113693 ], [ 151.647881, -4.757074 ], [ 151.537862, -4.167807 ], [ 152.136792, -4.14879 ], [ 152.338743, -4.312966 ], [ 152.318693, -4.867661 ], [ 151.982796, -5.478063 ] ] ], [ [ [ 147.191874, -7.388024 ], [ 148.084636, -8.044108 ], [ 148.734105, -9.104664 ], [ 149.306835, -9.071436 ], [ 149.266631, -9.514406 ], [ 150.038728, -9.684318 ], [ 149.738798, -9.872937 ], [ 150.801628, -10.293687 ], [ 150.690575, -10.582713 ], [ 150.028393, -10.652476 ], [ 149.78231, -10.393267 ], [ 148.923138, -10.280923 ], [ 147.913018, -10.130441 ], [ 147.135443, -9.492444 ], [ 146.567881, -8.942555 ], [ 146.048481, -8.067414 ], [ 144.744168, -7.630128 ], [ 143.897088, -7.91533 ], [ 143.286376, -8.245491 ], [ 143.413913, -8.983069 ], [ 142.628431, -9.326821 ], [ 142.068259, -9.159596 ], [ 141.033852, -9.117893 ], [ 141.017057, -5.859022 ], [ 141.00021, -2.600151 ], [ 142.735247, -3.289153 ], [ 144.583971, -3.861418 ], [ 145.27318, -4.373738 ], [ 145.829786, -4.876498 ], [ 145.981922, -5.465609 ], [ 147.648073, -6.083659 ], [ 147.891108, -6.614015 ], [ 146.970905, -6.721657 ], [ 147.191874, -7.388024 ] ] ], [ [ [ 153.140038, -4.499983 ], [ 152.827292, -4.766427 ], [ 152.638673, -4.176127 ], [ 152.406026, -3.789743 ], [ 151.953237, -3.462062 ], [ 151.384279, -3.035422 ], [ 150.66205, -2.741486 ], [ 150.939965, -2.500002 ], [ 151.479984, -2.779985 ], [ 151.820015, -2.999972 ], [ 152.239989, -3.240009 ], [ 152.640017, -3.659983 ], [ 153.019994, -3.980015 ], [ 153.140038, -4.499983 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/POL.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"POL","properties":{"name":"Poland"},"geometry":{"type":"Polygon","coordinates":[[[15.016996,51.106674],[14.607098,51.745188],[14.685026,52.089947],[14.4376,52.62485],[14.074521,52.981263],[14.353315,53.248171],[14.119686,53.757029],[14.8029,54.050706],[16.363477,54.513159],[17.622832,54.851536],[18.620859,54.682606],[18.696255,54.438719],[19.66064,54.426084],[20.892245,54.312525],[22.731099,54.327537],[23.243987,54.220567],[23.484128,53.912498],[23.527536,53.470122],[23.804935,53.089731],[23.799199,52.691099],[23.199494,52.486977],[23.508002,52.023647],[23.527071,51.578454],[24.029986,50.705407],[23.922757,50.424881],[23.426508,50.308506],[22.51845,49.476774],[22.776419,49.027395],[22.558138,49.085738],[21.607808,49.470107],[20.887955,49.328772],[20.415839,49.431453],[19.825023,49.217125],[19.320713,49.571574],[18.909575,49.435846],[18.853144,49.49623],[18.392914,49.988629],[17.649445,50.049038],[17.554567,50.362146],[16.868769,50.473974],[16.719476,50.215747],[16.176253,50.422607],[16.238627,50.697733],[15.490972,50.78473],[15.016996,51.106674]]]}} ]} ================================================ FILE: test/fixtures/world/POL_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 48.92249926 ], [ 11.25, 55.77657302 ], [ 22.5, 55.77657302 ], [ 22.5, 48.92249926 ], [ 11.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 48.92249926 ], [ 22.5, 52.48278022 ], [ 28.125, 52.48278022 ], [ 28.125, 48.92249926 ], [ 22.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 52.48278022 ], [ 22.5, 55.77657302 ], [ 28.125, 55.77657302 ], [ 28.125, 52.48278022 ], [ 22.5, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.016996, 51.106674 ], [ 14.607098, 51.745188 ], [ 14.685026, 52.089947 ], [ 14.4376, 52.62485 ], [ 14.074521, 52.981263 ], [ 14.353315, 53.248171 ], [ 14.119686, 53.757029 ], [ 14.8029, 54.050706 ], [ 16.363477, 54.513159 ], [ 17.622832, 54.851536 ], [ 18.620859, 54.682606 ], [ 18.696255, 54.438719 ], [ 19.66064, 54.426084 ], [ 20.892245, 54.312525 ], [ 22.731099, 54.327537 ], [ 23.243987, 54.220567 ], [ 23.484128, 53.912498 ], [ 23.527536, 53.470122 ], [ 23.804935, 53.089731 ], [ 23.799199, 52.691099 ], [ 23.199494, 52.486977 ], [ 23.508002, 52.023647 ], [ 23.527071, 51.578454 ], [ 24.029986, 50.705407 ], [ 23.922757, 50.424881 ], [ 23.426508, 50.308506 ], [ 22.51845, 49.476774 ], [ 22.776419, 49.027395 ], [ 22.558138, 49.085738 ], [ 21.607808, 49.470107 ], [ 20.887955, 49.328772 ], [ 20.415839, 49.431453 ], [ 19.825023, 49.217125 ], [ 19.320713, 49.571574 ], [ 18.909575, 49.435846 ], [ 18.853144, 49.49623 ], [ 18.392914, 49.988629 ], [ 17.649445, 50.049038 ], [ 17.554567, 50.362146 ], [ 16.868769, 50.473974 ], [ 16.719476, 50.215747 ], [ 16.176253, 50.422607 ], [ 16.238627, 50.697733 ], [ 15.490972, 50.78473 ], [ 15.016996, 51.106674 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PRI.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PRI","properties":{"name":"Puerto Rico"},"geometry":{"type":"Polygon","coordinates":[[[-66.282434,18.514762],[-65.771303,18.426679],[-65.591004,18.228035],[-65.847164,17.975906],[-66.599934,17.981823],[-67.184162,17.946553],[-67.242428,18.37446],[-67.100679,18.520601],[-66.282434,18.514762]]]}} ]} ================================================ FILE: test/fixtures/world/PRI_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 16.63619188 ], [ -67.5, 21.94304553 ], [ -61.875, 21.94304553 ], [ -61.875, 16.63619188 ], [ -67.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.282434, 18.514762 ], [ -65.771303, 18.426679 ], [ -65.591004, 18.228035 ], [ -65.847164, 17.975906 ], [ -66.599934, 17.981823 ], [ -67.184162, 17.946553 ], [ -67.242428, 18.37446 ], [ -67.100679, 18.520601 ], [ -66.282434, 18.514762 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PRK.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PRK","properties":{"name":"North Korea"},"geometry":{"type":"Polygon","coordinates":[[[130.640016,42.395009],[130.780007,42.220007],[130.400031,42.280004],[129.965949,41.941368],[129.667362,41.601104],[129.705189,40.882828],[129.188115,40.661808],[129.0104,40.485436],[128.633368,40.189847],[127.967414,40.025413],[127.533436,39.75685],[127.50212,39.323931],[127.385434,39.213472],[127.783343,39.050898],[128.349716,38.612243],[128.205746,38.370397],[127.780035,38.304536],[127.073309,38.256115],[126.68372,37.804773],[126.237339,37.840378],[126.174759,37.749686],[125.689104,37.94001],[125.568439,37.752089],[125.27533,37.669071],[125.240087,37.857224],[124.981033,37.948821],[124.712161,38.108346],[124.985994,38.548474],[125.221949,38.665857],[125.132859,38.848559],[125.38659,39.387958],[125.321116,39.551385],[124.737482,39.660344],[124.265625,39.928493],[125.079942,40.569824],[126.182045,41.107336],[126.869083,41.816569],[127.343783,41.503152],[128.208433,41.466772],[128.052215,41.994285],[129.596669,42.424982],[129.994267,42.985387],[130.640016,42.395009]]]}} ]} ================================================ FILE: test/fixtures/world/PRK_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 36.59788913 ], [ 123.75, 40.97989807 ], [ 129.375, 40.97989807 ], [ 129.375, 36.59788913 ], [ 123.75, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 40.97989807 ], [ 123.75, 45.08903556 ], [ 129.375, 45.08903556 ], [ 129.375, 40.97989807 ], [ 123.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 36.59788913 ], [ 129.375, 40.97989807 ], [ 135, 40.97989807 ], [ 135, 36.59788913 ], [ 129.375, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 40.97989807 ], [ 129.375, 45.08903556 ], [ 135, 45.08903556 ], [ 135, 40.97989807 ], [ 129.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.640016, 42.395009 ], [ 130.780007, 42.220007 ], [ 130.400031, 42.280004 ], [ 129.965949, 41.941368 ], [ 129.667362, 41.601104 ], [ 129.705189, 40.882828 ], [ 129.188115, 40.661808 ], [ 129.0104, 40.485436 ], [ 128.633368, 40.189847 ], [ 127.967414, 40.025413 ], [ 127.533436, 39.75685 ], [ 127.50212, 39.323931 ], [ 127.385434, 39.213472 ], [ 127.783343, 39.050898 ], [ 128.349716, 38.612243 ], [ 128.205746, 38.370397 ], [ 127.780035, 38.304536 ], [ 127.073309, 38.256115 ], [ 126.68372, 37.804773 ], [ 126.237339, 37.840378 ], [ 126.174759, 37.749686 ], [ 125.689104, 37.94001 ], [ 125.568439, 37.752089 ], [ 125.27533, 37.669071 ], [ 125.240087, 37.857224 ], [ 124.981033, 37.948821 ], [ 124.712161, 38.108346 ], [ 124.985994, 38.548474 ], [ 125.221949, 38.665857 ], [ 125.132859, 38.848559 ], [ 125.38659, 39.387958 ], [ 125.321116, 39.551385 ], [ 124.737482, 39.660344 ], [ 124.265625, 39.928493 ], [ 125.079942, 40.569824 ], [ 126.182045, 41.107336 ], [ 126.869083, 41.816569 ], [ 127.343783, 41.503152 ], [ 128.208433, 41.466772 ], [ 128.052215, 41.994285 ], [ 129.596669, 42.424982 ], [ 129.994267, 42.985387 ], [ 130.640016, 42.395009 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PRT.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PRT","properties":{"name":"Portugal"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.671946,42.134689],[-8.263857,42.280469],[-8.013175,41.790886],[-7.422513,41.792075],[-7.251309,41.918346],[-6.668606,41.883387],[-6.389088,41.381815],[-6.851127,41.111083],[-6.86402,40.330872],[-7.026413,40.184524],[-7.066592,39.711892],[-7.498632,39.629571],[-7.098037,39.030073],[-7.374092,38.373059],[-7.029281,38.075764],[-7.166508,37.803894],[-7.537105,37.428904],[-7.453726,37.097788],[-7.855613,36.838269],[-8.382816,36.97888],[-8.898857,36.868809],[-8.746101,37.651346],[-8.839998,38.266243],[-9.287464,38.358486],[-9.526571,38.737429],[-9.446989,39.392066],[-9.048305,39.755093],[-8.977353,40.159306],[-8.768684,40.760639],[-8.790853,41.184334],[-8.990789,41.543459],[-9.034818,41.880571]]]}} ]} ================================================ FILE: test/fixtures/world/PRT_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 36.59788913 ], [ -11.25, 40.97989807 ], [ -5.625, 40.97989807 ], [ -5.625, 36.59788913 ], [ -11.25, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 40.97989807 ], [ -11.25, 45.08903556 ], [ -5.625, 45.08903556 ], [ -5.625, 40.97989807 ], [ -11.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.034818, 41.880571 ], [ -8.671946, 42.134689 ], [ -8.263857, 42.280469 ], [ -8.013175, 41.790886 ], [ -7.422513, 41.792075 ], [ -7.251309, 41.918346 ], [ -6.668606, 41.883387 ], [ -6.389088, 41.381815 ], [ -6.851127, 41.111083 ], [ -6.86402, 40.330872 ], [ -7.026413, 40.184524 ], [ -7.066592, 39.711892 ], [ -7.498632, 39.629571 ], [ -7.098037, 39.030073 ], [ -7.374092, 38.373059 ], [ -7.029281, 38.075764 ], [ -7.166508, 37.803894 ], [ -7.537105, 37.428904 ], [ -7.453726, 37.097788 ], [ -7.855613, 36.838269 ], [ -8.382816, 36.97888 ], [ -8.898857, 36.868809 ], [ -8.746101, 37.651346 ], [ -8.839998, 38.266243 ], [ -9.287464, 38.358486 ], [ -9.526571, 38.737429 ], [ -9.446989, 39.392066 ], [ -9.048305, 39.755093 ], [ -8.977353, 40.159306 ], [ -8.768684, 40.760639 ], [ -8.790853, 41.184334 ], [ -8.990789, 41.543459 ], [ -9.034818, 41.880571 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PRY.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PRY","properties":{"name":"Paraguay"},"geometry":{"type":"Polygon","coordinates":[[[-62.685057,-22.249029],[-62.291179,-21.051635],[-62.265961,-20.513735],[-61.786326,-19.633737],[-60.043565,-19.342747],[-59.115042,-19.356906],[-58.183471,-19.868399],[-58.166392,-20.176701],[-57.870674,-20.732688],[-57.937156,-22.090176],[-56.88151,-22.282154],[-56.473317,-22.0863],[-55.797958,-22.35693],[-55.610683,-22.655619],[-55.517639,-23.571998],[-55.400747,-23.956935],[-55.027902,-24.001274],[-54.652834,-23.839578],[-54.29296,-24.021014],[-54.293476,-24.5708],[-54.428946,-25.162185],[-54.625291,-25.739255],[-54.788795,-26.621786],[-55.695846,-27.387837],[-56.486702,-27.548499],[-57.60976,-27.395899],[-58.618174,-27.123719],[-57.63366,-25.603657],[-57.777217,-25.16234],[-58.807128,-24.771459],[-60.028966,-24.032796],[-60.846565,-23.880713],[-62.685057,-22.249029]]]}} ]} ================================================ FILE: test/fixtures/world/PRY_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -27.05912578 ], [ -56.25, -21.94304553 ], [ -50.625, -21.94304553 ], [ -50.625, -27.05912578 ], [ -56.25, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -31.95216224 ], [ -56.25, -27.05912578 ], [ -50.625, -27.05912578 ], [ -50.625, -31.95216224 ], [ -56.25, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -21.94304553 ], [ -61.875, -16.63619188 ], [ -56.25, -16.63619188 ], [ -56.25, -21.94304553 ], [ -61.875, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -27.05912578 ], [ -61.875, -21.94304553 ], [ -56.25, -21.94304553 ], [ -56.25, -27.05912578 ], [ -61.875, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -31.95216224 ], [ -61.875, -27.05912578 ], [ -56.25, -27.05912578 ], [ -56.25, -31.95216224 ], [ -61.875, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -21.94304553 ], [ -67.5, -16.63619188 ], [ -61.875, -16.63619188 ], [ -61.875, -21.94304553 ], [ -67.5, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -27.05912578 ], [ -67.5, -21.94304553 ], [ -61.875, -21.94304553 ], [ -61.875, -27.05912578 ], [ -67.5, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.685057, -22.249029 ], [ -62.291179, -21.051635 ], [ -62.265961, -20.513735 ], [ -61.786326, -19.633737 ], [ -60.043565, -19.342747 ], [ -59.115042, -19.356906 ], [ -58.183471, -19.868399 ], [ -58.166392, -20.176701 ], [ -57.870674, -20.732688 ], [ -57.937156, -22.090176 ], [ -56.88151, -22.282154 ], [ -56.473317, -22.0863 ], [ -55.797958, -22.35693 ], [ -55.610683, -22.655619 ], [ -55.517639, -23.571998 ], [ -55.400747, -23.956935 ], [ -55.027902, -24.001274 ], [ -54.652834, -23.839578 ], [ -54.29296, -24.021014 ], [ -54.293476, -24.5708 ], [ -54.428946, -25.162185 ], [ -54.625291, -25.739255 ], [ -54.788795, -26.621786 ], [ -55.695846, -27.387837 ], [ -56.486702, -27.548499 ], [ -57.60976, -27.395899 ], [ -58.618174, -27.123719 ], [ -57.63366, -25.603657 ], [ -57.777217, -25.16234 ], [ -58.807128, -24.771459 ], [ -60.028966, -24.032796 ], [ -60.846565, -23.880713 ], [ -62.685057, -22.249029 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/PSE.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"PSE","properties":{"name":"West Bank"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.545252,31.782505],[35.397561,31.489086],[34.927408,31.353435],[34.970507,31.616778],[35.225892,31.754341],[34.974641,31.866582],[35.18393,32.532511],[35.545665,32.393992]]]}} ]} ================================================ FILE: test/fixtures/world/PSE_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 27.05912578 ], [ 33.75, 31.95216224 ], [ 39.375, 31.95216224 ], [ 39.375, 27.05912578 ], [ 33.75, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 31.95216224 ], [ 33.75, 36.59788913 ], [ 39.375, 36.59788913 ], [ 39.375, 31.95216224 ], [ 33.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.545665, 32.393992 ], [ 35.545252, 31.782505 ], [ 35.397561, 31.489086 ], [ 34.927408, 31.353435 ], [ 34.970507, 31.616778 ], [ 35.225892, 31.754341 ], [ 34.974641, 31.866582 ], [ 35.18393, 32.532511 ], [ 35.545665, 32.393992 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/QAT.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"QAT","properties":{"name":"Qatar"},"geometry":{"type":"Polygon","coordinates":[[[50.810108,24.754743],[50.743911,25.482424],[51.013352,26.006992],[51.286462,26.114582],[51.589079,25.801113],[51.6067,25.21567],[51.389608,24.627386],[51.112415,24.556331],[50.810108,24.754743]]]}} ]} ================================================ FILE: test/fixtures/world/QAT_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 21.94304553 ], [ 50.625, 27.05912578 ], [ 56.25, 27.05912578 ], [ 56.25, 21.94304553 ], [ 50.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.810108, 24.754743 ], [ 50.743911, 25.482424 ], [ 51.013352, 26.006992 ], [ 51.286462, 26.114582 ], [ 51.589079, 25.801113 ], [ 51.6067, 25.21567 ], [ 51.389608, 24.627386 ], [ 51.112415, 24.556331 ], [ 50.810108, 24.754743 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ROU.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ROU","properties":{"name":"Romania"},"geometry":{"type":"Polygon","coordinates":[[[22.710531,47.882194],[23.142236,48.096341],[23.760958,47.985598],[24.402056,47.981878],[24.866317,47.737526],[25.207743,47.891056],[25.945941,47.987149],[26.19745,48.220881],[26.619337,48.220726],[26.924176,48.123264],[27.233873,47.826771],[27.551166,47.405117],[28.12803,46.810476],[28.160018,46.371563],[28.054443,45.944586],[28.233554,45.488283],[28.679779,45.304031],[29.149725,45.464925],[29.603289,45.293308],[29.626543,45.035391],[29.141612,44.82021],[28.837858,44.913874],[28.558081,43.707462],[27.970107,43.812468],[27.2424,44.175986],[26.065159,43.943494],[25.569272,43.688445],[24.100679,43.741051],[23.332302,43.897011],[22.944832,43.823785],[22.65715,44.234923],[22.474008,44.409228],[22.705726,44.578003],[22.459022,44.702517],[22.145088,44.478422],[21.562023,44.768947],[21.483526,45.18117],[20.874313,45.416375],[20.762175,45.734573],[20.220192,46.127469],[21.021952,46.316088],[21.626515,46.994238],[22.099768,47.672439],[22.710531,47.882194]]]}} ]} ================================================ FILE: test/fixtures/world/ROU_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 40.97989807 ], [ 16.875, 45.08903556 ], [ 22.5, 45.08903556 ], [ 22.5, 40.97989807 ], [ 16.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 45.08903556 ], [ 16.875, 48.92249926 ], [ 22.5, 48.92249926 ], [ 22.5, 45.08903556 ], [ 16.875, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 40.97989807 ], [ 22.5, 48.92249926 ], [ 33.75, 48.92249926 ], [ 33.75, 40.97989807 ], [ 22.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.710531, 47.882194 ], [ 23.142236, 48.096341 ], [ 23.760958, 47.985598 ], [ 24.402056, 47.981878 ], [ 24.866317, 47.737526 ], [ 25.207743, 47.891056 ], [ 25.945941, 47.987149 ], [ 26.19745, 48.220881 ], [ 26.619337, 48.220726 ], [ 26.924176, 48.123264 ], [ 27.233873, 47.826771 ], [ 27.551166, 47.405117 ], [ 28.12803, 46.810476 ], [ 28.160018, 46.371563 ], [ 28.054443, 45.944586 ], [ 28.233554, 45.488283 ], [ 28.679779, 45.304031 ], [ 29.149725, 45.464925 ], [ 29.603289, 45.293308 ], [ 29.626543, 45.035391 ], [ 29.141612, 44.82021 ], [ 28.837858, 44.913874 ], [ 28.558081, 43.707462 ], [ 27.970107, 43.812468 ], [ 27.2424, 44.175986 ], [ 26.065159, 43.943494 ], [ 25.569272, 43.688445 ], [ 24.100679, 43.741051 ], [ 23.332302, 43.897011 ], [ 22.944832, 43.823785 ], [ 22.65715, 44.234923 ], [ 22.474008, 44.409228 ], [ 22.705726, 44.578003 ], [ 22.459022, 44.702517 ], [ 22.145088, 44.478422 ], [ 21.562023, 44.768947 ], [ 21.483526, 45.18117 ], [ 20.874313, 45.416375 ], [ 20.762175, 45.734573 ], [ 20.220192, 46.127469 ], [ 21.021952, 46.316088 ], [ 21.626515, 46.994238 ], [ 22.099768, 47.672439 ], [ 22.710531, 47.882194 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/RUS.geo.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "id": "RUS", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.97013, 76.97419 ], [ 107.24, 76.48 ], [ 108.1538, 76.72335 ], [ 111.07726, 76.71 ], [ 113.33151, 76.22224 ], [ 114.13417, 75.84764 ], [ 113.88539, 75.32779 ], [ 112.77918, 75.03186 ], [ 110.15125, 74.47673 ], [ 109.4, 74.18 ], [ 110.64, 74.04 ], [ 112.11919, 73.78774 ], [ 113.01954, 73.97693 ], [ 113.52958, 73.33505 ], [ 113.96881, 73.59488 ], [ 115.56782, 73.75285 ], [ 118.77633, 73.58772 ], [ 119.02, 73.12 ], [ 123.20066, 72.97122 ], [ 123.25777, 73.73503 ], [ 125.38, 73.56 ], [ 126.97644, 73.56549 ], [ 128.59126, 73.03871 ], [ 129.05157, 72.39872 ], [ 128.46, 71.98 ], [ 129.71599, 71.19304 ], [ 131.28858, 70.78699 ], [ 132.2535, 71.8363 ], [ 133.85766, 71.38642 ], [ 135.56193, 71.65525 ], [ 137.49755, 71.34763 ], [ 138.23409, 71.62803 ], [ 139.86983, 71.48783 ], [ 139.14791, 72.41619 ], [ 140.46817, 72.84941 ], [ 149.5, 72.2 ], [ 150.35118, 71.60643 ], [ 152.9689, 70.84222 ], [ 157.00688, 71.03141 ], [ 158.99779, 70.86672 ], [ 159.83031, 70.45324 ], [ 159.70866, 69.72198 ], [ 160.94053, 69.43728 ], [ 162.27907, 69.64204 ], [ 164.05248, 69.66823 ], [ 165.94037, 69.47199 ], [ 167.83567, 69.58269 ], [ 169.57763, 68.6938 ], [ 170.81688, 69.01363 ], [ 170.0082, 69.65276 ], [ 170.45345, 70.09703 ], [ 173.64391, 69.81743 ], [ 175.72403, 69.87725 ], [ 178.6, 69.4 ], [ 180, 68.963636 ], [ 180, 64.979709 ], [ 179.99281, 64.97433 ], [ 178.7072, 64.53493 ], [ 177.41128, 64.60821 ], [ 178.313, 64.07593 ], [ 178.90825, 63.25197 ], [ 179.37034, 62.98262 ], [ 179.48636, 62.56894 ], [ 179.22825, 62.3041 ], [ 177.3643, 62.5219 ], [ 174.56929, 61.76915 ], [ 173.68013, 61.65261 ], [ 172.15, 60.95 ], [ 170.6985, 60.33618 ], [ 170.33085, 59.88177 ], [ 168.90046, 60.57355 ], [ 166.29498, 59.78855 ], [ 165.84, 60.16 ], [ 164.87674, 59.7316 ], [ 163.53929, 59.86871 ], [ 163.21711, 59.21101 ], [ 162.01733, 58.24328 ], [ 162.05297, 57.83912 ], [ 163.19191, 57.61503 ], [ 163.05794, 56.15924 ], [ 162.12958, 56.12219 ], [ 161.70146, 55.28568 ], [ 162.11749, 54.85514 ], [ 160.36877, 54.34433 ], [ 160.02173, 53.20257 ], [ 158.53094, 52.95868 ], [ 158.23118, 51.94269 ], [ 156.78979, 51.01105 ], [ 156.42, 51.7 ], [ 155.99182, 53.15895 ], [ 155.43366, 55.38103 ], [ 155.91442, 56.76792 ], [ 156.75815, 57.3647 ], [ 156.81035, 57.83204 ], [ 158.36433, 58.05575 ], [ 160.15064, 59.31477 ], [ 161.87204, 60.343 ], [ 163.66969, 61.1409 ], [ 164.47355, 62.55061 ], [ 163.25842, 62.46627 ], [ 162.65791, 61.6425 ], [ 160.12148, 60.54423 ], [ 159.30232, 61.77396 ], [ 156.72068, 61.43442 ], [ 154.21806, 59.75818 ], [ 155.04375, 59.14495 ], [ 152.81185, 58.88385 ], [ 151.26573, 58.78089 ], [ 151.33815, 59.50396 ], [ 149.78371, 59.65573 ], [ 148.54481, 59.16448 ], [ 145.48722, 59.33637 ], [ 142.19782, 59.03998 ], [ 138.95848, 57.08805 ], [ 135.12619, 54.72959 ], [ 136.70171, 54.60355 ], [ 137.19342, 53.97732 ], [ 138.1647, 53.75501 ], [ 138.80463, 54.25455 ], [ 139.90151, 54.18968 ], [ 141.34531, 53.08957 ], [ 141.37923, 52.23877 ], [ 140.59742, 51.23967 ], [ 140.51308, 50.04553 ], [ 140.06193, 48.44671 ], [ 138.55472, 46.99965 ], [ 138.21971, 46.30795 ], [ 136.86232, 45.1435 ], [ 135.51535, 43.989 ], [ 134.86939, 43.39821 ], [ 133.53687, 42.81147 ], [ 132.90627, 42.79849 ], [ 132.27807, 43.28456 ], [ 130.93587, 42.55274 ], [ 130.78, 42.22 ], [ 130.64, 42.395 ], [ 130.633866, 42.903015 ], [ 131.144688, 42.92999 ], [ 131.288555, 44.11152 ], [ 131.02519, 44.96796 ], [ 131.883454, 45.321162 ], [ 133.09712, 45.14409 ], [ 133.769644, 46.116927 ], [ 134.11235, 47.21248 ], [ 134.50081, 47.57845 ], [ 135.026311, 48.47823 ], [ 133.373596, 48.183442 ], [ 132.50669, 47.78896 ], [ 130.98726, 47.79013 ], [ 130.582293, 48.729687 ], [ 129.397818, 49.4406 ], [ 127.6574, 49.76027 ], [ 127.287456, 50.739797 ], [ 126.939157, 51.353894 ], [ 126.564399, 51.784255 ], [ 125.946349, 52.792799 ], [ 125.068211, 53.161045 ], [ 123.57147, 53.4588 ], [ 122.245748, 53.431726 ], [ 121.003085, 53.251401 ], [ 120.177089, 52.753886 ], [ 120.725789, 52.516226 ], [ 120.7382, 51.96411 ], [ 120.18208, 51.64355 ], [ 119.27939, 50.58292 ], [ 119.288461, 50.142883 ], [ 117.879244, 49.510983 ], [ 116.678801, 49.888531 ], [ 115.485695, 49.805177 ], [ 114.96211, 50.140247 ], [ 114.362456, 50.248303 ], [ 112.89774, 49.543565 ], [ 111.581231, 49.377968 ], [ 110.662011, 49.130128 ], [ 109.402449, 49.292961 ], [ 108.475167, 49.282548 ], [ 107.868176, 49.793705 ], [ 106.888804, 50.274296 ], [ 105.886591, 50.406019 ], [ 104.62158, 50.27532 ], [ 103.676545, 50.089966 ], [ 102.25589, 50.51056 ], [ 102.06521, 51.25991 ], [ 100.88948, 51.516856 ], [ 99.981732, 51.634006 ], [ 98.861491, 52.047366 ], [ 97.82574, 51.010995 ], [ 98.231762, 50.422401 ], [ 97.25976, 49.72605 ], [ 95.81402, 49.97746 ], [ 94.815949, 50.013433 ], [ 94.147566, 50.480537 ], [ 93.10421, 50.49529 ], [ 92.234712, 50.802171 ], [ 90.713667, 50.331812 ], [ 88.805567, 49.470521 ], [ 87.751264, 49.297198 ], [ 87.35997, 49.214981 ], [ 86.829357, 49.826675 ], [ 85.54127, 49.692859 ], [ 85.11556, 50.117303 ], [ 84.416377, 50.3114 ], [ 83.935115, 50.889246 ], [ 83.383004, 51.069183 ], [ 81.945986, 50.812196 ], [ 80.568447, 51.388336 ], [ 80.03556, 50.864751 ], [ 77.800916, 53.404415 ], [ 76.525179, 54.177003 ], [ 76.8911, 54.490524 ], [ 74.38482, 53.54685 ], [ 73.425679, 53.48981 ], [ 73.508516, 54.035617 ], [ 72.22415, 54.376655 ], [ 71.180131, 54.133285 ], [ 70.865267, 55.169734 ], [ 69.068167, 55.38525 ], [ 68.1691, 54.970392 ], [ 65.66687, 54.60125 ], [ 65.178534, 54.354228 ], [ 61.4366, 54.00625 ], [ 60.978066, 53.664993 ], [ 61.699986, 52.979996 ], [ 60.739993, 52.719986 ], [ 60.927269, 52.447548 ], [ 59.967534, 51.96042 ], [ 61.588003, 51.272659 ], [ 61.337424, 50.79907 ], [ 59.932807, 50.842194 ], [ 59.642282, 50.545442 ], [ 58.36332, 51.06364 ], [ 56.77798, 51.04355 ], [ 55.71694, 50.62171 ], [ 54.532878, 51.02624 ], [ 52.328724, 51.718652 ], [ 50.766648, 51.692762 ], [ 48.702382, 50.605128 ], [ 48.577841, 49.87476 ], [ 47.54948, 50.454698 ], [ 46.751596, 49.356006 ], [ 47.043672, 49.152039 ], [ 46.466446, 48.394152 ], [ 47.31524, 47.71585 ], [ 48.05725, 47.74377 ], [ 48.694734, 47.075628 ], [ 48.59325, 46.56104 ], [ 49.10116, 46.39933 ], [ 48.64541, 45.80629 ], [ 47.67591, 45.64149 ], [ 46.68201, 44.6092 ], [ 47.59094, 43.66016 ], [ 47.49252, 42.98658 ], [ 48.58437, 41.80888 ], [ 47.987283, 41.405819 ], [ 47.815666, 41.151416 ], [ 47.373315, 41.219732 ], [ 46.686071, 41.827137 ], [ 46.404951, 41.860675 ], [ 45.7764, 42.09244 ], [ 45.470279, 42.502781 ], [ 44.537623, 42.711993 ], [ 43.93121, 42.55496 ], [ 43.75599, 42.74083 ], [ 42.3944, 43.2203 ], [ 40.92219, 43.38215 ], [ 40.076965, 43.553104 ], [ 39.955009, 43.434998 ], [ 38.68, 44.28 ], [ 37.53912, 44.65721 ], [ 36.67546, 45.24469 ], [ 37.40317, 45.40451 ], [ 38.23295, 46.24087 ], [ 37.67372, 46.63657 ], [ 39.14767, 47.04475 ], [ 39.1212, 47.26336 ], [ 38.223538, 47.10219 ], [ 38.255112, 47.5464 ], [ 38.77057, 47.82562 ], [ 39.738278, 47.898937 ], [ 39.89562, 48.23241 ], [ 39.67465, 48.78382 ], [ 40.080789, 49.30743 ], [ 40.06904, 49.60105 ], [ 38.594988, 49.926462 ], [ 38.010631, 49.915662 ], [ 37.39346, 50.383953 ], [ 36.626168, 50.225591 ], [ 35.356116, 50.577197 ], [ 35.37791, 50.77394 ], [ 35.022183, 51.207572 ], [ 34.224816, 51.255993 ], [ 34.141978, 51.566413 ], [ 34.391731, 51.768882 ], [ 33.7527, 52.335075 ], [ 32.715761, 52.238465 ], [ 32.412058, 52.288695 ], [ 32.15944, 52.06125 ], [ 31.78597, 52.10168 ], [ 31.540018, 52.742052 ], [ 31.305201, 53.073996 ], [ 31.49764, 53.16743 ], [ 32.304519, 53.132726 ], [ 32.693643, 53.351421 ], [ 32.405599, 53.618045 ], [ 31.731273, 53.794029 ], [ 31.791424, 53.974639 ], [ 31.384472, 54.157056 ], [ 30.757534, 54.811771 ], [ 30.971836, 55.081548 ], [ 30.873909, 55.550976 ], [ 29.896294, 55.789463 ], [ 29.371572, 55.670091 ], [ 29.229513, 55.918344 ], [ 28.176709, 56.16913 ], [ 27.855282, 56.759326 ], [ 27.770016, 57.244258 ], [ 27.288185, 57.474528 ], [ 27.716686, 57.791899 ], [ 27.42015, 58.72457 ], [ 28.131699, 59.300825 ], [ 27.98112, 59.47537 ], [ 29.1177, 60.02805 ], [ 28.07, 60.50352 ], [ 30.211107, 61.780028 ], [ 31.139991, 62.357693 ], [ 31.516092, 62.867687 ], [ 30.035872, 63.552814 ], [ 30.444685, 64.204453 ], [ 29.54443, 64.948672 ], [ 30.21765, 65.80598 ], [ 29.054589, 66.944286 ], [ 29.977426, 67.698297 ], [ 28.445944, 68.364613 ], [ 28.59193, 69.064777 ], [ 29.39955, 69.15692 ], [ 31.10108, 69.55811 ], [ 32.13272, 69.90595 ], [ 33.77547, 69.30142 ], [ 36.51396, 69.06342 ], [ 40.29234, 67.9324 ], [ 41.05987, 67.45713 ], [ 41.12595, 66.79158 ], [ 40.01583, 66.26618 ], [ 38.38295, 65.99953 ], [ 33.91871, 66.75961 ], [ 33.18444, 66.63253 ], [ 34.81477, 65.90015 ], [ 34.878574, 65.436213 ], [ 34.94391, 64.41437 ], [ 36.23129, 64.10945 ], [ 37.01273, 63.84983 ], [ 37.14197, 64.33471 ], [ 36.539579, 64.76446 ], [ 37.17604, 65.14322 ], [ 39.59345, 64.52079 ], [ 40.4356, 64.76446 ], [ 39.7626, 65.49682 ], [ 42.09309, 66.47623 ], [ 43.01604, 66.41858 ], [ 43.94975, 66.06908 ], [ 44.53226, 66.75634 ], [ 43.69839, 67.35245 ], [ 44.18795, 67.95051 ], [ 43.45282, 68.57079 ], [ 46.25, 68.25 ], [ 46.82134, 67.68997 ], [ 45.55517, 67.56652 ], [ 45.56202, 67.01005 ], [ 46.34915, 66.66767 ], [ 47.89416, 66.88455 ], [ 48.13876, 67.52238 ], [ 50.22766, 67.99867 ], [ 53.71743, 68.85738 ], [ 54.47171, 68.80815 ], [ 53.48582, 68.20131 ], [ 54.72628, 68.09702 ], [ 55.44268, 68.43866 ], [ 57.31702, 68.46628 ], [ 58.802, 68.88082 ], [ 59.94142, 68.27844 ], [ 61.07784, 68.94069 ], [ 60.03, 69.52 ], [ 60.55, 69.85 ], [ 63.504, 69.54739 ], [ 64.888115, 69.234835 ], [ 68.51216, 68.09233 ], [ 69.18068, 68.61563 ], [ 68.16444, 69.14436 ], [ 68.13522, 69.35649 ], [ 66.93008, 69.45461 ], [ 67.25976, 69.92873 ], [ 66.72492, 70.70889 ], [ 66.69466, 71.02897 ], [ 68.54006, 71.9345 ], [ 69.19636, 72.84336 ], [ 69.94, 73.04 ], [ 72.58754, 72.77629 ], [ 72.79603, 72.22006 ], [ 71.84811, 71.40898 ], [ 72.47011, 71.09019 ], [ 72.79188, 70.39114 ], [ 72.5647, 69.02085 ], [ 73.66787, 68.4079 ], [ 73.2387, 67.7404 ], [ 71.28, 66.32 ], [ 72.42301, 66.17267 ], [ 72.82077, 66.53267 ], [ 73.92099, 66.78946 ], [ 74.18651, 67.28429 ], [ 75.052, 67.76047 ], [ 74.46926, 68.32899 ], [ 74.93584, 68.98918 ], [ 73.84236, 69.07146 ], [ 73.60187, 69.62763 ], [ 74.3998, 70.63175 ], [ 73.1011, 71.44717 ], [ 74.89082, 72.12119 ], [ 74.65926, 72.83227 ], [ 75.15801, 72.85497 ], [ 75.68351, 72.30056 ], [ 75.28898, 71.33556 ], [ 76.35911, 71.15287 ], [ 75.90313, 71.87401 ], [ 77.57665, 72.26717 ], [ 79.65202, 72.32011 ], [ 81.5, 71.75 ], [ 80.61071, 72.58285 ], [ 80.51109, 73.6482 ], [ 82.25, 73.85 ], [ 84.65526, 73.80591 ], [ 86.8223, 73.93688 ], [ 86.00956, 74.45967 ], [ 87.16682, 75.11643 ], [ 88.31571, 75.14393 ], [ 90.26, 75.64 ], [ 92.90058, 75.77333 ], [ 93.23421, 76.0472 ], [ 95.86, 76.14 ], [ 96.67821, 75.91548 ], [ 98.92254, 76.44689 ], [ 100.75967, 76.43028 ], [ 101.03532, 76.86189 ], [ 101.99084, 77.28754 ], [ 104.3516, 77.69792 ], [ 106.06664, 77.37389 ], [ 104.705, 77.1274 ], [ 106.97013, 76.97419 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/RUS_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 48.92249926 ], [ 101.25, 55.77657302 ], [ 112.5, 55.77657302 ], [ 112.5, 48.92249926 ], [ 101.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 74.01954331 ], [ 101.25, 76.84081641 ], [ 112.5, 76.84081641 ], [ 112.5, 74.01954331 ], [ 101.25, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 76.84081641 ], [ 101.25, 78.06198919 ], [ 106.875, 78.06198919 ], [ 106.875, 76.84081641 ], [ 101.25, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 76.84081641 ], [ 106.875, 78.06198919 ], [ 112.5, 78.06198919 ], [ 112.5, 76.84081641 ], [ 106.875, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 48.92249926 ], [ 112.5, 55.77657302 ], [ 123.75, 55.77657302 ], [ 123.75, 48.92249926 ], [ 112.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 55.77657302 ], [ 112.5, 66.51326044 ], [ 135, 66.51326044 ], [ 135, 55.77657302 ], [ 112.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 66.51326044 ], [ 112.5, 70.61261424 ], [ 123.75, 70.61261424 ], [ 123.75, 66.51326044 ], [ 112.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 70.61261424 ], [ 112.5, 74.01954331 ], [ 123.75, 74.01954331 ], [ 123.75, 70.61261424 ], [ 112.5, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 74.01954331 ], [ 112.5, 75.49715732 ], [ 118.125, 75.49715732 ], [ 118.125, 74.01954331 ], [ 112.5, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.5, 75.49715732 ], [ 112.5, 76.84081641 ], [ 118.125, 76.84081641 ], [ 118.125, 75.49715732 ], [ 112.5, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 48.92249926 ], [ 123.75, 55.77657302 ], [ 135, 55.77657302 ], [ 135, 48.92249926 ], [ 123.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 66.51326044 ], [ 123.75, 70.61261424 ], [ 135, 70.61261424 ], [ 135, 66.51326044 ], [ 123.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 70.61261424 ], [ 123.75, 72.39570571 ], [ 129.375, 72.39570571 ], [ 129.375, 70.61261424 ], [ 123.75, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, 72.39570571 ], [ 123.75, 74.01954331 ], [ 129.375, 74.01954331 ], [ 129.375, 72.39570571 ], [ 123.75, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 40.97989807 ], [ 129.375, 45.08903556 ], [ 135, 45.08903556 ], [ 135, 40.97989807 ], [ 129.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 45.08903556 ], [ 129.375, 48.92249926 ], [ 135, 48.92249926 ], [ 135, 45.08903556 ], [ 129.375, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375, 70.61261424 ], [ 129.375, 72.39570571 ], [ 135, 72.39570571 ], [ 135, 70.61261424 ], [ 129.375, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 40.97989807 ], [ 135, 45.08903556 ], [ 140.625, 45.08903556 ], [ 140.625, 40.97989807 ], [ 135, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 45.08903556 ], [ 135, 48.92249926 ], [ 140.625, 48.92249926 ], [ 140.625, 45.08903556 ], [ 135, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 48.92249926 ], [ 135, 55.77657302 ], [ 146.25, 55.77657302 ], [ 146.25, 48.92249926 ], [ 135, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 55.77657302 ], [ 135, 66.51326044 ], [ 157.5, 66.51326044 ], [ 157.5, 55.77657302 ], [ 135, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 66.51326044 ], [ 135, 70.61261424 ], [ 146.25, 70.61261424 ], [ 146.25, 66.51326044 ], [ 135, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 135, 70.61261424 ], [ 135, 74.01954331 ], [ 146.25, 74.01954331 ], [ 146.25, 70.61261424 ], [ 135, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, 66.51326044 ], [ 146.25, 70.61261424 ], [ 157.5, 70.61261424 ], [ 157.5, 66.51326044 ], [ 146.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, 70.61261424 ], [ 146.25, 72.39570571 ], [ 151.875, 72.39570571 ], [ 151.875, 70.61261424 ], [ 146.25, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.25, 72.39570571 ], [ 146.25, 74.01954331 ], [ 151.875, 74.01954331 ], [ 151.875, 72.39570571 ], [ 146.25, 72.39570571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 48.92249926 ], [ 151.875, 52.48278022 ], [ 157.5, 52.48278022 ], [ 157.5, 48.92249926 ], [ 151.875, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 52.48278022 ], [ 151.875, 55.77657302 ], [ 157.5, 55.77657302 ], [ 157.5, 52.48278022 ], [ 151.875, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, 70.61261424 ], [ 151.875, 72.39570571 ], [ 157.5, 72.39570571 ], [ 157.5, 70.61261424 ], [ 151.875, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 48.92249926 ], [ 157.5, 52.48278022 ], [ 163.125, 52.48278022 ], [ 163.125, 48.92249926 ], [ 157.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 52.48278022 ], [ 157.5, 55.77657302 ], [ 163.125, 55.77657302 ], [ 163.125, 52.48278022 ], [ 157.5, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 55.77657302 ], [ 157.5, 61.60639637 ], [ 168.75, 61.60639637 ], [ 168.75, 55.77657302 ], [ 157.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 61.60639637 ], [ 157.5, 66.51326044 ], [ 168.75, 66.51326044 ], [ 168.75, 61.60639637 ], [ 157.5, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 66.51326044 ], [ 157.5, 70.61261424 ], [ 168.75, 70.61261424 ], [ 168.75, 66.51326044 ], [ 157.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, 70.61261424 ], [ 157.5, 72.39570571 ], [ 163.125, 72.39570571 ], [ 163.125, 70.61261424 ], [ 157.5, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, 58.81374172 ], [ 168.75, 61.60639637 ], [ 174.375, 61.60639637 ], [ 174.375, 58.81374172 ], [ 168.75, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, 61.60639637 ], [ 168.75, 66.51326044 ], [ 180, 66.51326044 ], [ 180, 61.60639637 ], [ 168.75, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.75, 66.51326044 ], [ 168.75, 70.61261424 ], [ 180, 70.61261424 ], [ 180, 66.51326044 ], [ 168.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 180, 64.1681069 ], [ 180, 66.51326044 ], [ 185.625, 66.51326044 ], [ 185.625, 64.1681069 ], [ 180, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 180, 66.51326044 ], [ 180, 68.65655498 ], [ 185.625, 68.65655498 ], [ 185.625, 66.51326044 ], [ 180, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 180, 68.65655498 ], [ 180, 70.61261424 ], [ 185.625, 70.61261424 ], [ 185.625, 68.65655498 ], [ 180, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 55.77657302 ], [ 22.5, 61.60639637 ], [ 33.75, 61.60639637 ], [ 33.75, 55.77657302 ], [ 22.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 48.92249926 ], [ 28.125, 52.48278022 ], [ 33.75, 52.48278022 ], [ 33.75, 48.92249926 ], [ 28.125, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 52.48278022 ], [ 28.125, 55.77657302 ], [ 33.75, 55.77657302 ], [ 33.75, 52.48278022 ], [ 28.125, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 61.60639637 ], [ 28.125, 64.1681069 ], [ 33.75, 64.1681069 ], [ 33.75, 61.60639637 ], [ 28.125, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 64.1681069 ], [ 28.125, 66.51326044 ], [ 33.75, 66.51326044 ], [ 33.75, 64.1681069 ], [ 28.125, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 66.51326044 ], [ 28.125, 68.65655498 ], [ 33.75, 68.65655498 ], [ 33.75, 66.51326044 ], [ 28.125, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 68.65655498 ], [ 28.125, 70.61261424 ], [ 33.75, 70.61261424 ], [ 33.75, 68.65655498 ], [ 28.125, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 40.97989807 ], [ 33.75, 48.92249926 ], [ 45, 48.92249926 ], [ 45, 40.97989807 ], [ 33.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 48.92249926 ], [ 33.75, 55.77657302 ], [ 45, 55.77657302 ], [ 45, 48.92249926 ], [ 33.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 55.77657302 ], [ 33.75, 61.60639637 ], [ 45, 61.60639637 ], [ 45, 55.77657302 ], [ 33.75, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 61.60639637 ], [ 33.75, 66.51326044 ], [ 45, 66.51326044 ], [ 45, 61.60639637 ], [ 33.75, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 66.51326044 ], [ 33.75, 68.65655498 ], [ 39.375, 68.65655498 ], [ 39.375, 66.51326044 ], [ 33.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 68.65655498 ], [ 33.75, 70.61261424 ], [ 39.375, 70.61261424 ], [ 39.375, 68.65655498 ], [ 33.75, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 66.51326044 ], [ 39.375, 68.65655498 ], [ 45, 68.65655498 ], [ 45, 66.51326044 ], [ 39.375, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 40.97989807 ], [ 45, 45.08903556 ], [ 50.625, 45.08903556 ], [ 50.625, 40.97989807 ], [ 45, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 45.08903556 ], [ 45, 48.92249926 ], [ 50.625, 48.92249926 ], [ 50.625, 45.08903556 ], [ 45, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 48.92249926 ], [ 45, 55.77657302 ], [ 56.25, 55.77657302 ], [ 56.25, 48.92249926 ], [ 45, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 55.77657302 ], [ 45, 66.51326044 ], [ 67.5, 66.51326044 ], [ 67.5, 55.77657302 ], [ 45, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 66.51326044 ], [ 45, 68.65655498 ], [ 50.625, 68.65655498 ], [ 50.625, 66.51326044 ], [ 45, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 66.51326044 ], [ 50.625, 68.65655498 ], [ 56.25, 68.65655498 ], [ 56.25, 66.51326044 ], [ 50.625, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 68.65655498 ], [ 50.625, 70.61261424 ], [ 56.25, 70.61261424 ], [ 56.25, 68.65655498 ], [ 50.625, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 48.92249926 ], [ 56.25, 52.48278022 ], [ 61.875, 52.48278022 ], [ 61.875, 48.92249926 ], [ 56.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 52.48278022 ], [ 56.25, 55.77657302 ], [ 61.875, 55.77657302 ], [ 61.875, 52.48278022 ], [ 56.25, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 66.51326044 ], [ 56.25, 70.61261424 ], [ 67.5, 70.61261424 ], [ 67.5, 66.51326044 ], [ 56.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 52.48278022 ], [ 61.875, 55.77657302 ], [ 67.5, 55.77657302 ], [ 67.5, 52.48278022 ], [ 61.875, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 70.61261424 ], [ 61.875, 72.39570571 ], [ 67.5, 72.39570571 ], [ 67.5, 70.61261424 ], [ 61.875, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 52.48278022 ], [ 67.5, 55.77657302 ], [ 73.125, 55.77657302 ], [ 73.125, 52.48278022 ], [ 67.5, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 55.77657302 ], [ 67.5, 66.51326044 ], [ 90, 66.51326044 ], [ 90, 55.77657302 ], [ 67.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 66.51326044 ], [ 67.5, 74.01954331 ], [ 90, 74.01954331 ], [ 90, 66.51326044 ], [ 67.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 48.92249926 ], [ 73.125, 52.48278022 ], [ 78.75, 52.48278022 ], [ 78.75, 48.92249926 ], [ 73.125, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 52.48278022 ], [ 73.125, 55.77657302 ], [ 78.75, 55.77657302 ], [ 78.75, 52.48278022 ], [ 73.125, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.75, 48.92249926 ], [ 78.75, 55.77657302 ], [ 90, 55.77657302 ], [ 90, 48.92249926 ], [ 78.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 74.01954331 ], [ 84.375, 75.49715732 ], [ 90, 75.49715732 ], [ 90, 74.01954331 ], [ 84.375, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375, 75.49715732 ], [ 84.375, 76.84081641 ], [ 90, 76.84081641 ], [ 90, 75.49715732 ], [ 84.375, 75.49715732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 48.92249926 ], [ 90, 55.77657302 ], [ 101.25, 55.77657302 ], [ 101.25, 48.92249926 ], [ 90, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 55.77657302 ], [ 90, 66.51326044 ], [ 112.5, 66.51326044 ], [ 112.5, 55.77657302 ], [ 90, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 66.51326044 ], [ 90, 74.01954331 ], [ 112.5, 74.01954331 ], [ 112.5, 66.51326044 ], [ 90, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 90, 74.01954331 ], [ 90, 76.84081641 ], [ 101.25, 76.84081641 ], [ 101.25, 74.01954331 ], [ 90, 74.01954331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 76.84081641 ], [ 95.625, 78.06198919 ], [ 101.25, 78.06198919 ], [ 101.25, 76.84081641 ], [ 95.625, 76.84081641 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.97013, 76.97419 ], [ 107.24, 76.48 ], [ 108.1538, 76.72335 ], [ 111.07726, 76.71 ], [ 113.33151, 76.22224 ], [ 114.13417, 75.84764 ], [ 113.88539, 75.32779 ], [ 112.77918, 75.03186 ], [ 110.15125, 74.47673 ], [ 109.4, 74.18 ], [ 110.64, 74.04 ], [ 112.11919, 73.78774 ], [ 113.01954, 73.97693 ], [ 113.52958, 73.33505 ], [ 113.96881, 73.59488 ], [ 115.56782, 73.75285 ], [ 118.77633, 73.58772 ], [ 119.02, 73.12 ], [ 123.20066, 72.97122 ], [ 123.25777, 73.73503 ], [ 125.38, 73.56 ], [ 126.97644, 73.56549 ], [ 128.59126, 73.03871 ], [ 129.05157, 72.39872 ], [ 128.46, 71.98 ], [ 129.71599, 71.19304 ], [ 131.28858, 70.78699 ], [ 132.2535, 71.8363 ], [ 133.85766, 71.38642 ], [ 135.56193, 71.65525 ], [ 137.49755, 71.34763 ], [ 138.23409, 71.62803 ], [ 139.86983, 71.48783 ], [ 139.14791, 72.41619 ], [ 140.46817, 72.84941 ], [ 149.5, 72.2 ], [ 150.35118, 71.60643 ], [ 152.9689, 70.84222 ], [ 157.00688, 71.03141 ], [ 158.99779, 70.86672 ], [ 159.83031, 70.45324 ], [ 159.70866, 69.72198 ], [ 160.94053, 69.43728 ], [ 162.27907, 69.64204 ], [ 164.05248, 69.66823 ], [ 165.94037, 69.47199 ], [ 167.83567, 69.58269 ], [ 169.57763, 68.6938 ], [ 170.81688, 69.01363 ], [ 170.0082, 69.65276 ], [ 170.45345, 70.09703 ], [ 173.64391, 69.81743 ], [ 175.72403, 69.87725 ], [ 178.6, 69.4 ], [ 180, 68.963636 ], [ 180, 64.979709 ], [ 179.99281, 64.97433 ], [ 178.7072, 64.53493 ], [ 177.41128, 64.60821 ], [ 178.313, 64.07593 ], [ 178.90825, 63.25197 ], [ 179.37034, 62.98262 ], [ 179.48636, 62.56894 ], [ 179.22825, 62.3041 ], [ 177.3643, 62.5219 ], [ 174.56929, 61.76915 ], [ 173.68013, 61.65261 ], [ 172.15, 60.95 ], [ 170.6985, 60.33618 ], [ 170.33085, 59.88177 ], [ 168.90046, 60.57355 ], [ 166.29498, 59.78855 ], [ 165.84, 60.16 ], [ 164.87674, 59.7316 ], [ 163.53929, 59.86871 ], [ 163.21711, 59.21101 ], [ 162.01733, 58.24328 ], [ 162.05297, 57.83912 ], [ 163.19191, 57.61503 ], [ 163.05794, 56.15924 ], [ 162.12958, 56.12219 ], [ 161.70146, 55.28568 ], [ 162.11749, 54.85514 ], [ 160.36877, 54.34433 ], [ 160.02173, 53.20257 ], [ 158.53094, 52.95868 ], [ 158.23118, 51.94269 ], [ 156.78979, 51.01105 ], [ 156.42, 51.7 ], [ 155.99182, 53.15895 ], [ 155.43366, 55.38103 ], [ 155.91442, 56.76792 ], [ 156.75815, 57.3647 ], [ 156.81035, 57.83204 ], [ 158.36433, 58.05575 ], [ 160.15064, 59.31477 ], [ 161.87204, 60.343 ], [ 163.66969, 61.1409 ], [ 164.47355, 62.55061 ], [ 163.25842, 62.46627 ], [ 162.65791, 61.6425 ], [ 160.12148, 60.54423 ], [ 159.30232, 61.77396 ], [ 156.72068, 61.43442 ], [ 154.21806, 59.75818 ], [ 155.04375, 59.14495 ], [ 152.81185, 58.88385 ], [ 151.26573, 58.78089 ], [ 151.33815, 59.50396 ], [ 149.78371, 59.65573 ], [ 148.54481, 59.16448 ], [ 145.48722, 59.33637 ], [ 142.19782, 59.03998 ], [ 138.95848, 57.08805 ], [ 135.12619, 54.72959 ], [ 136.70171, 54.60355 ], [ 137.19342, 53.97732 ], [ 138.1647, 53.75501 ], [ 138.80463, 54.25455 ], [ 139.90151, 54.18968 ], [ 141.34531, 53.08957 ], [ 141.37923, 52.23877 ], [ 140.59742, 51.23967 ], [ 140.51308, 50.04553 ], [ 140.06193, 48.44671 ], [ 138.55472, 46.99965 ], [ 138.21971, 46.30795 ], [ 136.86232, 45.1435 ], [ 135.51535, 43.989 ], [ 134.86939, 43.39821 ], [ 133.53687, 42.81147 ], [ 132.90627, 42.79849 ], [ 132.27807, 43.28456 ], [ 130.93587, 42.55274 ], [ 130.78, 42.22 ], [ 130.64, 42.395 ], [ 130.633866, 42.903015 ], [ 131.144688, 42.92999 ], [ 131.288555, 44.11152 ], [ 131.02519, 44.96796 ], [ 131.883454, 45.321162 ], [ 133.09712, 45.14409 ], [ 133.769644, 46.116927 ], [ 134.11235, 47.21248 ], [ 134.50081, 47.57845 ], [ 135.026311, 48.47823 ], [ 133.373596, 48.183442 ], [ 132.50669, 47.78896 ], [ 130.98726, 47.79013 ], [ 130.582293, 48.729687 ], [ 129.397818, 49.4406 ], [ 127.6574, 49.76027 ], [ 127.287456, 50.739797 ], [ 126.939157, 51.353894 ], [ 126.564399, 51.784255 ], [ 125.946349, 52.792799 ], [ 125.068211, 53.161045 ], [ 123.57147, 53.4588 ], [ 122.245748, 53.431726 ], [ 121.003085, 53.251401 ], [ 120.177089, 52.753886 ], [ 120.725789, 52.516226 ], [ 120.7382, 51.96411 ], [ 120.18208, 51.64355 ], [ 119.27939, 50.58292 ], [ 119.288461, 50.142883 ], [ 117.879244, 49.510983 ], [ 116.678801, 49.888531 ], [ 115.485695, 49.805177 ], [ 114.96211, 50.140247 ], [ 114.362456, 50.248303 ], [ 112.89774, 49.543565 ], [ 111.581231, 49.377968 ], [ 110.662011, 49.130128 ], [ 109.402449, 49.292961 ], [ 108.475167, 49.282548 ], [ 107.868176, 49.793705 ], [ 106.888804, 50.274296 ], [ 105.886591, 50.406019 ], [ 104.62158, 50.27532 ], [ 103.676545, 50.089966 ], [ 102.25589, 50.51056 ], [ 102.06521, 51.25991 ], [ 100.88948, 51.516856 ], [ 99.981732, 51.634006 ], [ 98.861491, 52.047366 ], [ 97.82574, 51.010995 ], [ 98.231762, 50.422401 ], [ 97.25976, 49.72605 ], [ 95.81402, 49.97746 ], [ 94.815949, 50.013433 ], [ 94.147566, 50.480537 ], [ 93.10421, 50.49529 ], [ 92.234712, 50.802171 ], [ 90.713667, 50.331812 ], [ 88.805567, 49.470521 ], [ 87.751264, 49.297198 ], [ 87.35997, 49.214981 ], [ 86.829357, 49.826675 ], [ 85.54127, 49.692859 ], [ 85.11556, 50.117303 ], [ 84.416377, 50.3114 ], [ 83.935115, 50.889246 ], [ 83.383004, 51.069183 ], [ 81.945986, 50.812196 ], [ 80.568447, 51.388336 ], [ 80.03556, 50.864751 ], [ 77.800916, 53.404415 ], [ 76.525179, 54.177003 ], [ 76.8911, 54.490524 ], [ 74.38482, 53.54685 ], [ 73.425679, 53.48981 ], [ 73.508516, 54.035617 ], [ 72.22415, 54.376655 ], [ 71.180131, 54.133285 ], [ 70.865267, 55.169734 ], [ 69.068167, 55.38525 ], [ 68.1691, 54.970392 ], [ 65.66687, 54.60125 ], [ 65.178534, 54.354228 ], [ 61.4366, 54.00625 ], [ 60.978066, 53.664993 ], [ 61.699986, 52.979996 ], [ 60.739993, 52.719986 ], [ 60.927269, 52.447548 ], [ 59.967534, 51.96042 ], [ 61.588003, 51.272659 ], [ 61.337424, 50.79907 ], [ 59.932807, 50.842194 ], [ 59.642282, 50.545442 ], [ 58.36332, 51.06364 ], [ 56.77798, 51.04355 ], [ 55.71694, 50.62171 ], [ 54.532878, 51.02624 ], [ 52.328724, 51.718652 ], [ 50.766648, 51.692762 ], [ 48.702382, 50.605128 ], [ 48.577841, 49.87476 ], [ 47.54948, 50.454698 ], [ 46.751596, 49.356006 ], [ 47.043672, 49.152039 ], [ 46.466446, 48.394152 ], [ 47.31524, 47.71585 ], [ 48.05725, 47.74377 ], [ 48.694734, 47.075628 ], [ 48.59325, 46.56104 ], [ 49.10116, 46.39933 ], [ 48.64541, 45.80629 ], [ 47.67591, 45.64149 ], [ 46.68201, 44.6092 ], [ 47.59094, 43.66016 ], [ 47.49252, 42.98658 ], [ 48.58437, 41.80888 ], [ 47.987283, 41.405819 ], [ 47.815666, 41.151416 ], [ 47.373315, 41.219732 ], [ 46.686071, 41.827137 ], [ 46.404951, 41.860675 ], [ 45.7764, 42.09244 ], [ 45.470279, 42.502781 ], [ 44.537623, 42.711993 ], [ 43.93121, 42.55496 ], [ 43.75599, 42.74083 ], [ 42.3944, 43.2203 ], [ 40.92219, 43.38215 ], [ 40.076965, 43.553104 ], [ 39.955009, 43.434998 ], [ 38.68, 44.28 ], [ 37.53912, 44.65721 ], [ 36.67546, 45.24469 ], [ 37.40317, 45.40451 ], [ 38.23295, 46.24087 ], [ 37.67372, 46.63657 ], [ 39.14767, 47.04475 ], [ 39.1212, 47.26336 ], [ 38.223538, 47.10219 ], [ 38.255112, 47.5464 ], [ 38.77057, 47.82562 ], [ 39.738278, 47.898937 ], [ 39.89562, 48.23241 ], [ 39.67465, 48.78382 ], [ 40.080789, 49.30743 ], [ 40.06904, 49.60105 ], [ 38.594988, 49.926462 ], [ 38.010631, 49.915662 ], [ 37.39346, 50.383953 ], [ 36.626168, 50.225591 ], [ 35.356116, 50.577197 ], [ 35.37791, 50.77394 ], [ 35.022183, 51.207572 ], [ 34.224816, 51.255993 ], [ 34.141978, 51.566413 ], [ 34.391731, 51.768882 ], [ 33.7527, 52.335075 ], [ 32.715761, 52.238465 ], [ 32.412058, 52.288695 ], [ 32.15944, 52.06125 ], [ 31.78597, 52.10168 ], [ 31.540018, 52.742052 ], [ 31.305201, 53.073996 ], [ 31.49764, 53.16743 ], [ 32.304519, 53.132726 ], [ 32.693643, 53.351421 ], [ 32.405599, 53.618045 ], [ 31.731273, 53.794029 ], [ 31.791424, 53.974639 ], [ 31.384472, 54.157056 ], [ 30.757534, 54.811771 ], [ 30.971836, 55.081548 ], [ 30.873909, 55.550976 ], [ 29.896294, 55.789463 ], [ 29.371572, 55.670091 ], [ 29.229513, 55.918344 ], [ 28.176709, 56.16913 ], [ 27.855282, 56.759326 ], [ 27.770016, 57.244258 ], [ 27.288185, 57.474528 ], [ 27.716686, 57.791899 ], [ 27.42015, 58.72457 ], [ 28.131699, 59.300825 ], [ 27.98112, 59.47537 ], [ 29.1177, 60.02805 ], [ 28.07, 60.50352 ], [ 30.211107, 61.780028 ], [ 31.139991, 62.357693 ], [ 31.516092, 62.867687 ], [ 30.035872, 63.552814 ], [ 30.444685, 64.204453 ], [ 29.54443, 64.948672 ], [ 30.21765, 65.80598 ], [ 29.054589, 66.944286 ], [ 29.977426, 67.698297 ], [ 28.445944, 68.364613 ], [ 28.59193, 69.064777 ], [ 29.39955, 69.15692 ], [ 31.10108, 69.55811 ], [ 32.13272, 69.90595 ], [ 33.77547, 69.30142 ], [ 36.51396, 69.06342 ], [ 40.29234, 67.9324 ], [ 41.05987, 67.45713 ], [ 41.12595, 66.79158 ], [ 40.01583, 66.26618 ], [ 38.38295, 65.99953 ], [ 33.91871, 66.75961 ], [ 33.18444, 66.63253 ], [ 34.81477, 65.90015 ], [ 34.878574, 65.436213 ], [ 34.94391, 64.41437 ], [ 36.23129, 64.10945 ], [ 37.01273, 63.84983 ], [ 37.14197, 64.33471 ], [ 36.539579, 64.76446 ], [ 37.17604, 65.14322 ], [ 39.59345, 64.52079 ], [ 40.4356, 64.76446 ], [ 39.7626, 65.49682 ], [ 42.09309, 66.47623 ], [ 43.01604, 66.41858 ], [ 43.94975, 66.06908 ], [ 44.53226, 66.75634 ], [ 43.69839, 67.35245 ], [ 44.18795, 67.95051 ], [ 43.45282, 68.57079 ], [ 46.25, 68.25 ], [ 46.82134, 67.68997 ], [ 45.55517, 67.56652 ], [ 45.56202, 67.01005 ], [ 46.34915, 66.66767 ], [ 47.89416, 66.88455 ], [ 48.13876, 67.52238 ], [ 50.22766, 67.99867 ], [ 53.71743, 68.85738 ], [ 54.47171, 68.80815 ], [ 53.48582, 68.20131 ], [ 54.72628, 68.09702 ], [ 55.44268, 68.43866 ], [ 57.31702, 68.46628 ], [ 58.802, 68.88082 ], [ 59.94142, 68.27844 ], [ 61.07784, 68.94069 ], [ 60.03, 69.52 ], [ 60.55, 69.85 ], [ 63.504, 69.54739 ], [ 64.888115, 69.234835 ], [ 68.51216, 68.09233 ], [ 69.18068, 68.61563 ], [ 68.16444, 69.14436 ], [ 68.13522, 69.35649 ], [ 66.93008, 69.45461 ], [ 67.25976, 69.92873 ], [ 66.72492, 70.70889 ], [ 66.69466, 71.02897 ], [ 68.54006, 71.9345 ], [ 69.19636, 72.84336 ], [ 69.94, 73.04 ], [ 72.58754, 72.77629 ], [ 72.79603, 72.22006 ], [ 71.84811, 71.40898 ], [ 72.47011, 71.09019 ], [ 72.79188, 70.39114 ], [ 72.5647, 69.02085 ], [ 73.66787, 68.4079 ], [ 73.2387, 67.7404 ], [ 71.28, 66.32 ], [ 72.42301, 66.17267 ], [ 72.82077, 66.53267 ], [ 73.92099, 66.78946 ], [ 74.18651, 67.28429 ], [ 75.052, 67.76047 ], [ 74.46926, 68.32899 ], [ 74.93584, 68.98918 ], [ 73.84236, 69.07146 ], [ 73.60187, 69.62763 ], [ 74.3998, 70.63175 ], [ 73.1011, 71.44717 ], [ 74.89082, 72.12119 ], [ 74.65926, 72.83227 ], [ 75.15801, 72.85497 ], [ 75.68351, 72.30056 ], [ 75.28898, 71.33556 ], [ 76.35911, 71.15287 ], [ 75.90313, 71.87401 ], [ 77.57665, 72.26717 ], [ 79.65202, 72.32011 ], [ 81.5, 71.75 ], [ 80.61071, 72.58285 ], [ 80.51109, 73.6482 ], [ 82.25, 73.85 ], [ 84.65526, 73.80591 ], [ 86.8223, 73.93688 ], [ 86.00956, 74.45967 ], [ 87.16682, 75.11643 ], [ 88.31571, 75.14393 ], [ 90.26, 75.64 ], [ 92.90058, 75.77333 ], [ 93.23421, 76.0472 ], [ 95.86, 76.14 ], [ 96.67821, 75.91548 ], [ 98.92254, 76.44689 ], [ 100.75967, 76.43028 ], [ 101.03532, 76.86189 ], [ 101.99084, 77.28754 ], [ 104.3516, 77.69792 ], [ 106.06664, 77.37389 ], [ 104.705, 77.1274 ], [ 106.97013, 76.97419 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/RWA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"RWA","properties":{"name":"Rwanda"},"geometry":{"type":"Polygon","coordinates":[[[30.419105,-1.134659],[30.816135,-1.698914],[30.758309,-2.28725],[30.469696,-2.413858],[29.938359,-2.348487],[29.632176,-2.917858],[29.024926,-2.839258],[29.117479,-2.292211],[29.254835,-2.21511],[29.291887,-1.620056],[29.579466,-1.341313],[29.821519,-1.443322],[30.419105,-1.134659]]]}} ]} ================================================ FILE: test/fixtures/world/RWA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -5.61598582 ], [ 28.125, 0 ], [ 33.75, 0 ], [ 33.75, -5.61598582 ], [ 28.125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.419105, -1.134659 ], [ 30.816135, -1.698914 ], [ 30.758309, -2.28725 ], [ 30.469696, -2.413858 ], [ 29.938359, -2.348487 ], [ 29.632176, -2.917858 ], [ 29.024926, -2.839258 ], [ 29.117479, -2.292211 ], [ 29.254835, -2.21511 ], [ 29.291887, -1.620056 ], [ 29.579466, -1.341313 ], [ 29.821519, -1.443322 ], [ 30.419105, -1.134659 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SAU.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SAU","properties":{"name":"Saudi Arabia"},"geometry":{"type":"Polygon","coordinates":[[[42.779332,16.347891],[42.649573,16.774635],[42.347989,17.075806],[42.270888,17.474722],[41.754382,17.833046],[41.221391,18.6716],[40.939341,19.486485],[40.247652,20.174635],[39.801685,20.338862],[39.139399,21.291905],[39.023696,21.986875],[39.066329,22.579656],[38.492772,23.688451],[38.02386,24.078686],[37.483635,24.285495],[37.154818,24.858483],[37.209491,25.084542],[36.931627,25.602959],[36.639604,25.826228],[36.249137,26.570136],[35.640182,27.37652],[35.130187,28.063352],[34.632336,28.058546],[34.787779,28.607427],[34.83222,28.957483],[34.956037,29.356555],[36.068941,29.197495],[36.501214,29.505254],[36.740528,29.865283],[37.503582,30.003776],[37.66812,30.338665],[37.998849,30.5085],[37.002166,31.508413],[39.004886,32.010217],[39.195468,32.161009],[40.399994,31.889992],[41.889981,31.190009],[44.709499,29.178891],[46.568713,29.099025],[47.459822,29.002519],[47.708851,28.526063],[48.416094,28.552004],[48.807595,27.689628],[49.299554,27.461218],[49.470914,27.109999],[50.152422,26.689663],[50.212935,26.277027],[50.113303,25.943972],[50.239859,25.60805],[50.527387,25.327808],[50.660557,24.999896],[50.810108,24.754743],[51.112415,24.556331],[51.389608,24.627386],[51.579519,24.245497],[51.617708,24.014219],[52.000733,23.001154],[55.006803,22.496948],[55.208341,22.70833],[55.666659,22.000001],[54.999982,19.999994],[52.00001,19.000003],[49.116672,18.616668],[48.183344,18.166669],[47.466695,17.116682],[47.000005,16.949999],[46.749994,17.283338],[46.366659,17.233315],[45.399999,17.333335],[45.216651,17.433329],[44.062613,17.410359],[43.791519,17.319977],[43.380794,17.579987],[43.115798,17.08844],[43.218375,16.66689],[42.779332,16.347891]]]}} ]} ================================================ FILE: test/fixtures/world/SAU_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 16.63619188 ], [ 33.75, 21.94304553 ], [ 39.375, 21.94304553 ], [ 39.375, 16.63619188 ], [ 33.75, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 21.94304553 ], [ 33.75, 31.95216224 ], [ 45, 31.95216224 ], [ 45, 21.94304553 ], [ 33.75, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 31.95216224 ], [ 33.75, 36.59788913 ], [ 39.375, 36.59788913 ], [ 39.375, 31.95216224 ], [ 33.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 11.17840187 ], [ 39.375, 16.63619188 ], [ 45, 16.63619188 ], [ 45, 11.17840187 ], [ 39.375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 16.63619188 ], [ 39.375, 21.94304553 ], [ 45, 21.94304553 ], [ 45, 16.63619188 ], [ 39.375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 31.95216224 ], [ 39.375, 36.59788913 ], [ 45, 36.59788913 ], [ 45, 31.95216224 ], [ 39.375, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 16.63619188 ], [ 45, 21.94304553 ], [ 50.625, 21.94304553 ], [ 50.625, 16.63619188 ], [ 45, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 21.94304553 ], [ 45, 27.05912578 ], [ 50.625, 27.05912578 ], [ 50.625, 21.94304553 ], [ 45, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 27.05912578 ], [ 45, 31.95216224 ], [ 50.625, 31.95216224 ], [ 50.625, 27.05912578 ], [ 45, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 16.63619188 ], [ 50.625, 21.94304553 ], [ 56.25, 21.94304553 ], [ 56.25, 16.63619188 ], [ 50.625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 21.94304553 ], [ 50.625, 27.05912578 ], [ 56.25, 27.05912578 ], [ 56.25, 21.94304553 ], [ 50.625, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.779332, 16.347891 ], [ 42.649573, 16.774635 ], [ 42.347989, 17.075806 ], [ 42.270888, 17.474722 ], [ 41.754382, 17.833046 ], [ 41.221391, 18.6716 ], [ 40.939341, 19.486485 ], [ 40.247652, 20.174635 ], [ 39.801685, 20.338862 ], [ 39.139399, 21.291905 ], [ 39.023696, 21.986875 ], [ 39.066329, 22.579656 ], [ 38.492772, 23.688451 ], [ 38.02386, 24.078686 ], [ 37.483635, 24.285495 ], [ 37.154818, 24.858483 ], [ 37.209491, 25.084542 ], [ 36.931627, 25.602959 ], [ 36.639604, 25.826228 ], [ 36.249137, 26.570136 ], [ 35.640182, 27.37652 ], [ 35.130187, 28.063352 ], [ 34.632336, 28.058546 ], [ 34.787779, 28.607427 ], [ 34.83222, 28.957483 ], [ 34.956037, 29.356555 ], [ 36.068941, 29.197495 ], [ 36.501214, 29.505254 ], [ 36.740528, 29.865283 ], [ 37.503582, 30.003776 ], [ 37.66812, 30.338665 ], [ 37.998849, 30.5085 ], [ 37.002166, 31.508413 ], [ 39.004886, 32.010217 ], [ 39.195468, 32.161009 ], [ 40.399994, 31.889992 ], [ 41.889981, 31.190009 ], [ 44.709499, 29.178891 ], [ 46.568713, 29.099025 ], [ 47.459822, 29.002519 ], [ 47.708851, 28.526063 ], [ 48.416094, 28.552004 ], [ 48.807595, 27.689628 ], [ 49.299554, 27.461218 ], [ 49.470914, 27.109999 ], [ 50.152422, 26.689663 ], [ 50.212935, 26.277027 ], [ 50.113303, 25.943972 ], [ 50.239859, 25.60805 ], [ 50.527387, 25.327808 ], [ 50.660557, 24.999896 ], [ 50.810108, 24.754743 ], [ 51.112415, 24.556331 ], [ 51.389608, 24.627386 ], [ 51.579519, 24.245497 ], [ 51.617708, 24.014219 ], [ 52.000733, 23.001154 ], [ 55.006803, 22.496948 ], [ 55.208341, 22.70833 ], [ 55.666659, 22.000001 ], [ 54.999982, 19.999994 ], [ 52.00001, 19.000003 ], [ 49.116672, 18.616668 ], [ 48.183344, 18.166669 ], [ 47.466695, 17.116682 ], [ 47.000005, 16.949999 ], [ 46.749994, 17.283338 ], [ 46.366659, 17.233315 ], [ 45.399999, 17.333335 ], [ 45.216651, 17.433329 ], [ 44.062613, 17.410359 ], [ 43.791519, 17.319977 ], [ 43.380794, 17.579987 ], [ 43.115798, 17.08844 ], [ 43.218375, 16.66689 ], [ 42.779332, 16.347891 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SDN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SDN","properties":{"name":"Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.824963,9.484061],[33.842131,9.981915],[33.721959,10.325262],[33.206938,10.720112],[33.086766,11.441141],[33.206938,12.179338],[32.743419,12.248008],[32.67475,12.024832],[32.073892,11.97333],[32.314235,11.681484],[32.400072,11.080626],[31.850716,10.531271],[31.352862,9.810241],[30.837841,9.707237],[29.996639,10.290927],[29.618957,10.084919],[29.515953,9.793074],[29.000932,9.604232],[28.966597,9.398224],[27.97089,9.398224],[27.833551,9.604232],[27.112521,9.638567],[26.752006,9.466893],[26.477328,9.55273],[25.962307,10.136421],[25.790633,10.411099],[25.069604,10.27376],[24.794926,9.810241],[24.537415,8.917538],[24.194068,8.728696],[23.88698,8.61973],[23.805813,8.666319],[23.459013,8.954286],[23.394779,9.265068],[23.55725,9.681218],[23.554304,10.089255],[22.977544,10.714463],[22.864165,11.142395],[22.87622,11.38461],[22.50869,11.67936],[22.49762,12.26024],[22.28801,12.64605],[21.93681,12.58818],[22.03759,12.95546],[22.29658,13.37232],[22.18329,13.78648],[22.51202,14.09318],[22.30351,14.32682],[22.56795,14.94429],[23.02459,15.68072],[23.88689,15.61084],[23.83766,19.58047],[23.85,20],[25,20.00304],[25,22],[29.02,22],[32.9,22],[36.86623,22],[37.18872,21.01885],[36.96941,20.83744],[37.1147,19.80796],[37.48179,18.61409],[37.86276,18.36786],[38.41009,17.998307],[37.904,17.42754],[37.16747,17.26314],[36.85253,16.95655],[36.75389,16.29186],[36.32322,14.82249],[36.42951,14.42211],[36.27022,13.56333],[35.86363,12.57828],[35.26049,12.08286],[34.83163,11.31896],[34.73115,10.91017],[34.25745,10.63009],[33.96162,9.58358],[33.963393,9.464285]]]}} ]} ================================================ FILE: test/fixtures/world/SDN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 11.17840187 ], [ 16.875, 16.63619188 ], [ 22.5, 16.63619188 ], [ 22.5, 11.17840187 ], [ 16.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 11.17840187 ], [ 22.5, 21.94304553 ], [ 33.75, 21.94304553 ], [ 33.75, 11.17840187 ], [ 22.5, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 21.94304553 ], [ 22.5, 27.05912578 ], [ 28.125, 27.05912578 ], [ 28.125, 21.94304553 ], [ 22.5, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 5.61598582 ], [ 22.5, 11.17840187 ], [ 28.125, 11.17840187 ], [ 28.125, 5.61598582 ], [ 22.5, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 21.94304553 ], [ 28.125, 27.05912578 ], [ 33.75, 27.05912578 ], [ 33.75, 21.94304553 ], [ 28.125, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 5.61598582 ], [ 28.125, 11.17840187 ], [ 33.75, 11.17840187 ], [ 33.75, 5.61598582 ], [ 28.125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 11.17840187 ], [ 33.75, 16.63619188 ], [ 39.375, 16.63619188 ], [ 39.375, 11.17840187 ], [ 33.75, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 16.63619188 ], [ 33.75, 21.94304553 ], [ 39.375, 21.94304553 ], [ 39.375, 16.63619188 ], [ 33.75, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 21.94304553 ], [ 33.75, 27.05912578 ], [ 39.375, 27.05912578 ], [ 39.375, 21.94304553 ], [ 33.75, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 5.61598582 ], [ 33.75, 11.17840187 ], [ 39.375, 11.17840187 ], [ 39.375, 5.61598582 ], [ 33.75, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.963393, 9.464285 ], [ 33.824963, 9.484061 ], [ 33.842131, 9.981915 ], [ 33.721959, 10.325262 ], [ 33.206938, 10.720112 ], [ 33.086766, 11.441141 ], [ 33.206938, 12.179338 ], [ 32.743419, 12.248008 ], [ 32.67475, 12.024832 ], [ 32.073892, 11.97333 ], [ 32.314235, 11.681484 ], [ 32.400072, 11.080626 ], [ 31.850716, 10.531271 ], [ 31.352862, 9.810241 ], [ 30.837841, 9.707237 ], [ 29.996639, 10.290927 ], [ 29.618957, 10.084919 ], [ 29.515953, 9.793074 ], [ 29.000932, 9.604232 ], [ 28.966597, 9.398224 ], [ 27.97089, 9.398224 ], [ 27.833551, 9.604232 ], [ 27.112521, 9.638567 ], [ 26.752006, 9.466893 ], [ 26.477328, 9.55273 ], [ 25.962307, 10.136421 ], [ 25.790633, 10.411099 ], [ 25.069604, 10.27376 ], [ 24.794926, 9.810241 ], [ 24.537415, 8.917538 ], [ 24.194068, 8.728696 ], [ 23.88698, 8.61973 ], [ 23.805813, 8.666319 ], [ 23.459013, 8.954286 ], [ 23.394779, 9.265068 ], [ 23.55725, 9.681218 ], [ 23.554304, 10.089255 ], [ 22.977544, 10.714463 ], [ 22.864165, 11.142395 ], [ 22.87622, 11.38461 ], [ 22.50869, 11.67936 ], [ 22.49762, 12.26024 ], [ 22.28801, 12.64605 ], [ 21.93681, 12.58818 ], [ 22.03759, 12.95546 ], [ 22.29658, 13.37232 ], [ 22.18329, 13.78648 ], [ 22.51202, 14.09318 ], [ 22.30351, 14.32682 ], [ 22.56795, 14.94429 ], [ 23.02459, 15.68072 ], [ 23.88689, 15.61084 ], [ 23.83766, 19.58047 ], [ 23.85, 20 ], [ 25, 20.00304 ], [ 25, 22 ], [ 29.02, 22 ], [ 32.9, 22 ], [ 36.86623, 22 ], [ 37.18872, 21.01885 ], [ 36.96941, 20.83744 ], [ 37.1147, 19.80796 ], [ 37.48179, 18.61409 ], [ 37.86276, 18.36786 ], [ 38.41009, 17.998307 ], [ 37.904, 17.42754 ], [ 37.16747, 17.26314 ], [ 36.85253, 16.95655 ], [ 36.75389, 16.29186 ], [ 36.32322, 14.82249 ], [ 36.42951, 14.42211 ], [ 36.27022, 13.56333 ], [ 35.86363, 12.57828 ], [ 35.26049, 12.08286 ], [ 34.83163, 11.31896 ], [ 34.73115, 10.91017 ], [ 34.25745, 10.63009 ], [ 33.96162, 9.58358 ], [ 33.963393, 9.464285 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SEN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SEN","properties":{"name":"Senegal"},"geometry":{"type":"Polygon","coordinates":[[[-16.713729,13.594959],[-17.126107,14.373516],[-17.625043,14.729541],[-17.185173,14.919477],[-16.700706,15.621527],[-16.463098,16.135036],[-16.12069,16.455663],[-15.623666,16.369337],[-15.135737,16.587282],[-14.577348,16.598264],[-14.099521,16.304302],[-13.435738,16.039383],[-12.830658,15.303692],[-12.17075,14.616834],[-12.124887,13.994727],[-11.927716,13.422075],[-11.553398,13.141214],[-11.467899,12.754519],[-11.513943,12.442988],[-11.658301,12.386583],[-12.203565,12.465648],[-12.278599,12.35444],[-12.499051,12.33209],[-13.217818,12.575874],[-13.700476,12.586183],[-15.548477,12.62817],[-15.816574,12.515567],[-16.147717,12.547762],[-16.677452,12.384852],[-16.841525,13.151394],[-15.931296,13.130284],[-15.691001,13.270353],[-15.511813,13.27857],[-15.141163,13.509512],[-14.712197,13.298207],[-14.277702,13.280585],[-13.844963,13.505042],[-14.046992,13.794068],[-14.376714,13.62568],[-14.687031,13.630357],[-15.081735,13.876492],[-15.39877,13.860369],[-15.624596,13.623587],[-16.713729,13.594959]]]}} ]} ================================================ FILE: test/fixtures/world/SEN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 11.17840187 ], [ -16.875, 16.63619188 ], [ -11.25, 16.63619188 ], [ -11.25, 11.17840187 ], [ -16.875, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.5, 11.17840187 ], [ -22.5, 16.63619188 ], [ -16.875, 16.63619188 ], [ -16.875, 11.17840187 ], [ -22.5, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.713729, 13.594959 ], [ -17.126107, 14.373516 ], [ -17.625043, 14.729541 ], [ -17.185173, 14.919477 ], [ -16.700706, 15.621527 ], [ -16.463098, 16.135036 ], [ -16.12069, 16.455663 ], [ -15.623666, 16.369337 ], [ -15.135737, 16.587282 ], [ -14.577348, 16.598264 ], [ -14.099521, 16.304302 ], [ -13.435738, 16.039383 ], [ -12.830658, 15.303692 ], [ -12.17075, 14.616834 ], [ -12.124887, 13.994727 ], [ -11.927716, 13.422075 ], [ -11.553398, 13.141214 ], [ -11.467899, 12.754519 ], [ -11.513943, 12.442988 ], [ -11.658301, 12.386583 ], [ -12.203565, 12.465648 ], [ -12.278599, 12.35444 ], [ -12.499051, 12.33209 ], [ -13.217818, 12.575874 ], [ -13.700476, 12.586183 ], [ -15.548477, 12.62817 ], [ -15.816574, 12.515567 ], [ -16.147717, 12.547762 ], [ -16.677452, 12.384852 ], [ -16.841525, 13.151394 ], [ -15.931296, 13.130284 ], [ -15.691001, 13.270353 ], [ -15.511813, 13.27857 ], [ -15.141163, 13.509512 ], [ -14.712197, 13.298207 ], [ -14.277702, 13.280585 ], [ -13.844963, 13.505042 ], [ -14.046992, 13.794068 ], [ -14.376714, 13.62568 ], [ -14.687031, 13.630357 ], [ -15.081735, 13.876492 ], [ -15.39877, 13.860369 ], [ -15.624596, 13.623587 ], [ -16.713729, 13.594959 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SLB.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SLB","properties":{"name":"Solomon Islands"},"geometry":{"type":"MultiPolygon","coordinates":[[[[162.119025,-10.482719],[162.398646,-10.826367],[161.700032,-10.820011],[161.319797,-10.204751],[161.917383,-10.446701],[162.119025,-10.482719]]],[[[160.852229,-9.872937],[160.462588,-9.89521],[159.849447,-9.794027],[159.640003,-9.63998],[159.702945,-9.24295],[160.362956,-9.400304],[160.688518,-9.610162],[160.852229,-9.872937]]],[[[161.679982,-9.599982],[161.529397,-9.784312],[160.788253,-8.917543],[160.579997,-8.320009],[160.920028,-8.320009],[161.280006,-9.120011],[161.679982,-9.599982]]],[[[159.875027,-8.33732],[159.917402,-8.53829],[159.133677,-8.114181],[158.586114,-7.754824],[158.21115,-7.421872],[158.359978,-7.320018],[158.820001,-7.560003],[159.640003,-8.020027],[159.875027,-8.33732]]],[[[157.538426,-7.34782],[157.33942,-7.404767],[156.90203,-7.176874],[156.491358,-6.765943],[156.542828,-6.599338],[157.14,-7.021638],[157.538426,-7.34782]]]]}} ]} ================================================ FILE: test/fixtures/world/SLB_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875, -11.17840187 ], [ 151.875, -5.61598582 ], [ 157.5, -5.61598582 ], [ 157.5, -11.17840187 ], [ 151.875, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.5, -11.17840187 ], [ 157.5, -5.61598582 ], [ 163.125, -5.61598582 ], [ 163.125, -11.17840187 ], [ 157.5, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.119025, -10.482719 ], [ 162.398646, -10.826367 ], [ 161.700032, -10.820011 ], [ 161.319797, -10.204751 ], [ 161.917383, -10.446701 ], [ 162.119025, -10.482719 ] ] ], [ [ [ 160.852229, -9.872937 ], [ 160.462588, -9.89521 ], [ 159.849447, -9.794027 ], [ 159.640003, -9.63998 ], [ 159.702945, -9.24295 ], [ 160.362956, -9.400304 ], [ 160.688518, -9.610162 ], [ 160.852229, -9.872937 ] ] ], [ [ [ 161.679982, -9.599982 ], [ 161.529397, -9.784312 ], [ 160.788253, -8.917543 ], [ 160.579997, -8.320009 ], [ 160.920028, -8.320009 ], [ 161.280006, -9.120011 ], [ 161.679982, -9.599982 ] ] ], [ [ [ 159.875027, -8.33732 ], [ 159.917402, -8.53829 ], [ 159.133677, -8.114181 ], [ 158.586114, -7.754824 ], [ 158.21115, -7.421872 ], [ 158.359978, -7.320018 ], [ 158.820001, -7.560003 ], [ 159.640003, -8.020027 ], [ 159.875027, -8.33732 ] ] ], [ [ [ 157.538426, -7.34782 ], [ 157.33942, -7.404767 ], [ 156.90203, -7.176874 ], [ 156.491358, -6.765943 ], [ 156.542828, -6.599338 ], [ 157.14, -7.021638 ], [ 157.538426, -7.34782 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SLE.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SLE","properties":{"name":"Sierra Leone"},"geometry":{"type":"Polygon","coordinates":[[[-11.438779,6.785917],[-11.708195,6.860098],[-12.428099,7.262942],[-12.949049,7.798646],[-13.124025,8.163946],[-13.24655,8.903049],[-12.711958,9.342712],[-12.596719,9.620188],[-12.425929,9.835834],[-12.150338,9.858572],[-11.917277,10.046984],[-11.117481,10.045873],[-10.839152,9.688246],[-10.622395,9.26791],[-10.65477,8.977178],[-10.494315,8.715541],[-10.505477,8.348896],[-10.230094,8.406206],[-10.695595,7.939464],[-11.146704,7.396706],[-11.199802,7.105846],[-11.438779,6.785917]]]}} ]} ================================================ FILE: test/fixtures/world/SLE_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.25, 5.61598582 ], [ -11.25, 11.17840187 ], [ -5.625, 11.17840187 ], [ -5.625, 5.61598582 ], [ -11.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.875, 5.61598582 ], [ -16.875, 11.17840187 ], [ -11.25, 11.17840187 ], [ -11.25, 5.61598582 ], [ -16.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.438779, 6.785917 ], [ -11.708195, 6.860098 ], [ -12.428099, 7.262942 ], [ -12.949049, 7.798646 ], [ -13.124025, 8.163946 ], [ -13.24655, 8.903049 ], [ -12.711958, 9.342712 ], [ -12.596719, 9.620188 ], [ -12.425929, 9.835834 ], [ -12.150338, 9.858572 ], [ -11.917277, 10.046984 ], [ -11.117481, 10.045873 ], [ -10.839152, 9.688246 ], [ -10.622395, 9.26791 ], [ -10.65477, 8.977178 ], [ -10.494315, 8.715541 ], [ -10.505477, 8.348896 ], [ -10.230094, 8.406206 ], [ -10.695595, 7.939464 ], [ -11.146704, 7.396706 ], [ -11.199802, 7.105846 ], [ -11.438779, 6.785917 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SLV.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SLV","properties":{"name":"El Salvador"},"geometry":{"type":"Polygon","coordinates":[[[-87.793111,13.38448],[-87.904112,13.149017],[-88.483302,13.163951],[-88.843228,13.259734],[-89.256743,13.458533],[-89.812394,13.520622],[-90.095555,13.735338],[-90.064678,13.88197],[-89.721934,14.134228],[-89.534219,14.244816],[-89.587343,14.362586],[-89.353326,14.424133],[-89.058512,14.340029],[-88.843073,14.140507],[-88.541231,13.980155],[-88.503998,13.845486],[-88.065343,13.964626],[-87.859515,13.893312],[-87.723503,13.78505],[-87.793111,13.38448]]]}} ]} ================================================ FILE: test/fixtures/world/SLV_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 11.17840187 ], [ -90, 16.63619188 ], [ -84.375, 16.63619188 ], [ -84.375, 11.17840187 ], [ -90, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 11.17840187 ], [ -95.625, 16.63619188 ], [ -90, 16.63619188 ], [ -90, 11.17840187 ], [ -95.625, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.793111, 13.38448 ], [ -87.904112, 13.149017 ], [ -88.483302, 13.163951 ], [ -88.843228, 13.259734 ], [ -89.256743, 13.458533 ], [ -89.812394, 13.520622 ], [ -90.095555, 13.735338 ], [ -90.064678, 13.88197 ], [ -89.721934, 14.134228 ], [ -89.534219, 14.244816 ], [ -89.587343, 14.362586 ], [ -89.353326, 14.424133 ], [ -89.058512, 14.340029 ], [ -88.843073, 14.140507 ], [ -88.541231, 13.980155 ], [ -88.503998, 13.845486 ], [ -88.065343, 13.964626 ], [ -87.859515, 13.893312 ], [ -87.723503, 13.78505 ], [ -87.793111, 13.38448 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SOM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SOM","properties":{"name":"Somalia"},"geometry":{"type":"Polygon","coordinates":[[[49.72862,11.5789],[50.25878,11.67957],[50.73202,12.0219],[51.1112,12.02464],[51.13387,11.74815],[51.04153,11.16651],[51.04531,10.6409],[50.83418,10.27972],[50.55239,9.19874],[50.07092,8.08173],[49.4527,6.80466],[48.59455,5.33911],[47.74079,4.2194],[46.56476,2.85529],[45.56399,2.04576],[44.06815,1.05283],[43.13597,0.2922],[42.04157,-0.91916],[41.81095,-1.44647],[41.58513,-1.68325],[40.993,-0.85829],[40.98105,2.78452],[41.855083,3.918912],[42.12861,4.23413],[42.76967,4.25259],[43.66087,4.95755],[44.9636,5.00162],[47.78942,8.003],[48.486736,8.837626],[48.93813,9.451749],[48.938233,9.9735],[48.938491,10.982327],[48.942005,11.394266],[48.948205,11.410617],[49.26776,11.43033],[49.72862,11.5789]]]}} ]} ================================================ FILE: test/fixtures/world/SOM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, -5.61598582 ], [ 39.375, 0 ], [ 45, 0 ], [ 45, -5.61598582 ], [ 39.375, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 0 ], [ 39.375, 5.61598582 ], [ 45, 5.61598582 ], [ 45, 0 ], [ 39.375, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 0 ], [ 45, 5.61598582 ], [ 50.625, 5.61598582 ], [ 50.625, 0 ], [ 45, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 11.17840187 ], [ 45, 16.63619188 ], [ 50.625, 16.63619188 ], [ 50.625, 11.17840187 ], [ 45, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 5.61598582 ], [ 45, 11.17840187 ], [ 50.625, 11.17840187 ], [ 50.625, 5.61598582 ], [ 45, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 11.17840187 ], [ 50.625, 16.63619188 ], [ 56.25, 16.63619188 ], [ 56.25, 11.17840187 ], [ 50.625, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 5.61598582 ], [ 50.625, 11.17840187 ], [ 56.25, 11.17840187 ], [ 56.25, 5.61598582 ], [ 50.625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.72862, 11.5789 ], [ 50.25878, 11.67957 ], [ 50.73202, 12.0219 ], [ 51.1112, 12.02464 ], [ 51.13387, 11.74815 ], [ 51.04153, 11.16651 ], [ 51.04531, 10.6409 ], [ 50.83418, 10.27972 ], [ 50.55239, 9.19874 ], [ 50.07092, 8.08173 ], [ 49.4527, 6.80466 ], [ 48.59455, 5.33911 ], [ 47.74079, 4.2194 ], [ 46.56476, 2.85529 ], [ 45.56399, 2.04576 ], [ 44.06815, 1.05283 ], [ 43.13597, 0.2922 ], [ 42.04157, -0.91916 ], [ 41.81095, -1.44647 ], [ 41.58513, -1.68325 ], [ 40.993, -0.85829 ], [ 40.98105, 2.78452 ], [ 41.855083, 3.918912 ], [ 42.12861, 4.23413 ], [ 42.76967, 4.25259 ], [ 43.66087, 4.95755 ], [ 44.9636, 5.00162 ], [ 47.78942, 8.003 ], [ 48.486736, 8.837626 ], [ 48.93813, 9.451749 ], [ 48.938233, 9.9735 ], [ 48.938491, 10.982327 ], [ 48.942005, 11.394266 ], [ 48.948205, 11.410617 ], [ 49.26776, 11.43033 ], [ 49.72862, 11.5789 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SRB.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SRB","properties":{"name":"Republic of Serbia"},"geometry":{"type":"Polygon","coordinates":[[[20.874313,45.416375],[21.483526,45.18117],[21.562023,44.768947],[22.145088,44.478422],[22.459022,44.702517],[22.705726,44.578003],[22.474008,44.409228],[22.65715,44.234923],[22.410446,44.008063],[22.500157,43.642814],[22.986019,43.211161],[22.604801,42.898519],[22.436595,42.580321],[22.545012,42.461362],[22.380526,42.32026],[21.91708,42.30364],[21.576636,42.245224],[21.54332,42.32025],[21.66292,42.43922],[21.77505,42.6827],[21.63302,42.67717],[21.43866,42.86255],[21.27421,42.90959],[21.143395,43.068685],[20.95651,43.13094],[20.81448,43.27205],[20.63508,43.21671],[20.49679,42.88469],[20.25758,42.81275],[20.3398,42.89852],[19.95857,43.10604],[19.63,43.21378],[19.48389,43.35229],[19.21852,43.52384],[19.454,43.5681],[19.59976,44.03847],[19.11761,44.42307],[19.36803,44.863],[19.00548,44.86023],[19.390476,45.236516],[19.072769,45.521511],[18.82982,45.90888],[19.596045,46.17173],[20.220192,46.127469],[20.762175,45.734573],[20.874313,45.416375]]]}} ]} ================================================ FILE: test/fixtures/world/SRB_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 40.97989807 ], [ 16.875, 45.08903556 ], [ 22.5, 45.08903556 ], [ 22.5, 40.97989807 ], [ 16.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 45.08903556 ], [ 16.875, 48.92249926 ], [ 22.5, 48.92249926 ], [ 22.5, 45.08903556 ], [ 16.875, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 40.97989807 ], [ 22.5, 45.08903556 ], [ 28.125, 45.08903556 ], [ 28.125, 40.97989807 ], [ 22.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.874313, 45.416375 ], [ 21.483526, 45.18117 ], [ 21.562023, 44.768947 ], [ 22.145088, 44.478422 ], [ 22.459022, 44.702517 ], [ 22.705726, 44.578003 ], [ 22.474008, 44.409228 ], [ 22.65715, 44.234923 ], [ 22.410446, 44.008063 ], [ 22.500157, 43.642814 ], [ 22.986019, 43.211161 ], [ 22.604801, 42.898519 ], [ 22.436595, 42.580321 ], [ 22.545012, 42.461362 ], [ 22.380526, 42.32026 ], [ 21.91708, 42.30364 ], [ 21.576636, 42.245224 ], [ 21.54332, 42.32025 ], [ 21.66292, 42.43922 ], [ 21.77505, 42.6827 ], [ 21.63302, 42.67717 ], [ 21.43866, 42.86255 ], [ 21.27421, 42.90959 ], [ 21.143395, 43.068685 ], [ 20.95651, 43.13094 ], [ 20.81448, 43.27205 ], [ 20.63508, 43.21671 ], [ 20.49679, 42.88469 ], [ 20.25758, 42.81275 ], [ 20.3398, 42.89852 ], [ 19.95857, 43.10604 ], [ 19.63, 43.21378 ], [ 19.48389, 43.35229 ], [ 19.21852, 43.52384 ], [ 19.454, 43.5681 ], [ 19.59976, 44.03847 ], [ 19.11761, 44.42307 ], [ 19.36803, 44.863 ], [ 19.00548, 44.86023 ], [ 19.390476, 45.236516 ], [ 19.072769, 45.521511 ], [ 18.82982, 45.90888 ], [ 19.596045, 46.17173 ], [ 20.220192, 46.127469 ], [ 20.762175, 45.734573 ], [ 20.874313, 45.416375 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SSD.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SSD","properties":{"name":"South Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.97498,8.68456],[33.8255,8.37916],[33.2948,8.35458],[32.95418,7.78497],[33.56829,7.71334],[34.0751,7.22595],[34.25032,6.82607],[34.70702,6.59422],[35.298007,5.506],[34.620196,4.847123],[34.005,4.249885],[33.39,3.79],[32.68642,3.79232],[31.88145,3.55827],[31.24556,3.7819],[30.83385,3.50917],[29.95349,4.1737],[29.715995,4.600805],[29.159078,4.389267],[28.696678,4.455077],[28.428994,4.287155],[27.979977,4.408413],[27.374226,5.233944],[27.213409,5.550953],[26.465909,5.946717],[26.213418,6.546603],[25.796648,6.979316],[25.124131,7.500085],[25.114932,7.825104],[24.567369,8.229188],[23.88698,8.61973],[24.194068,8.728696],[24.537415,8.917538],[24.794926,9.810241],[25.069604,10.27376],[25.790633,10.411099],[25.962307,10.136421],[26.477328,9.55273],[26.752006,9.466893],[27.112521,9.638567],[27.833551,9.604232],[27.97089,9.398224],[28.966597,9.398224],[29.000932,9.604232],[29.515953,9.793074],[29.618957,10.084919],[29.996639,10.290927],[30.837841,9.707237],[31.352862,9.810241],[31.850716,10.531271],[32.400072,11.080626],[32.314235,11.681484],[32.073892,11.97333],[32.67475,12.024832],[32.743419,12.248008],[33.206938,12.179338],[33.086766,11.441141],[33.206938,10.720112],[33.721959,10.325262],[33.842131,9.981915],[33.824963,9.484061],[33.963393,9.464285]]]}} ]} ================================================ FILE: test/fixtures/world/SSD_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 0 ], [ 22.5, 11.17840187 ], [ 33.75, 11.17840187 ], [ 33.75, 0 ], [ 22.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 11.17840187 ], [ 28.125, 16.63619188 ], [ 33.75, 16.63619188 ], [ 33.75, 11.17840187 ], [ 28.125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 0 ], [ 33.75, 5.61598582 ], [ 39.375, 5.61598582 ], [ 39.375, 0 ], [ 33.75, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 5.61598582 ], [ 33.75, 11.17840187 ], [ 39.375, 11.17840187 ], [ 39.375, 5.61598582 ], [ 33.75, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.963393, 9.464285 ], [ 33.97498, 8.68456 ], [ 33.8255, 8.37916 ], [ 33.2948, 8.35458 ], [ 32.95418, 7.78497 ], [ 33.56829, 7.71334 ], [ 34.0751, 7.22595 ], [ 34.25032, 6.82607 ], [ 34.70702, 6.59422 ], [ 35.298007, 5.506 ], [ 34.620196, 4.847123 ], [ 34.005, 4.249885 ], [ 33.39, 3.79 ], [ 32.68642, 3.79232 ], [ 31.88145, 3.55827 ], [ 31.24556, 3.7819 ], [ 30.83385, 3.50917 ], [ 29.95349, 4.1737 ], [ 29.715995, 4.600805 ], [ 29.159078, 4.389267 ], [ 28.696678, 4.455077 ], [ 28.428994, 4.287155 ], [ 27.979977, 4.408413 ], [ 27.374226, 5.233944 ], [ 27.213409, 5.550953 ], [ 26.465909, 5.946717 ], [ 26.213418, 6.546603 ], [ 25.796648, 6.979316 ], [ 25.124131, 7.500085 ], [ 25.114932, 7.825104 ], [ 24.567369, 8.229188 ], [ 23.88698, 8.61973 ], [ 24.194068, 8.728696 ], [ 24.537415, 8.917538 ], [ 24.794926, 9.810241 ], [ 25.069604, 10.27376 ], [ 25.790633, 10.411099 ], [ 25.962307, 10.136421 ], [ 26.477328, 9.55273 ], [ 26.752006, 9.466893 ], [ 27.112521, 9.638567 ], [ 27.833551, 9.604232 ], [ 27.97089, 9.398224 ], [ 28.966597, 9.398224 ], [ 29.000932, 9.604232 ], [ 29.515953, 9.793074 ], [ 29.618957, 10.084919 ], [ 29.996639, 10.290927 ], [ 30.837841, 9.707237 ], [ 31.352862, 9.810241 ], [ 31.850716, 10.531271 ], [ 32.400072, 11.080626 ], [ 32.314235, 11.681484 ], [ 32.073892, 11.97333 ], [ 32.67475, 12.024832 ], [ 32.743419, 12.248008 ], [ 33.206938, 12.179338 ], [ 33.086766, 11.441141 ], [ 33.206938, 10.720112 ], [ 33.721959, 10.325262 ], [ 33.842131, 9.981915 ], [ 33.824963, 9.484061 ], [ 33.963393, 9.464285 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SUR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SUR","properties":{"name":"Suriname"},"geometry":{"type":"Polygon","coordinates":[[[-57.147436,5.97315],[-55.949318,5.772878],[-55.84178,5.953125],[-55.03325,6.025291],[-53.958045,5.756548],[-54.478633,4.896756],[-54.399542,4.212611],[-54.006931,3.620038],[-54.181726,3.18978],[-54.269705,2.732392],[-54.524754,2.311849],[-55.097587,2.523748],[-55.569755,2.421506],[-55.973322,2.510364],[-56.073342,2.220795],[-55.9056,2.021996],[-55.995698,1.817667],[-56.539386,1.899523],[-57.150098,2.768927],[-57.281433,3.333492],[-57.601569,3.334655],[-58.044694,4.060864],[-57.86021,4.576801],[-57.914289,4.812626],[-57.307246,5.073567],[-57.147436,5.97315]]]}} ]} ================================================ FILE: test/fixtures/world/SUR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 0 ], [ -56.25, 5.61598582 ], [ -50.625, 5.61598582 ], [ -50.625, 0 ], [ -56.25, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 5.61598582 ], [ -56.25, 11.17840187 ], [ -50.625, 11.17840187 ], [ -50.625, 5.61598582 ], [ -56.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 0 ], [ -61.875, 5.61598582 ], [ -56.25, 5.61598582 ], [ -56.25, 0 ], [ -61.875, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 5.61598582 ], [ -61.875, 11.17840187 ], [ -56.25, 11.17840187 ], [ -56.25, 5.61598582 ], [ -61.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.147436, 5.97315 ], [ -55.949318, 5.772878 ], [ -55.84178, 5.953125 ], [ -55.03325, 6.025291 ], [ -53.958045, 5.756548 ], [ -54.478633, 4.896756 ], [ -54.399542, 4.212611 ], [ -54.006931, 3.620038 ], [ -54.181726, 3.18978 ], [ -54.269705, 2.732392 ], [ -54.524754, 2.311849 ], [ -55.097587, 2.523748 ], [ -55.569755, 2.421506 ], [ -55.973322, 2.510364 ], [ -56.073342, 2.220795 ], [ -55.9056, 2.021996 ], [ -55.995698, 1.817667 ], [ -56.539386, 1.899523 ], [ -57.150098, 2.768927 ], [ -57.281433, 3.333492 ], [ -57.601569, 3.334655 ], [ -58.044694, 4.060864 ], [ -57.86021, 4.576801 ], [ -57.914289, 4.812626 ], [ -57.307246, 5.073567 ], [ -57.147436, 5.97315 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SVK.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SVK","properties":{"name":"Slovakia"},"geometry":{"type":"Polygon","coordinates":[[[18.853144,49.49623],[18.909575,49.435846],[19.320713,49.571574],[19.825023,49.217125],[20.415839,49.431453],[20.887955,49.328772],[21.607808,49.470107],[22.558138,49.085738],[22.280842,48.825392],[22.085608,48.422264],[21.872236,48.319971],[20.801294,48.623854],[20.473562,48.56285],[20.239054,48.327567],[19.769471,48.202691],[19.661364,48.266615],[19.174365,48.111379],[18.777025,48.081768],[18.696513,47.880954],[17.857133,47.758429],[17.488473,47.867466],[16.979667,48.123497],[16.879983,48.470013],[16.960288,48.596982],[17.101985,48.816969],[17.545007,48.800019],[17.886485,48.903475],[17.913512,48.996493],[18.104973,49.043983],[18.170498,49.271515],[18.399994,49.315001],[18.554971,49.495015],[18.853144,49.49623]]]}} ]} ================================================ FILE: test/fixtures/world/SVK_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 45.08903556 ], [ 16.875, 48.92249926 ], [ 22.5, 48.92249926 ], [ 22.5, 45.08903556 ], [ 16.875, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 48.92249926 ], [ 16.875, 52.48278022 ], [ 22.5, 52.48278022 ], [ 22.5, 48.92249926 ], [ 16.875, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 48.92249926 ], [ 22.5, 52.48278022 ], [ 28.125, 52.48278022 ], [ 28.125, 48.92249926 ], [ 22.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.853144, 49.49623 ], [ 18.909575, 49.435846 ], [ 19.320713, 49.571574 ], [ 19.825023, 49.217125 ], [ 20.415839, 49.431453 ], [ 20.887955, 49.328772 ], [ 21.607808, 49.470107 ], [ 22.558138, 49.085738 ], [ 22.280842, 48.825392 ], [ 22.085608, 48.422264 ], [ 21.872236, 48.319971 ], [ 20.801294, 48.623854 ], [ 20.473562, 48.56285 ], [ 20.239054, 48.327567 ], [ 19.769471, 48.202691 ], [ 19.661364, 48.266615 ], [ 19.174365, 48.111379 ], [ 18.777025, 48.081768 ], [ 18.696513, 47.880954 ], [ 17.857133, 47.758429 ], [ 17.488473, 47.867466 ], [ 16.979667, 48.123497 ], [ 16.879983, 48.470013 ], [ 16.960288, 48.596982 ], [ 17.101985, 48.816969 ], [ 17.545007, 48.800019 ], [ 17.886485, 48.903475 ], [ 17.913512, 48.996493 ], [ 18.104973, 49.043983 ], [ 18.170498, 49.271515 ], [ 18.399994, 49.315001 ], [ 18.554971, 49.495015 ], [ 18.853144, 49.49623 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SVN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SVN","properties":{"name":"Slovenia"},"geometry":{"type":"Polygon","coordinates":[[[13.806475,46.509306],[14.632472,46.431817],[15.137092,46.658703],[16.011664,46.683611],[16.202298,46.852386],[16.370505,46.841327],[16.564808,46.503751],[15.768733,46.238108],[15.67153,45.834154],[15.323954,45.731783],[15.327675,45.452316],[14.935244,45.471695],[14.595109,45.634941],[14.411968,45.466166],[13.71506,45.500324],[13.93763,45.591016],[13.69811,46.016778],[13.806475,46.509306]]]}} ]} ================================================ FILE: test/fixtures/world/SVN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 45.08903556 ], [ 11.25, 48.92249926 ], [ 16.875, 48.92249926 ], [ 16.875, 45.08903556 ], [ 11.25, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.806475, 46.509306 ], [ 14.632472, 46.431817 ], [ 15.137092, 46.658703 ], [ 16.011664, 46.683611 ], [ 16.202298, 46.852386 ], [ 16.370505, 46.841327 ], [ 16.564808, 46.503751 ], [ 15.768733, 46.238108 ], [ 15.67153, 45.834154 ], [ 15.323954, 45.731783 ], [ 15.327675, 45.452316 ], [ 14.935244, 45.471695 ], [ 14.595109, 45.634941 ], [ 14.411968, 45.466166 ], [ 13.71506, 45.500324 ], [ 13.93763, 45.591016 ], [ 13.69811, 46.016778 ], [ 13.806475, 46.509306 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SWE.geo.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "id": "SWE", "properties": { "name": "Sweden" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.183173, 65.723741 ], [ 21.213517, 65.026005 ], [ 21.369631, 64.413588 ], [ 19.778876, 63.609554 ], [ 17.847779, 62.7494 ], [ 17.119555, 61.341166 ], [ 17.831346, 60.636583 ], [ 18.787722, 60.081914 ], [ 17.869225, 58.953766 ], [ 16.829185, 58.719827 ], [ 16.44771, 57.041118 ], [ 15.879786, 56.104302 ], [ 14.666681, 56.200885 ], [ 14.100721, 55.407781 ], [ 12.942911, 55.361737 ], [ 12.625101, 56.30708 ], [ 11.787942, 57.441817 ], [ 11.027369, 58.856149 ], [ 11.468272, 59.432393 ], [ 12.300366, 60.117933 ], [ 12.631147, 61.293572 ], [ 11.992064, 61.800362 ], [ 11.930569, 63.128318 ], [ 12.579935, 64.066219 ], [ 13.571916, 64.049114 ], [ 13.919905, 64.445421 ], [ 13.55569, 64.787028 ], [ 15.108411, 66.193867 ], [ 16.108712, 67.302456 ], [ 16.768879, 68.013937 ], [ 17.729182, 68.010552 ], [ 17.993868, 68.567391 ], [ 19.87856, 68.407194 ], [ 20.025269, 69.065139 ], [ 20.645593, 69.106247 ], [ 21.978535, 68.616846 ], [ 23.539473, 67.936009 ], [ 23.56588, 66.396051 ], [ 23.903379, 66.006927 ], [ 22.183173, 65.723741 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SWE_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 52.48278022 ], [ 11.25, 55.77657302 ], [ 16.875, 55.77657302 ], [ 16.875, 52.48278022 ], [ 11.25, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 55.77657302 ], [ 11.25, 61.60639637 ], [ 22.5, 61.60639637 ], [ 22.5, 55.77657302 ], [ 11.25, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 61.60639637 ], [ 11.25, 66.51326044 ], [ 22.5, 66.51326044 ], [ 22.5, 61.60639637 ], [ 11.25, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 66.51326044 ], [ 11.25, 68.65655498 ], [ 16.875, 68.65655498 ], [ 16.875, 66.51326044 ], [ 11.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 66.51326044 ], [ 16.875, 68.65655498 ], [ 22.5, 68.65655498 ], [ 22.5, 66.51326044 ], [ 16.875, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 68.65655498 ], [ 16.875, 70.61261424 ], [ 22.5, 70.61261424 ], [ 22.5, 68.65655498 ], [ 16.875, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 64.1681069 ], [ 22.5, 66.51326044 ], [ 28.125, 66.51326044 ], [ 28.125, 64.1681069 ], [ 22.5, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 66.51326044 ], [ 22.5, 68.65655498 ], [ 28.125, 68.65655498 ], [ 28.125, 66.51326044 ], [ 22.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 55.77657302 ], [ 5.625, 58.81374172 ], [ 11.25, 58.81374172 ], [ 11.25, 55.77657302 ], [ 5.625, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 58.81374172 ], [ 5.625, 61.60639637 ], [ 11.25, 61.60639637 ], [ 11.25, 58.81374172 ], [ 5.625, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.183173, 65.723741 ], [ 21.213517, 65.026005 ], [ 21.369631, 64.413588 ], [ 19.778876, 63.609554 ], [ 17.847779, 62.7494 ], [ 17.119555, 61.341166 ], [ 17.831346, 60.636583 ], [ 18.787722, 60.081914 ], [ 17.869225, 58.953766 ], [ 16.829185, 58.719827 ], [ 16.44771, 57.041118 ], [ 15.879786, 56.104302 ], [ 14.666681, 56.200885 ], [ 14.100721, 55.407781 ], [ 12.942911, 55.361737 ], [ 12.625101, 56.30708 ], [ 11.787942, 57.441817 ], [ 11.027369, 58.856149 ], [ 11.468272, 59.432393 ], [ 12.300366, 60.117933 ], [ 12.631147, 61.293572 ], [ 11.992064, 61.800362 ], [ 11.930569, 63.128318 ], [ 12.579935, 64.066219 ], [ 13.571916, 64.049114 ], [ 13.919905, 64.445421 ], [ 13.55569, 64.787028 ], [ 15.108411, 66.193867 ], [ 16.108712, 67.302456 ], [ 16.768879, 68.013937 ], [ 17.729182, 68.010552 ], [ 17.993868, 68.567391 ], [ 19.87856, 68.407194 ], [ 20.025269, 69.065139 ], [ 20.645593, 69.106247 ], [ 21.978535, 68.616846 ], [ 23.539473, 67.936009 ], [ 23.56588, 66.396051 ], [ 23.903379, 66.006927 ], [ 22.183173, 65.723741 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SWZ.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SWZ","properties":{"name":"Swaziland"},"geometry":{"type":"Polygon","coordinates":[[[32.071665,-26.73382],[31.86806,-27.177927],[31.282773,-27.285879],[30.685962,-26.743845],[30.676609,-26.398078],[30.949667,-26.022649],[31.04408,-25.731452],[31.333158,-25.660191],[31.837778,-25.843332],[31.985779,-26.29178],[32.071665,-26.73382]]]}} ]} ================================================ FILE: test/fixtures/world/SWZ_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -27.05912578 ], [ 28.125, -21.94304553 ], [ 33.75, -21.94304553 ], [ 33.75, -27.05912578 ], [ 28.125, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -31.95216224 ], [ 28.125, -27.05912578 ], [ 33.75, -27.05912578 ], [ 33.75, -31.95216224 ], [ 28.125, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.071665, -26.73382 ], [ 31.86806, -27.177927 ], [ 31.282773, -27.285879 ], [ 30.685962, -26.743845 ], [ 30.676609, -26.398078 ], [ 30.949667, -26.022649 ], [ 31.04408, -25.731452 ], [ 31.333158, -25.660191 ], [ 31.837778, -25.843332 ], [ 31.985779, -26.29178 ], [ 32.071665, -26.73382 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/SYR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"SYR","properties":{"name":"Syria"},"geometry":{"type":"Polygon","coordinates":[[[38.792341,33.378686],[36.834062,32.312938],[35.719918,32.709192],[35.700798,32.716014],[35.836397,32.868123],[35.821101,33.277426],[36.06646,33.824912],[36.61175,34.201789],[36.448194,34.593935],[35.998403,34.644914],[35.905023,35.410009],[36.149763,35.821535],[36.41755,36.040617],[36.685389,36.259699],[36.739494,36.81752],[37.066761,36.623036],[38.167727,36.90121],[38.699891,36.712927],[39.52258,36.716054],[40.673259,37.091276],[41.212089,37.074352],[42.349591,37.229873],[41.837064,36.605854],[41.289707,36.358815],[41.383965,35.628317],[41.006159,34.419372],[38.792341,33.378686]]]}} ]} ================================================ FILE: test/fixtures/world/SYR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 31.95216224 ], [ 33.75, 40.97989807 ], [ 45, 40.97989807 ], [ 45, 31.95216224 ], [ 33.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792341, 33.378686 ], [ 36.834062, 32.312938 ], [ 35.719918, 32.709192 ], [ 35.700798, 32.716014 ], [ 35.836397, 32.868123 ], [ 35.821101, 33.277426 ], [ 36.06646, 33.824912 ], [ 36.61175, 34.201789 ], [ 36.448194, 34.593935 ], [ 35.998403, 34.644914 ], [ 35.905023, 35.410009 ], [ 36.149763, 35.821535 ], [ 36.41755, 36.040617 ], [ 36.685389, 36.259699 ], [ 36.739494, 36.81752 ], [ 37.066761, 36.623036 ], [ 38.167727, 36.90121 ], [ 38.699891, 36.712927 ], [ 39.52258, 36.716054 ], [ 40.673259, 37.091276 ], [ 41.212089, 37.074352 ], [ 42.349591, 37.229873 ], [ 41.837064, 36.605854 ], [ 41.289707, 36.358815 ], [ 41.383965, 35.628317 ], [ 41.006159, 34.419372 ], [ 38.792341, 33.378686 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TCD.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TCD","properties":{"name":"Chad"},"geometry":{"type":"Polygon","coordinates":[[[14.495787,12.859396],[14.595781,13.330427],[13.954477,13.353449],[13.956699,13.996691],[13.540394,14.367134],[13.97217,15.68437],[15.247731,16.627306],[15.300441,17.92795],[15.685741,19.95718],[15.903247,20.387619],[15.487148,20.730415],[15.47106,21.04845],[15.096888,21.308519],[14.8513,22.86295],[15.86085,23.40972],[19.84926,21.49509],[23.83766,19.58047],[23.88689,15.61084],[23.02459,15.68072],[22.56795,14.94429],[22.30351,14.32682],[22.51202,14.09318],[22.18329,13.78648],[22.29658,13.37232],[22.03759,12.95546],[21.93681,12.58818],[22.28801,12.64605],[22.49762,12.26024],[22.50869,11.67936],[22.87622,11.38461],[22.864165,11.142395],[22.231129,10.971889],[21.723822,10.567056],[21.000868,9.475985],[20.059685,9.012706],[19.094008,9.074847],[18.81201,8.982915],[18.911022,8.630895],[18.389555,8.281304],[17.96493,7.890914],[16.705988,7.508328],[16.456185,7.734774],[16.290562,7.754307],[16.106232,7.497088],[15.27946,7.421925],[15.436092,7.692812],[15.120866,8.38215],[14.979996,8.796104],[14.544467,8.965861],[13.954218,9.549495],[14.171466,10.021378],[14.627201,9.920919],[14.909354,9.992129],[15.467873,9.982337],[14.923565,10.891325],[14.960152,11.555574],[14.89336,12.21905],[14.495787,12.859396]]]}} ]} ================================================ FILE: test/fixtures/world/TCD_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 11.17840187 ], [ 11.25, 21.94304553 ], [ 22.5, 21.94304553 ], [ 22.5, 11.17840187 ], [ 11.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 21.94304553 ], [ 11.25, 27.05912578 ], [ 16.875, 27.05912578 ], [ 16.875, 21.94304553 ], [ 11.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 5.61598582 ], [ 11.25, 11.17840187 ], [ 16.875, 11.17840187 ], [ 16.875, 5.61598582 ], [ 11.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 21.94304553 ], [ 16.875, 27.05912578 ], [ 22.5, 27.05912578 ], [ 22.5, 21.94304553 ], [ 16.875, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 5.61598582 ], [ 16.875, 11.17840187 ], [ 22.5, 11.17840187 ], [ 22.5, 5.61598582 ], [ 16.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 11.17840187 ], [ 22.5, 16.63619188 ], [ 28.125, 16.63619188 ], [ 28.125, 11.17840187 ], [ 22.5, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.63619188 ], [ 22.5, 21.94304553 ], [ 28.125, 21.94304553 ], [ 28.125, 16.63619188 ], [ 22.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 5.61598582 ], [ 22.5, 11.17840187 ], [ 28.125, 11.17840187 ], [ 28.125, 5.61598582 ], [ 22.5, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.495787, 12.859396 ], [ 14.595781, 13.330427 ], [ 13.954477, 13.353449 ], [ 13.956699, 13.996691 ], [ 13.540394, 14.367134 ], [ 13.97217, 15.68437 ], [ 15.247731, 16.627306 ], [ 15.300441, 17.92795 ], [ 15.685741, 19.95718 ], [ 15.903247, 20.387619 ], [ 15.487148, 20.730415 ], [ 15.47106, 21.04845 ], [ 15.096888, 21.308519 ], [ 14.8513, 22.86295 ], [ 15.86085, 23.40972 ], [ 19.84926, 21.49509 ], [ 23.83766, 19.58047 ], [ 23.88689, 15.61084 ], [ 23.02459, 15.68072 ], [ 22.56795, 14.94429 ], [ 22.30351, 14.32682 ], [ 22.51202, 14.09318 ], [ 22.18329, 13.78648 ], [ 22.29658, 13.37232 ], [ 22.03759, 12.95546 ], [ 21.93681, 12.58818 ], [ 22.28801, 12.64605 ], [ 22.49762, 12.26024 ], [ 22.50869, 11.67936 ], [ 22.87622, 11.38461 ], [ 22.864165, 11.142395 ], [ 22.231129, 10.971889 ], [ 21.723822, 10.567056 ], [ 21.000868, 9.475985 ], [ 20.059685, 9.012706 ], [ 19.094008, 9.074847 ], [ 18.81201, 8.982915 ], [ 18.911022, 8.630895 ], [ 18.389555, 8.281304 ], [ 17.96493, 7.890914 ], [ 16.705988, 7.508328 ], [ 16.456185, 7.734774 ], [ 16.290562, 7.754307 ], [ 16.106232, 7.497088 ], [ 15.27946, 7.421925 ], [ 15.436092, 7.692812 ], [ 15.120866, 8.38215 ], [ 14.979996, 8.796104 ], [ 14.544467, 8.965861 ], [ 13.954218, 9.549495 ], [ 14.171466, 10.021378 ], [ 14.627201, 9.920919 ], [ 14.909354, 9.992129 ], [ 15.467873, 9.982337 ], [ 14.923565, 10.891325 ], [ 14.960152, 11.555574 ], [ 14.89336, 12.21905 ], [ 14.495787, 12.859396 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TGO.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TGO","properties":{"name":"Togo"},"geometry":{"type":"Polygon","coordinates":[[[1.865241,6.142158],[1.060122,5.928837],[0.836931,6.279979],[0.570384,6.914359],[0.490957,7.411744],[0.712029,8.312465],[0.461192,8.677223],[0.365901,9.465004],[0.36758,10.191213],[-0.049785,10.706918],[0.023803,11.018682],[0.899563,10.997339],[0.772336,10.470808],[1.077795,10.175607],[1.425061,9.825395],[1.463043,9.334624],[1.664478,9.12859],[1.618951,6.832038],[1.865241,6.142158]]]}} ]} ================================================ FILE: test/fixtures/world/TGO_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625, 5.61598582 ], [ -5.625, 11.17840187 ], [ 0, 11.17840187 ], [ 0, 5.61598582 ], [ -5.625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 5.61598582 ], [ 0, 11.17840187 ], [ 5.625, 11.17840187 ], [ 5.625, 5.61598582 ], [ 0, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.865241, 6.142158 ], [ 1.060122, 5.928837 ], [ 0.836931, 6.279979 ], [ 0.570384, 6.914359 ], [ 0.490957, 7.411744 ], [ 0.712029, 8.312465 ], [ 0.461192, 8.677223 ], [ 0.365901, 9.465004 ], [ 0.36758, 10.191213 ], [ -0.049785, 10.706918 ], [ 0.023803, 11.018682 ], [ 0.899563, 10.997339 ], [ 0.772336, 10.470808 ], [ 1.077795, 10.175607 ], [ 1.425061, 9.825395 ], [ 1.463043, 9.334624 ], [ 1.664478, 9.12859 ], [ 1.618951, 6.832038 ], [ 1.865241, 6.142158 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/THA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"THA","properties":{"name":"Thailand"},"geometry":{"type":"Polygon","coordinates":[[[102.584932,12.186595],[101.687158,12.64574],[100.83181,12.627085],[100.978467,13.412722],[100.097797,13.406856],[100.018733,12.307001],[99.478921,10.846367],[99.153772,9.963061],[99.222399,9.239255],[99.873832,9.207862],[100.279647,8.295153],[100.459274,7.429573],[101.017328,6.856869],[101.623079,6.740622],[102.141187,6.221636],[101.814282,5.810808],[101.154219,5.691384],[101.075516,6.204867],[100.259596,6.642825],[100.085757,6.464489],[99.690691,6.848213],[99.519642,7.343454],[98.988253,7.907993],[98.503786,8.382305],[98.339662,7.794512],[98.150009,8.350007],[98.25915,8.973923],[98.553551,9.93296],[99.038121,10.960546],[99.587286,11.892763],[99.196354,12.804748],[99.212012,13.269294],[99.097755,13.827503],[98.430819,14.622028],[98.192074,15.123703],[98.537376,15.308497],[98.903348,16.177824],[98.493761,16.837836],[97.859123,17.567946],[97.375896,18.445438],[97.797783,18.62708],[98.253724,19.708203],[98.959676,19.752981],[99.543309,20.186598],[100.115988,20.41785],[100.548881,20.109238],[100.606294,19.508344],[101.282015,19.462585],[101.035931,18.408928],[101.059548,17.512497],[102.113592,18.109102],[102.413005,17.932782],[102.998706,17.961695],[103.200192,18.309632],[103.956477,18.240954],[104.716947,17.428859],[104.779321,16.441865],[105.589039,15.570316],[105.544338,14.723934],[105.218777,14.273212],[104.281418,14.416743],[102.988422,14.225721],[102.348099,13.394247],[102.584932,12.186595]]]}} ]} ================================================ FILE: test/fixtures/world/THA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 11.17840187 ], [ 101.25, 16.63619188 ], [ 106.875, 16.63619188 ], [ 106.875, 11.17840187 ], [ 101.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 16.63619188 ], [ 101.25, 21.94304553 ], [ 106.875, 21.94304553 ], [ 106.875, 16.63619188 ], [ 101.25, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 5.61598582 ], [ 101.25, 11.17840187 ], [ 106.875, 11.17840187 ], [ 106.875, 5.61598582 ], [ 101.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 11.17840187 ], [ 95.625, 16.63619188 ], [ 101.25, 16.63619188 ], [ 101.25, 11.17840187 ], [ 95.625, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 16.63619188 ], [ 95.625, 21.94304553 ], [ 101.25, 21.94304553 ], [ 101.25, 16.63619188 ], [ 95.625, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.625, 5.61598582 ], [ 95.625, 11.17840187 ], [ 101.25, 11.17840187 ], [ 101.25, 5.61598582 ], [ 95.625, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.584932, 12.186595 ], [ 101.687158, 12.64574 ], [ 100.83181, 12.627085 ], [ 100.978467, 13.412722 ], [ 100.097797, 13.406856 ], [ 100.018733, 12.307001 ], [ 99.478921, 10.846367 ], [ 99.153772, 9.963061 ], [ 99.222399, 9.239255 ], [ 99.873832, 9.207862 ], [ 100.279647, 8.295153 ], [ 100.459274, 7.429573 ], [ 101.017328, 6.856869 ], [ 101.623079, 6.740622 ], [ 102.141187, 6.221636 ], [ 101.814282, 5.810808 ], [ 101.154219, 5.691384 ], [ 101.075516, 6.204867 ], [ 100.259596, 6.642825 ], [ 100.085757, 6.464489 ], [ 99.690691, 6.848213 ], [ 99.519642, 7.343454 ], [ 98.988253, 7.907993 ], [ 98.503786, 8.382305 ], [ 98.339662, 7.794512 ], [ 98.150009, 8.350007 ], [ 98.25915, 8.973923 ], [ 98.553551, 9.93296 ], [ 99.038121, 10.960546 ], [ 99.587286, 11.892763 ], [ 99.196354, 12.804748 ], [ 99.212012, 13.269294 ], [ 99.097755, 13.827503 ], [ 98.430819, 14.622028 ], [ 98.192074, 15.123703 ], [ 98.537376, 15.308497 ], [ 98.903348, 16.177824 ], [ 98.493761, 16.837836 ], [ 97.859123, 17.567946 ], [ 97.375896, 18.445438 ], [ 97.797783, 18.62708 ], [ 98.253724, 19.708203 ], [ 98.959676, 19.752981 ], [ 99.543309, 20.186598 ], [ 100.115988, 20.41785 ], [ 100.548881, 20.109238 ], [ 100.606294, 19.508344 ], [ 101.282015, 19.462585 ], [ 101.035931, 18.408928 ], [ 101.059548, 17.512497 ], [ 102.113592, 18.109102 ], [ 102.413005, 17.932782 ], [ 102.998706, 17.961695 ], [ 103.200192, 18.309632 ], [ 103.956477, 18.240954 ], [ 104.716947, 17.428859 ], [ 104.779321, 16.441865 ], [ 105.589039, 15.570316 ], [ 105.544338, 14.723934 ], [ 105.218777, 14.273212 ], [ 104.281418, 14.416743 ], [ 102.988422, 14.225721 ], [ 102.348099, 13.394247 ], [ 102.584932, 12.186595 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TJK.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TJK","properties":{"name":"Tajikistan"},"geometry":{"type":"Polygon","coordinates":[[[71.014198,40.244366],[70.648019,39.935754],[69.55961,40.103211],[69.464887,39.526683],[70.549162,39.604198],[71.784694,39.279463],[73.675379,39.431237],[73.928852,38.505815],[74.257514,38.606507],[74.864816,38.378846],[74.829986,37.990007],[74.980002,37.41999],[73.948696,37.421566],[73.260056,37.495257],[72.63689,37.047558],[72.193041,36.948288],[71.844638,36.738171],[71.448693,37.065645],[71.541918,37.905774],[71.239404,37.953265],[71.348131,38.258905],[70.806821,38.486282],[70.376304,38.138396],[70.270574,37.735165],[70.116578,37.588223],[69.518785,37.608997],[69.196273,37.151144],[68.859446,37.344336],[68.135562,37.023115],[67.83,37.144994],[68.392033,38.157025],[68.176025,38.901553],[67.44222,39.140144],[67.701429,39.580478],[68.536416,39.533453],[69.011633,40.086158],[69.329495,40.727824],[70.666622,40.960213],[70.45816,40.496495],[70.601407,40.218527],[71.014198,40.244366]]]}} ]} ================================================ FILE: test/fixtures/world/TJK_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 36.59788913 ], [ 61.875, 40.97989807 ], [ 67.5, 40.97989807 ], [ 67.5, 36.59788913 ], [ 61.875, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 36.59788913 ], [ 67.5, 40.97989807 ], [ 73.125, 40.97989807 ], [ 73.125, 36.59788913 ], [ 67.5, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125, 36.59788913 ], [ 73.125, 40.97989807 ], [ 78.75, 40.97989807 ], [ 78.75, 36.59788913 ], [ 73.125, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.014198, 40.244366 ], [ 70.648019, 39.935754 ], [ 69.55961, 40.103211 ], [ 69.464887, 39.526683 ], [ 70.549162, 39.604198 ], [ 71.784694, 39.279463 ], [ 73.675379, 39.431237 ], [ 73.928852, 38.505815 ], [ 74.257514, 38.606507 ], [ 74.864816, 38.378846 ], [ 74.829986, 37.990007 ], [ 74.980002, 37.41999 ], [ 73.948696, 37.421566 ], [ 73.260056, 37.495257 ], [ 72.63689, 37.047558 ], [ 72.193041, 36.948288 ], [ 71.844638, 36.738171 ], [ 71.448693, 37.065645 ], [ 71.541918, 37.905774 ], [ 71.239404, 37.953265 ], [ 71.348131, 38.258905 ], [ 70.806821, 38.486282 ], [ 70.376304, 38.138396 ], [ 70.270574, 37.735165 ], [ 70.116578, 37.588223 ], [ 69.518785, 37.608997 ], [ 69.196273, 37.151144 ], [ 68.859446, 37.344336 ], [ 68.135562, 37.023115 ], [ 67.83, 37.144994 ], [ 68.392033, 38.157025 ], [ 68.176025, 38.901553 ], [ 67.44222, 39.140144 ], [ 67.701429, 39.580478 ], [ 68.536416, 39.533453 ], [ 69.011633, 40.086158 ], [ 69.329495, 40.727824 ], [ 70.666622, 40.960213 ], [ 70.45816, 40.496495 ], [ 70.601407, 40.218527 ], [ 71.014198, 40.244366 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TKM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TKM","properties":{"name":"Turkmenistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[61.123071,36.491597],[60.377638,36.527383],[59.234762,37.412988],[58.436154,37.522309],[57.330434,38.029229],[56.619366,38.121394],[56.180375,37.935127],[55.511578,37.964117],[54.800304,37.392421],[53.921598,37.198918],[53.735511,37.906136],[53.880929,38.952093],[53.101028,39.290574],[53.357808,39.975286],[52.693973,40.033629],[52.915251,40.876523],[53.858139,40.631034],[54.736845,40.951015],[54.008311,41.551211],[53.721713,42.123191],[52.91675,41.868117],[52.814689,41.135371],[52.50246,41.783316],[52.944293,42.116034],[54.079418,42.324109],[54.755345,42.043971],[55.455251,41.259859],[55.968191,41.308642],[57.096391,41.32231],[56.932215,41.826026],[57.78653,42.170553],[58.629011,42.751551],[59.976422,42.223082],[60.083341,41.425146],[60.465953,41.220327],[61.547179,41.26637],[61.882714,41.084857],[62.37426,40.053886],[63.518015,39.363257],[64.170223,38.892407],[65.215999,38.402695],[66.54615,37.974685],[66.518607,37.362784],[66.217385,37.39379],[65.745631,37.661164],[65.588948,37.305217],[64.746105,37.111818],[64.546479,36.312073],[63.982896,36.007957],[63.193538,35.857166],[62.984662,35.404041],[62.230651,35.270664],[61.210817,35.650072]]]}} ]} ================================================ FILE: test/fixtures/world/TKM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 36.59788913 ], [ 50.625, 40.97989807 ], [ 56.25, 40.97989807 ], [ 56.25, 36.59788913 ], [ 50.625, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 40.97989807 ], [ 50.625, 45.08903556 ], [ 56.25, 45.08903556 ], [ 56.25, 40.97989807 ], [ 50.625, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 31.95216224 ], [ 56.25, 40.97989807 ], [ 67.5, 40.97989807 ], [ 67.5, 31.95216224 ], [ 56.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 40.97989807 ], [ 56.25, 45.08903556 ], [ 61.875, 45.08903556 ], [ 61.875, 40.97989807 ], [ 56.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 40.97989807 ], [ 61.875, 45.08903556 ], [ 67.5, 45.08903556 ], [ 67.5, 40.97989807 ], [ 61.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.210817, 35.650072 ], [ 61.123071, 36.491597 ], [ 60.377638, 36.527383 ], [ 59.234762, 37.412988 ], [ 58.436154, 37.522309 ], [ 57.330434, 38.029229 ], [ 56.619366, 38.121394 ], [ 56.180375, 37.935127 ], [ 55.511578, 37.964117 ], [ 54.800304, 37.392421 ], [ 53.921598, 37.198918 ], [ 53.735511, 37.906136 ], [ 53.880929, 38.952093 ], [ 53.101028, 39.290574 ], [ 53.357808, 39.975286 ], [ 52.693973, 40.033629 ], [ 52.915251, 40.876523 ], [ 53.858139, 40.631034 ], [ 54.736845, 40.951015 ], [ 54.008311, 41.551211 ], [ 53.721713, 42.123191 ], [ 52.91675, 41.868117 ], [ 52.814689, 41.135371 ], [ 52.50246, 41.783316 ], [ 52.944293, 42.116034 ], [ 54.079418, 42.324109 ], [ 54.755345, 42.043971 ], [ 55.455251, 41.259859 ], [ 55.968191, 41.308642 ], [ 57.096391, 41.32231 ], [ 56.932215, 41.826026 ], [ 57.78653, 42.170553 ], [ 58.629011, 42.751551 ], [ 59.976422, 42.223082 ], [ 60.083341, 41.425146 ], [ 60.465953, 41.220327 ], [ 61.547179, 41.26637 ], [ 61.882714, 41.084857 ], [ 62.37426, 40.053886 ], [ 63.518015, 39.363257 ], [ 64.170223, 38.892407 ], [ 65.215999, 38.402695 ], [ 66.54615, 37.974685 ], [ 66.518607, 37.362784 ], [ 66.217385, 37.39379 ], [ 65.745631, 37.661164 ], [ 65.588948, 37.305217 ], [ 64.746105, 37.111818 ], [ 64.546479, 36.312073 ], [ 63.982896, 36.007957 ], [ 63.193538, 35.857166 ], [ 62.984662, 35.404041 ], [ 62.230651, 35.270664 ], [ 61.210817, 35.650072 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TLS.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TLS","properties":{"name":"East Timor"},"geometry":{"type":"Polygon","coordinates":[[[124.968682,-8.89279],[125.086246,-8.656887],[125.947072,-8.432095],[126.644704,-8.398247],[126.957243,-8.273345],[127.335928,-8.397317],[126.967992,-8.668256],[125.925885,-9.106007],[125.08852,-9.393173],[125.07002,-9.089987],[124.968682,-8.89279]]]}} ]} ================================================ FILE: test/fixtures/world/TLS_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.75, -11.17840187 ], [ 123.75, -5.61598582 ], [ 129.375, -5.61598582 ], [ 129.375, -11.17840187 ], [ 123.75, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.968682, -8.89279 ], [ 125.086246, -8.656887 ], [ 125.947072, -8.432095 ], [ 126.644704, -8.398247 ], [ 126.957243, -8.273345 ], [ 127.335928, -8.397317 ], [ 126.967992, -8.668256 ], [ 125.925885, -9.106007 ], [ 125.08852, -9.393173 ], [ 125.07002, -9.089987 ], [ 124.968682, -8.89279 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TTO.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TTO","properties":{"name":"Trinidad and Tobago"},"geometry":{"type":"Polygon","coordinates":[[[-61.68,10.76],[-61.105,10.89],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.95,10.09],[-61.66,10.365],[-61.68,10.76]]]}} ]} ================================================ FILE: test/fixtures/world/TTO_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 5.61598582 ], [ -61.875, 11.17840187 ], [ -56.25, 11.17840187 ], [ -56.25, 5.61598582 ], [ -61.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 5.61598582 ], [ -67.5, 11.17840187 ], [ -61.875, 11.17840187 ], [ -61.875, 5.61598582 ], [ -67.5, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.68, 10.76 ], [ -61.105, 10.89 ], [ -60.895, 10.855 ], [ -60.935, 10.11 ], [ -61.77, 10 ], [ -61.95, 10.09 ], [ -61.66, 10.365 ], [ -61.68, 10.76 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TUN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TUN","properties":{"name":"Tunisia"},"geometry":{"type":"Polygon","coordinates":[[[9.48214,30.307556],[9.055603,32.102692],[8.439103,32.506285],[8.430473,32.748337],[7.612642,33.344115],[7.524482,34.097376],[8.140981,34.655146],[8.376368,35.479876],[8.217824,36.433177],[8.420964,36.946427],[9.509994,37.349994],[10.210002,37.230002],[10.18065,36.724038],[11.028867,37.092103],[11.100026,36.899996],[10.600005,36.41],[10.593287,35.947444],[10.939519,35.698984],[10.807847,34.833507],[10.149593,34.330773],[10.339659,33.785742],[10.856836,33.76874],[11.108501,33.293343],[11.488787,33.136996],[11.432253,32.368903],[10.94479,32.081815],[10.636901,31.761421],[9.950225,31.37607],[10.056575,30.961831],[9.970017,30.539325],[9.48214,30.307556]]]}} ]} ================================================ FILE: test/fixtures/world/TUN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, 31.95216224 ], [ 11.25, 36.59788913 ], [ 16.875, 36.59788913 ], [ 16.875, 31.95216224 ], [ 11.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 27.05912578 ], [ 5.625, 31.95216224 ], [ 11.25, 31.95216224 ], [ 11.25, 27.05912578 ], [ 5.625, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 31.95216224 ], [ 5.625, 36.59788913 ], [ 11.25, 36.59788913 ], [ 11.25, 31.95216224 ], [ 5.625, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625, 36.59788913 ], [ 5.625, 40.97989807 ], [ 11.25, 40.97989807 ], [ 11.25, 36.59788913 ], [ 5.625, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.48214, 30.307556 ], [ 9.055603, 32.102692 ], [ 8.439103, 32.506285 ], [ 8.430473, 32.748337 ], [ 7.612642, 33.344115 ], [ 7.524482, 34.097376 ], [ 8.140981, 34.655146 ], [ 8.376368, 35.479876 ], [ 8.217824, 36.433177 ], [ 8.420964, 36.946427 ], [ 9.509994, 37.349994 ], [ 10.210002, 37.230002 ], [ 10.18065, 36.724038 ], [ 11.028867, 37.092103 ], [ 11.100026, 36.899996 ], [ 10.600005, 36.41 ], [ 10.593287, 35.947444 ], [ 10.939519, 35.698984 ], [ 10.807847, 34.833507 ], [ 10.149593, 34.330773 ], [ 10.339659, 33.785742 ], [ 10.856836, 33.76874 ], [ 11.108501, 33.293343 ], [ 11.488787, 33.136996 ], [ 11.432253, 32.368903 ], [ 10.94479, 32.081815 ], [ 10.636901, 31.761421 ], [ 9.950225, 31.37607 ], [ 10.056575, 30.961831 ], [ 9.970017, 30.539325 ], [ 9.48214, 30.307556 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TUR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TUR","properties":{"name":"Turkey"},"geometry":{"type":"MultiPolygon","coordinates":[[[[36.913127,41.335358],[38.347665,40.948586],[39.512607,41.102763],[40.373433,41.013673],[41.554084,41.535656],[42.619549,41.583173],[43.582746,41.092143],[43.752658,40.740201],[43.656436,40.253564],[44.400009,40.005],[44.79399,39.713003],[44.109225,39.428136],[44.421403,38.281281],[44.225756,37.971584],[44.772699,37.170445],[44.293452,37.001514],[43.942259,37.256228],[42.779126,37.385264],[42.349591,37.229873],[41.212089,37.074352],[40.673259,37.091276],[39.52258,36.716054],[38.699891,36.712927],[38.167727,36.90121],[37.066761,36.623036],[36.739494,36.81752],[36.685389,36.259699],[36.41755,36.040617],[36.149763,35.821535],[35.782085,36.274995],[36.160822,36.650606],[35.550936,36.565443],[34.714553,36.795532],[34.026895,36.21996],[32.509158,36.107564],[31.699595,36.644275],[30.621625,36.677865],[30.391096,36.262981],[29.699976,36.144357],[28.732903,36.676831],[27.641187,36.658822],[27.048768,37.653361],[26.318218,38.208133],[26.8047,38.98576],[26.170785,39.463612],[27.28002,40.420014],[28.819978,40.460011],[29.240004,41.219991],[31.145934,41.087622],[32.347979,41.736264],[33.513283,42.01896],[35.167704,42.040225],[36.913127,41.335358]]],[[[27.192377,40.690566],[26.358009,40.151994],[26.043351,40.617754],[26.056942,40.824123],[26.294602,40.936261],[26.604196,41.562115],[26.117042,41.826905],[27.135739,42.141485],[27.99672,42.007359],[28.115525,41.622886],[28.988443,41.299934],[28.806438,41.054962],[27.619017,40.999823],[27.192377,40.690566]]]]}} ]} ================================================ FILE: test/fixtures/world/TUR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 36.59788913 ], [ 22.5, 40.97989807 ], [ 28.125, 40.97989807 ], [ 28.125, 36.59788913 ], [ 22.5, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 40.97989807 ], [ 22.5, 45.08903556 ], [ 28.125, 45.08903556 ], [ 28.125, 40.97989807 ], [ 22.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 31.95216224 ], [ 28.125, 36.59788913 ], [ 33.75, 36.59788913 ], [ 33.75, 31.95216224 ], [ 28.125, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 36.59788913 ], [ 28.125, 40.97989807 ], [ 33.75, 40.97989807 ], [ 33.75, 36.59788913 ], [ 28.125, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 40.97989807 ], [ 28.125, 45.08903556 ], [ 33.75, 45.08903556 ], [ 33.75, 40.97989807 ], [ 28.125, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 31.95216224 ], [ 33.75, 36.59788913 ], [ 39.375, 36.59788913 ], [ 39.375, 31.95216224 ], [ 33.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 36.59788913 ], [ 33.75, 40.97989807 ], [ 39.375, 40.97989807 ], [ 39.375, 36.59788913 ], [ 33.75, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 40.97989807 ], [ 33.75, 45.08903556 ], [ 39.375, 45.08903556 ], [ 39.375, 40.97989807 ], [ 33.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 36.59788913 ], [ 39.375, 40.97989807 ], [ 45, 40.97989807 ], [ 45, 36.59788913 ], [ 39.375, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 40.97989807 ], [ 39.375, 45.08903556 ], [ 45, 45.08903556 ], [ 45, 40.97989807 ], [ 39.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.913127, 41.335358 ], [ 38.347665, 40.948586 ], [ 39.512607, 41.102763 ], [ 40.373433, 41.013673 ], [ 41.554084, 41.535656 ], [ 42.619549, 41.583173 ], [ 43.582746, 41.092143 ], [ 43.752658, 40.740201 ], [ 43.656436, 40.253564 ], [ 44.400009, 40.005 ], [ 44.79399, 39.713003 ], [ 44.109225, 39.428136 ], [ 44.421403, 38.281281 ], [ 44.225756, 37.971584 ], [ 44.772699, 37.170445 ], [ 44.293452, 37.001514 ], [ 43.942259, 37.256228 ], [ 42.779126, 37.385264 ], [ 42.349591, 37.229873 ], [ 41.212089, 37.074352 ], [ 40.673259, 37.091276 ], [ 39.52258, 36.716054 ], [ 38.699891, 36.712927 ], [ 38.167727, 36.90121 ], [ 37.066761, 36.623036 ], [ 36.739494, 36.81752 ], [ 36.685389, 36.259699 ], [ 36.41755, 36.040617 ], [ 36.149763, 35.821535 ], [ 35.782085, 36.274995 ], [ 36.160822, 36.650606 ], [ 35.550936, 36.565443 ], [ 34.714553, 36.795532 ], [ 34.026895, 36.21996 ], [ 32.509158, 36.107564 ], [ 31.699595, 36.644275 ], [ 30.621625, 36.677865 ], [ 30.391096, 36.262981 ], [ 29.699976, 36.144357 ], [ 28.732903, 36.676831 ], [ 27.641187, 36.658822 ], [ 27.048768, 37.653361 ], [ 26.318218, 38.208133 ], [ 26.8047, 38.98576 ], [ 26.170785, 39.463612 ], [ 27.28002, 40.420014 ], [ 28.819978, 40.460011 ], [ 29.240004, 41.219991 ], [ 31.145934, 41.087622 ], [ 32.347979, 41.736264 ], [ 33.513283, 42.01896 ], [ 35.167704, 42.040225 ], [ 36.913127, 41.335358 ] ] ], [ [ [ 27.192377, 40.690566 ], [ 26.358009, 40.151994 ], [ 26.043351, 40.617754 ], [ 26.056942, 40.824123 ], [ 26.294602, 40.936261 ], [ 26.604196, 41.562115 ], [ 26.117042, 41.826905 ], [ 27.135739, 42.141485 ], [ 27.99672, 42.007359 ], [ 28.115525, 41.622886 ], [ 28.988443, 41.299934 ], [ 28.806438, 41.054962 ], [ 27.619017, 40.999823 ], [ 27.192377, 40.690566 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TWN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TWN","properties":{"name":"Taiwan"},"geometry":{"type":"Polygon","coordinates":[[[121.777818,24.394274],[121.175632,22.790857],[120.74708,21.970571],[120.220083,22.814861],[120.106189,23.556263],[120.69468,24.538451],[121.495044,25.295459],[121.951244,24.997596],[121.777818,24.394274]]]}} ]} ================================================ FILE: test/fixtures/world/TWN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.125, 21.94304553 ], [ 118.125, 27.05912578 ], [ 123.75, 27.05912578 ], [ 123.75, 21.94304553 ], [ 118.125, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.777818, 24.394274 ], [ 121.175632, 22.790857 ], [ 120.74708, 21.970571 ], [ 120.220083, 22.814861 ], [ 120.106189, 23.556263 ], [ 120.69468, 24.538451 ], [ 121.495044, 25.295459 ], [ 121.951244, 24.997596 ], [ 121.777818, 24.394274 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/TZA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"TZA","properties":{"name":"United Republic of Tanzania"},"geometry":{"type":"Polygon","coordinates":[[[33.903711,-0.95],[34.07262,-1.05982],[37.69869,-3.09699],[37.7669,-3.67712],[39.20222,-4.67677],[38.74054,-5.90895],[38.79977,-6.47566],[39.44,-6.84],[39.47,-7.1],[39.19469,-7.7039],[39.25203,-8.00781],[39.18652,-8.48551],[39.53574,-9.11237],[39.9496,-10.0984],[40.31659,-10.3171],[39.521,-10.89688],[38.427557,-11.285202],[37.82764,-11.26879],[37.47129,-11.56876],[36.775151,-11.594537],[36.514082,-11.720938],[35.312398,-11.439146],[34.559989,-11.52002],[34.28,-10.16],[33.940838,-9.693674],[33.73972,-9.41715],[32.759375,-9.230599],[32.191865,-8.930359],[31.556348,-8.762049],[31.157751,-8.594579],[30.74,-8.34],[30.2,-7.08],[29.62,-6.52],[29.419993,-5.939999],[29.519987,-5.419979],[29.339998,-4.499983],[29.753512,-4.452389],[30.11632,-4.09012],[30.50554,-3.56858],[30.75224,-3.35931],[30.74301,-3.03431],[30.52766,-2.80762],[30.46967,-2.41383],[30.758309,-2.28725],[30.816135,-1.698914],[30.419105,-1.134659],[30.76986,-1.01455],[31.86617,-1.02736],[33.903711,-0.95]]]}} ]} ================================================ FILE: test/fixtures/world/TZA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -11.17840187 ], [ 28.125, -5.61598582 ], [ 33.75, -5.61598582 ], [ 33.75, -11.17840187 ], [ 28.125, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -5.61598582 ], [ 28.125, 0 ], [ 33.75, 0 ], [ 33.75, -5.61598582 ], [ 28.125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -11.17840187 ], [ 33.75, -5.61598582 ], [ 39.375, -5.61598582 ], [ 39.375, -11.17840187 ], [ 33.75, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -16.63619188 ], [ 33.75, -11.17840187 ], [ 39.375, -11.17840187 ], [ 39.375, -16.63619188 ], [ 33.75, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -5.61598582 ], [ 33.75, 0 ], [ 39.375, 0 ], [ 39.375, -5.61598582 ], [ 33.75, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, -11.17840187 ], [ 39.375, -5.61598582 ], [ 45, -5.61598582 ], [ 45, -11.17840187 ], [ 39.375, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903711, -0.95 ], [ 34.07262, -1.05982 ], [ 37.69869, -3.09699 ], [ 37.7669, -3.67712 ], [ 39.20222, -4.67677 ], [ 38.74054, -5.90895 ], [ 38.79977, -6.47566 ], [ 39.44, -6.84 ], [ 39.47, -7.1 ], [ 39.19469, -7.7039 ], [ 39.25203, -8.00781 ], [ 39.18652, -8.48551 ], [ 39.53574, -9.11237 ], [ 39.9496, -10.0984 ], [ 40.31659, -10.3171 ], [ 39.521, -10.89688 ], [ 38.427557, -11.285202 ], [ 37.82764, -11.26879 ], [ 37.47129, -11.56876 ], [ 36.775151, -11.594537 ], [ 36.514082, -11.720938 ], [ 35.312398, -11.439146 ], [ 34.559989, -11.52002 ], [ 34.28, -10.16 ], [ 33.940838, -9.693674 ], [ 33.73972, -9.41715 ], [ 32.759375, -9.230599 ], [ 32.191865, -8.930359 ], [ 31.556348, -8.762049 ], [ 31.157751, -8.594579 ], [ 30.74, -8.34 ], [ 30.2, -7.08 ], [ 29.62, -6.52 ], [ 29.419993, -5.939999 ], [ 29.519987, -5.419979 ], [ 29.339998, -4.499983 ], [ 29.753512, -4.452389 ], [ 30.11632, -4.09012 ], [ 30.50554, -3.56858 ], [ 30.75224, -3.35931 ], [ 30.74301, -3.03431 ], [ 30.52766, -2.80762 ], [ 30.46967, -2.41383 ], [ 30.758309, -2.28725 ], [ 30.816135, -1.698914 ], [ 30.419105, -1.134659 ], [ 30.76986, -1.01455 ], [ 31.86617, -1.02736 ], [ 33.903711, -0.95 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/UGA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"UGA","properties":{"name":"Uganda"},"geometry":{"type":"Polygon","coordinates":[[[31.86617,-1.02736],[30.76986,-1.01455],[30.419105,-1.134659],[29.821519,-1.443322],[29.579466,-1.341313],[29.587838,-0.587406],[29.8195,-0.2053],[29.875779,0.59738],[30.086154,1.062313],[30.468508,1.583805],[30.85267,1.849396],[31.174149,2.204465],[30.77332,2.33989],[30.83385,3.50917],[31.24556,3.7819],[31.88145,3.55827],[32.68642,3.79232],[33.39,3.79],[34.005,4.249885],[34.47913,3.5556],[34.59607,3.05374],[35.03599,1.90584],[34.6721,1.17694],[34.18,0.515],[33.893569,0.109814],[33.903711,-0.95],[31.86617,-1.02736]]]}} ]} ================================================ FILE: test/fixtures/world/UGA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -5.61598582 ], [ 28.125, 0 ], [ 33.75, 0 ], [ 33.75, -5.61598582 ], [ 28.125, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 0 ], [ 28.125, 5.61598582 ], [ 33.75, 5.61598582 ], [ 33.75, 0 ], [ 28.125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, -5.61598582 ], [ 33.75, 0 ], [ 39.375, 0 ], [ 39.375, -5.61598582 ], [ 33.75, -5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 0 ], [ 33.75, 5.61598582 ], [ 39.375, 5.61598582 ], [ 39.375, 0 ], [ 33.75, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.86617, -1.02736 ], [ 30.76986, -1.01455 ], [ 30.419105, -1.134659 ], [ 29.821519, -1.443322 ], [ 29.579466, -1.341313 ], [ 29.587838, -0.587406 ], [ 29.8195, -0.2053 ], [ 29.875779, 0.59738 ], [ 30.086154, 1.062313 ], [ 30.468508, 1.583805 ], [ 30.85267, 1.849396 ], [ 31.174149, 2.204465 ], [ 30.77332, 2.33989 ], [ 30.83385, 3.50917 ], [ 31.24556, 3.7819 ], [ 31.88145, 3.55827 ], [ 32.68642, 3.79232 ], [ 33.39, 3.79 ], [ 34.005, 4.249885 ], [ 34.47913, 3.5556 ], [ 34.59607, 3.05374 ], [ 35.03599, 1.90584 ], [ 34.6721, 1.17694 ], [ 34.18, 0.515 ], [ 33.893569, 0.109814 ], [ 33.903711, -0.95 ], [ 31.86617, -1.02736 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/UKR.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"UKR","properties":{"name":"Ukraine"},"geometry":{"type":"Polygon","coordinates":[[[31.785998,52.101678],[32.159412,52.061267],[32.412058,52.288695],[32.715761,52.238465],[33.7527,52.335075],[34.391731,51.768882],[34.141978,51.566413],[34.224816,51.255993],[35.022183,51.207572],[35.377924,50.773955],[35.356116,50.577197],[36.626168,50.225591],[37.39346,50.383953],[38.010631,49.915662],[38.594988,49.926462],[40.069058,49.601055],[40.080789,49.30743],[39.674664,48.783818],[39.895632,48.232405],[39.738278,47.898937],[38.770585,47.825608],[38.255112,47.5464],[38.223538,47.10219],[37.425137,47.022221],[36.759855,46.6987],[35.823685,46.645964],[34.962342,46.273197],[35.020788,45.651219],[35.510009,45.409993],[36.529998,45.46999],[36.334713,45.113216],[35.239999,44.939996],[33.882511,44.361479],[33.326421,44.564877],[33.546924,45.034771],[32.454174,45.327466],[32.630804,45.519186],[33.588162,45.851569],[33.298567,46.080598],[31.74414,46.333348],[31.675307,46.706245],[30.748749,46.5831],[30.377609,46.03241],[29.603289,45.293308],[29.149725,45.464925],[28.679779,45.304031],[28.233554,45.488283],[28.485269,45.596907],[28.659987,45.939987],[28.933717,46.25883],[28.862972,46.437889],[29.072107,46.517678],[29.170654,46.379262],[29.759972,46.349988],[30.024659,46.423937],[29.83821,46.525326],[29.908852,46.674361],[29.559674,46.928583],[29.415135,47.346645],[29.050868,47.510227],[29.122698,47.849095],[28.670891,48.118149],[28.259547,48.155562],[27.522537,48.467119],[26.857824,48.368211],[26.619337,48.220726],[26.19745,48.220881],[25.945941,47.987149],[25.207743,47.891056],[24.866317,47.737526],[24.402056,47.981878],[23.760958,47.985598],[23.142236,48.096341],[22.710531,47.882194],[22.64082,48.15024],[22.085608,48.422264],[22.280842,48.825392],[22.558138,49.085738],[22.776419,49.027395],[22.51845,49.476774],[23.426508,50.308506],[23.922757,50.424881],[24.029986,50.705407],[23.527071,51.578454],[24.005078,51.617444],[24.553106,51.888461],[25.327788,51.910656],[26.337959,51.832289],[27.454066,51.592303],[28.241615,51.572227],[28.617613,51.427714],[28.992835,51.602044],[29.254938,51.368234],[30.157364,51.416138],[30.555117,51.319503],[30.619454,51.822806],[30.927549,52.042353],[31.785998,52.101678]]]}} ]} ================================================ FILE: test/fixtures/world/UKR_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 45.08903556 ], [ 16.875, 48.92249926 ], [ 22.5, 48.92249926 ], [ 22.5, 45.08903556 ], [ 16.875, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, 48.92249926 ], [ 16.875, 52.48278022 ], [ 22.5, 52.48278022 ], [ 22.5, 48.92249926 ], [ 16.875, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 45.08903556 ], [ 22.5, 48.92249926 ], [ 28.125, 48.92249926 ], [ 28.125, 45.08903556 ], [ 22.5, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 48.92249926 ], [ 22.5, 52.48278022 ], [ 28.125, 52.48278022 ], [ 28.125, 48.92249926 ], [ 22.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 40.97989807 ], [ 28.125, 45.08903556 ], [ 33.75, 45.08903556 ], [ 33.75, 40.97989807 ], [ 28.125, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 45.08903556 ], [ 28.125, 48.92249926 ], [ 33.75, 48.92249926 ], [ 33.75, 45.08903556 ], [ 28.125, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, 48.92249926 ], [ 28.125, 52.48278022 ], [ 33.75, 52.48278022 ], [ 33.75, 48.92249926 ], [ 28.125, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 40.97989807 ], [ 33.75, 45.08903556 ], [ 39.375, 45.08903556 ], [ 39.375, 40.97989807 ], [ 33.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 45.08903556 ], [ 33.75, 48.92249926 ], [ 39.375, 48.92249926 ], [ 39.375, 45.08903556 ], [ 33.75, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.75, 48.92249926 ], [ 33.75, 52.48278022 ], [ 39.375, 52.48278022 ], [ 39.375, 48.92249926 ], [ 33.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 45.08903556 ], [ 39.375, 48.92249926 ], [ 45, 48.92249926 ], [ 45, 45.08903556 ], [ 39.375, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 48.92249926 ], [ 39.375, 52.48278022 ], [ 45, 52.48278022 ], [ 45, 48.92249926 ], [ 39.375, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.785998, 52.101678 ], [ 32.159412, 52.061267 ], [ 32.412058, 52.288695 ], [ 32.715761, 52.238465 ], [ 33.7527, 52.335075 ], [ 34.391731, 51.768882 ], [ 34.141978, 51.566413 ], [ 34.224816, 51.255993 ], [ 35.022183, 51.207572 ], [ 35.377924, 50.773955 ], [ 35.356116, 50.577197 ], [ 36.626168, 50.225591 ], [ 37.39346, 50.383953 ], [ 38.010631, 49.915662 ], [ 38.594988, 49.926462 ], [ 40.069058, 49.601055 ], [ 40.080789, 49.30743 ], [ 39.674664, 48.783818 ], [ 39.895632, 48.232405 ], [ 39.738278, 47.898937 ], [ 38.770585, 47.825608 ], [ 38.255112, 47.5464 ], [ 38.223538, 47.10219 ], [ 37.425137, 47.022221 ], [ 36.759855, 46.6987 ], [ 35.823685, 46.645964 ], [ 34.962342, 46.273197 ], [ 35.020788, 45.651219 ], [ 35.510009, 45.409993 ], [ 36.529998, 45.46999 ], [ 36.334713, 45.113216 ], [ 35.239999, 44.939996 ], [ 33.882511, 44.361479 ], [ 33.326421, 44.564877 ], [ 33.546924, 45.034771 ], [ 32.454174, 45.327466 ], [ 32.630804, 45.519186 ], [ 33.588162, 45.851569 ], [ 33.298567, 46.080598 ], [ 31.74414, 46.333348 ], [ 31.675307, 46.706245 ], [ 30.748749, 46.5831 ], [ 30.377609, 46.03241 ], [ 29.603289, 45.293308 ], [ 29.149725, 45.464925 ], [ 28.679779, 45.304031 ], [ 28.233554, 45.488283 ], [ 28.485269, 45.596907 ], [ 28.659987, 45.939987 ], [ 28.933717, 46.25883 ], [ 28.862972, 46.437889 ], [ 29.072107, 46.517678 ], [ 29.170654, 46.379262 ], [ 29.759972, 46.349988 ], [ 30.024659, 46.423937 ], [ 29.83821, 46.525326 ], [ 29.908852, 46.674361 ], [ 29.559674, 46.928583 ], [ 29.415135, 47.346645 ], [ 29.050868, 47.510227 ], [ 29.122698, 47.849095 ], [ 28.670891, 48.118149 ], [ 28.259547, 48.155562 ], [ 27.522537, 48.467119 ], [ 26.857824, 48.368211 ], [ 26.619337, 48.220726 ], [ 26.19745, 48.220881 ], [ 25.945941, 47.987149 ], [ 25.207743, 47.891056 ], [ 24.866317, 47.737526 ], [ 24.402056, 47.981878 ], [ 23.760958, 47.985598 ], [ 23.142236, 48.096341 ], [ 22.710531, 47.882194 ], [ 22.64082, 48.15024 ], [ 22.085608, 48.422264 ], [ 22.280842, 48.825392 ], [ 22.558138, 49.085738 ], [ 22.776419, 49.027395 ], [ 22.51845, 49.476774 ], [ 23.426508, 50.308506 ], [ 23.922757, 50.424881 ], [ 24.029986, 50.705407 ], [ 23.527071, 51.578454 ], [ 24.005078, 51.617444 ], [ 24.553106, 51.888461 ], [ 25.327788, 51.910656 ], [ 26.337959, 51.832289 ], [ 27.454066, 51.592303 ], [ 28.241615, 51.572227 ], [ 28.617613, 51.427714 ], [ 28.992835, 51.602044 ], [ 29.254938, 51.368234 ], [ 30.157364, 51.416138 ], [ 30.555117, 51.319503 ], [ 30.619454, 51.822806 ], [ 30.927549, 52.042353 ], [ 31.785998, 52.101678 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/URY.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"URY","properties":{"name":"Uruguay"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.976026,-30.109686],[-55.973245,-30.883076],[-55.60151,-30.853879],[-54.572452,-31.494511],[-53.787952,-32.047243],[-53.209589,-32.727666],[-53.650544,-33.202004],[-53.373662,-33.768378],[-53.806426,-34.396815],[-54.935866,-34.952647],[-55.67409,-34.752659],[-56.215297,-34.859836],[-57.139685,-34.430456],[-57.817861,-34.462547],[-58.427074,-33.909454],[-58.349611,-33.263189],[-58.132648,-33.040567],[-58.14244,-32.044504],[-57.874937,-31.016556],[-57.625133,-30.216295]]]}} ]} ================================================ FILE: test/fixtures/world/URY_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -31.95216224 ], [ -56.25, -27.05912578 ], [ -50.625, -27.05912578 ], [ -50.625, -31.95216224 ], [ -56.25, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -36.59788913 ], [ -56.25, -31.95216224 ], [ -50.625, -31.95216224 ], [ -50.625, -36.59788913 ], [ -56.25, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -31.95216224 ], [ -61.875, -27.05912578 ], [ -56.25, -27.05912578 ], [ -56.25, -31.95216224 ], [ -61.875, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -36.59788913 ], [ -61.875, -31.95216224 ], [ -56.25, -31.95216224 ], [ -56.25, -36.59788913 ], [ -61.875, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.625133, -30.216295 ], [ -56.976026, -30.109686 ], [ -55.973245, -30.883076 ], [ -55.60151, -30.853879 ], [ -54.572452, -31.494511 ], [ -53.787952, -32.047243 ], [ -53.209589, -32.727666 ], [ -53.650544, -33.202004 ], [ -53.373662, -33.768378 ], [ -53.806426, -34.396815 ], [ -54.935866, -34.952647 ], [ -55.67409, -34.752659 ], [ -56.215297, -34.859836 ], [ -57.139685, -34.430456 ], [ -57.817861, -34.462547 ], [ -58.427074, -33.909454 ], [ -58.349611, -33.263189 ], [ -58.132648, -33.040567 ], [ -58.14244, -32.044504 ], [ -57.874937, -31.016556 ], [ -57.625133, -30.216295 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/USA.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"USA","properties":{"name":"United States of America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.54211,19.08348],[-155.68817,18.91619],[-155.93665,19.05939],[-155.90806,19.33888],[-156.07347,19.70294],[-156.02368,19.81422],[-155.85008,19.97729],[-155.91907,20.17395],[-155.86108,20.26721],[-155.78505,20.2487],[-155.40214,20.07975],[-155.22452,19.99302],[-155.06226,19.8591],[-154.80741,19.50871],[-154.83147,19.45328],[-155.22217,19.23972],[-155.54211,19.08348]]],[[[-156.07926,20.64397],[-156.41445,20.57241],[-156.58673,20.783],[-156.70167,20.8643],[-156.71055,20.92676],[-156.61258,21.01249],[-156.25711,20.91745],[-155.99566,20.76404],[-156.07926,20.64397]]],[[[-156.75824,21.17684],[-156.78933,21.06873],[-157.32521,21.09777],[-157.25027,21.21958],[-156.75824,21.17684]]],[[[-157.65283,21.32217],[-157.70703,21.26442],[-157.7786,21.27729],[-158.12667,21.31244],[-158.2538,21.53919],[-158.29265,21.57912],[-158.0252,21.71696],[-157.94161,21.65272],[-157.65283,21.32217]]],[[[-159.34512,21.982],[-159.46372,21.88299],[-159.80051,22.06533],[-159.74877,22.1382],[-159.5962,22.23618],[-159.36569,22.21494],[-159.34512,21.982]]],[[[-94.81758,49.38905],[-94.64,48.84],[-94.32914,48.67074],[-93.63087,48.60926],[-92.61,48.45],[-91.64,48.14],[-90.83,48.27],[-89.6,48.01],[-89.272917,48.019808],[-88.378114,48.302918],[-87.439793,47.94],[-86.461991,47.553338],[-85.652363,47.220219],[-84.87608,46.900083],[-84.779238,46.637102],[-84.543749,46.538684],[-84.6049,46.4396],[-84.3367,46.40877],[-84.14212,46.512226],[-84.091851,46.275419],[-83.890765,46.116927],[-83.616131,46.116927],[-83.469551,45.994686],[-83.592851,45.816894],[-82.550925,45.347517],[-82.337763,44.44],[-82.137642,43.571088],[-82.43,42.98],[-82.9,42.43],[-83.12,42.08],[-83.142,41.975681],[-83.02981,41.832796],[-82.690089,41.675105],[-82.439278,41.675105],[-81.277747,42.209026],[-80.247448,42.3662],[-78.939362,42.863611],[-78.92,42.965],[-79.01,43.27],[-79.171674,43.466339],[-78.72028,43.625089],[-77.737885,43.629056],[-76.820034,43.628784],[-76.5,44.018459],[-76.375,44.09631],[-75.31821,44.81645],[-74.867,45.00048],[-73.34783,45.00738],[-71.50506,45.0082],[-71.405,45.255],[-71.08482,45.30524],[-70.66,45.46],[-70.305,45.915],[-69.99997,46.69307],[-69.237216,47.447781],[-68.905,47.185],[-68.23444,47.35486],[-67.79046,47.06636],[-67.79134,45.70281],[-67.13741,45.13753],[-66.96466,44.8097],[-68.03252,44.3252],[-69.06,43.98],[-70.11617,43.68405],[-70.645476,43.090238],[-70.81489,42.8653],[-70.825,42.335],[-70.495,41.805],[-70.08,41.78],[-70.185,42.145],[-69.88497,41.92283],[-69.96503,41.63717],[-70.64,41.475],[-71.12039,41.49445],[-71.86,41.32],[-72.295,41.27],[-72.87643,41.22065],[-73.71,40.931102],[-72.24126,41.11948],[-71.945,40.93],[-73.345,40.63],[-73.982,40.628],[-73.952325,40.75075],[-74.25671,40.47351],[-73.96244,40.42763],[-74.17838,39.70926],[-74.90604,38.93954],[-74.98041,39.1964],[-75.20002,39.24845],[-75.52805,39.4985],[-75.32,38.96],[-75.071835,38.782032],[-75.05673,38.40412],[-75.37747,38.01551],[-75.94023,37.21689],[-76.03127,37.2566],[-75.72205,37.93705],[-76.23287,38.319215],[-76.35,39.15],[-76.542725,38.717615],[-76.32933,38.08326],[-76.989998,38.239992],[-76.30162,37.917945],[-76.25874,36.9664],[-75.9718,36.89726],[-75.86804,36.55125],[-75.72749,35.55074],[-76.36318,34.80854],[-77.397635,34.51201],[-78.05496,33.92547],[-78.55435,33.86133],[-79.06067,33.49395],[-79.20357,33.15839],[-80.301325,32.509355],[-80.86498,32.0333],[-81.33629,31.44049],[-81.49042,30.72999],[-81.31371,30.03552],[-80.98,29.18],[-80.535585,28.47213],[-80.53,28.04],[-80.056539,26.88],[-80.088015,26.205765],[-80.13156,25.816775],[-80.38103,25.20616],[-80.68,25.08],[-81.17213,25.20126],[-81.33,25.64],[-81.71,25.87],[-82.24,26.73],[-82.70515,27.49504],[-82.85526,27.88624],[-82.65,28.55],[-82.93,29.1],[-83.70959,29.93656],[-84.1,30.09],[-85.10882,29.63615],[-85.28784,29.68612],[-85.7731,30.15261],[-86.4,30.4],[-87.53036,30.27433],[-88.41782,30.3849],[-89.18049,30.31598],[-89.593831,30.159994],[-89.413735,29.89419],[-89.43,29.48864],[-89.21767,29.29108],[-89.40823,29.15961],[-89.77928,29.30714],[-90.15463,29.11743],[-90.880225,29.148535],[-91.626785,29.677],[-92.49906,29.5523],[-93.22637,29.78375],[-93.84842,29.71363],[-94.69,29.48],[-95.60026,28.73863],[-96.59404,28.30748],[-97.14,27.83],[-97.37,27.38],[-97.38,26.69],[-97.33,26.21],[-97.14,25.87],[-97.53,25.84],[-98.24,26.06],[-99.02,26.37],[-99.3,26.84],[-99.52,27.54],[-100.11,28.11],[-100.45584,28.69612],[-100.9576,29.38071],[-101.6624,29.7793],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.45697,29.57196],[-104.70575,30.12173],[-105.03737,30.64402],[-105.63159,31.08383],[-106.1429,31.39995],[-106.50759,31.75452],[-108.24,31.754854],[-108.24194,31.34222],[-109.035,31.34194],[-111.02361,31.33472],[-113.30498,32.03914],[-114.815,32.52528],[-114.72139,32.72083],[-115.99135,32.61239],[-117.12776,32.53534],[-117.295938,33.046225],[-117.944,33.621236],[-118.410602,33.740909],[-118.519895,34.027782],[-119.081,34.078],[-119.438841,34.348477],[-120.36778,34.44711],[-120.62286,34.60855],[-120.74433,35.15686],[-121.71457,36.16153],[-122.54747,37.55176],[-122.51201,37.78339],[-122.95319,38.11371],[-123.7272,38.95166],[-123.86517,39.76699],[-124.39807,40.3132],[-124.17886,41.14202],[-124.2137,41.99964],[-124.53284,42.76599],[-124.14214,43.70838],[-124.020535,44.615895],[-123.89893,45.52341],[-124.079635,46.86475],[-124.39567,47.72017],[-124.68721,48.184433],[-124.566101,48.379715],[-123.12,48.04],[-122.58736,47.096],[-122.34,47.36],[-122.5,48.18],[-122.84,49],[-120,49],[-117.03121,49],[-116.04818,49],[-113,49],[-110.05,49],[-107.05,49],[-104.04826,48.99986],[-100.65,49],[-97.22872,49.0007],[-95.15907,49],[-95.15609,49.38425],[-94.81758,49.38905]]],[[[-153.006314,57.115842],[-154.00509,56.734677],[-154.516403,56.992749],[-154.670993,57.461196],[-153.76278,57.816575],[-153.228729,57.968968],[-152.564791,57.901427],[-152.141147,57.591059],[-153.006314,57.115842]]],[[[-165.579164,59.909987],[-166.19277,59.754441],[-166.848337,59.941406],[-167.455277,60.213069],[-166.467792,60.38417],[-165.67443,60.293607],[-165.579164,59.909987]]],[[[-171.731657,63.782515],[-171.114434,63.592191],[-170.491112,63.694975],[-169.682505,63.431116],[-168.689439,63.297506],[-168.771941,63.188598],[-169.52944,62.976931],[-170.290556,63.194438],[-170.671386,63.375822],[-171.553063,63.317789],[-171.791111,63.405846],[-171.731657,63.782515]]],[[[-155.06779,71.147776],[-154.344165,70.696409],[-153.900006,70.889989],[-152.210006,70.829992],[-152.270002,70.600006],[-150.739992,70.430017],[-149.720003,70.53001],[-147.613362,70.214035],[-145.68999,70.12001],[-144.920011,69.989992],[-143.589446,70.152514],[-142.07251,69.851938],[-140.985988,69.711998],[-140.992499,66.000029],[-140.99777,60.306397],[-140.012998,60.276838],[-139.039,60.000007],[-138.34089,59.56211],[-137.4525,58.905],[-136.47972,59.46389],[-135.47583,59.78778],[-134.945,59.27056],[-134.27111,58.86111],[-133.355549,58.410285],[-132.73042,57.69289],[-131.70781,56.55212],[-130.00778,55.91583],[-129.979994,55.284998],[-130.53611,54.802753],[-131.085818,55.178906],[-131.967211,55.497776],[-132.250011,56.369996],[-133.539181,57.178887],[-134.078063,58.123068],[-135.038211,58.187715],[-136.628062,58.212209],[-137.800006,58.499995],[-139.867787,59.537762],[-140.825274,59.727517],[-142.574444,60.084447],[-143.958881,59.99918],[-145.925557,60.45861],[-147.114374,60.884656],[-148.224306,60.672989],[-148.018066,59.978329],[-148.570823,59.914173],[-149.727858,59.705658],[-150.608243,59.368211],[-151.716393,59.155821],[-151.859433,59.744984],[-151.409719,60.725803],[-150.346941,61.033588],[-150.621111,61.284425],[-151.895839,60.727198],[-152.57833,60.061657],[-154.019172,59.350279],[-153.287511,58.864728],[-154.232492,58.146374],[-155.307491,57.727795],[-156.308335,57.422774],[-156.556097,56.979985],[-158.117217,56.463608],[-158.433321,55.994154],[-159.603327,55.566686],[-160.28972,55.643581],[-161.223048,55.364735],[-162.237766,55.024187],[-163.069447,54.689737],[-164.785569,54.404173],[-164.942226,54.572225],[-163.84834,55.039431],[-162.870001,55.348043],[-161.804175,55.894986],[-160.563605,56.008055],[-160.07056,56.418055],[-158.684443,57.016675],[-158.461097,57.216921],[-157.72277,57.570001],[-157.550274,58.328326],[-157.041675,58.918885],[-158.194731,58.615802],[-158.517218,58.787781],[-159.058606,58.424186],[-159.711667,58.93139],[-159.981289,58.572549],[-160.355271,59.071123],[-161.355003,58.670838],[-161.968894,58.671665],[-162.054987,59.266925],[-161.874171,59.633621],[-162.518059,59.989724],[-163.818341,59.798056],[-164.662218,60.267484],[-165.346388,60.507496],[-165.350832,61.073895],[-166.121379,61.500019],[-165.734452,62.074997],[-164.919179,62.633076],[-164.562508,63.146378],[-163.753332,63.219449],[-163.067224,63.059459],[-162.260555,63.541936],[-161.53445,63.455817],[-160.772507,63.766108],[-160.958335,64.222799],[-161.518068,64.402788],[-160.777778,64.788604],[-161.391926,64.777235],[-162.45305,64.559445],[-162.757786,64.338605],[-163.546394,64.55916],[-164.96083,64.446945],[-166.425288,64.686672],[-166.845004,65.088896],[-168.11056,65.669997],[-166.705271,66.088318],[-164.47471,66.57666],[-163.652512,66.57666],[-163.788602,66.077207],[-161.677774,66.11612],[-162.489715,66.735565],[-163.719717,67.116395],[-164.430991,67.616338],[-165.390287,68.042772],[-166.764441,68.358877],[-166.204707,68.883031],[-164.430811,68.915535],[-163.168614,69.371115],[-162.930566,69.858062],[-161.908897,70.33333],[-160.934797,70.44769],[-159.039176,70.891642],[-158.119723,70.824721],[-156.580825,71.357764],[-155.06779,71.147776]]]]}} ]} ================================================ FILE: test/fixtures/world/USA_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 21.94304553 ], [ -101.25, 27.05912578 ], [ -95.625, 27.05912578 ], [ -95.625, 21.94304553 ], [ -101.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 27.05912578 ], [ -101.25, 31.95216224 ], [ -95.625, 31.95216224 ], [ -95.625, 27.05912578 ], [ -101.25, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 31.95216224 ], [ -101.25, 40.97989807 ], [ -90, 40.97989807 ], [ -90, 31.95216224 ], [ -101.25, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 40.97989807 ], [ -101.25, 48.92249926 ], [ -90, 48.92249926 ], [ -90, 40.97989807 ], [ -101.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.25, 48.92249926 ], [ -101.25, 52.48278022 ], [ -95.625, 52.48278022 ], [ -95.625, 48.92249926 ], [ -101.25, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.875, 27.05912578 ], [ -106.875, 31.95216224 ], [ -101.25, 31.95216224 ], [ -101.25, 27.05912578 ], [ -106.875, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.875, 48.92249926 ], [ -106.875, 52.48278022 ], [ -101.25, 52.48278022 ], [ -101.25, 48.92249926 ], [ -106.875, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 27.05912578 ], [ -112.5, 31.95216224 ], [ -106.875, 31.95216224 ], [ -106.875, 27.05912578 ], [ -112.5, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 31.95216224 ], [ -112.5, 40.97989807 ], [ -101.25, 40.97989807 ], [ -101.25, 31.95216224 ], [ -112.5, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 40.97989807 ], [ -112.5, 48.92249926 ], [ -101.25, 48.92249926 ], [ -101.25, 40.97989807 ], [ -112.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, 48.92249926 ], [ -112.5, 52.48278022 ], [ -106.875, 52.48278022 ], [ -106.875, 48.92249926 ], [ -112.5, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 27.05912578 ], [ -118.125, 31.95216224 ], [ -112.5, 31.95216224 ], [ -112.5, 27.05912578 ], [ -118.125, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.125, 48.92249926 ], [ -118.125, 52.48278022 ], [ -112.5, 52.48278022 ], [ -112.5, 48.92249926 ], [ -118.125, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 31.95216224 ], [ -123.75, 40.97989807 ], [ -112.5, 40.97989807 ], [ -112.5, 31.95216224 ], [ -123.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 40.97989807 ], [ -123.75, 48.92249926 ], [ -112.5, 48.92249926 ], [ -112.5, 40.97989807 ], [ -123.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.75, 48.92249926 ], [ -123.75, 52.48278022 ], [ -118.125, 52.48278022 ], [ -118.125, 48.92249926 ], [ -123.75, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.375, 36.59788913 ], [ -129.375, 40.97989807 ], [ -123.75, 40.97989807 ], [ -123.75, 36.59788913 ], [ -129.375, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.375, 40.97989807 ], [ -129.375, 45.08903556 ], [ -123.75, 45.08903556 ], [ -123.75, 40.97989807 ], [ -129.375, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -129.375, 45.08903556 ], [ -129.375, 48.92249926 ], [ -123.75, 48.92249926 ], [ -123.75, 45.08903556 ], [ -129.375, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -135, 52.48278022 ], [ -135, 55.77657302 ], [ -129.375, 55.77657302 ], [ -129.375, 52.48278022 ], [ -135, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -135, 55.77657302 ], [ -135, 58.81374172 ], [ -129.375, 58.81374172 ], [ -129.375, 55.77657302 ], [ -135, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -135, 58.81374172 ], [ -135, 61.60639637 ], [ -129.375, 61.60639637 ], [ -129.375, 58.81374172 ], [ -135, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.625, 55.77657302 ], [ -140.625, 58.81374172 ], [ -135, 58.81374172 ], [ -135, 55.77657302 ], [ -140.625, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.625, 58.81374172 ], [ -140.625, 61.60639637 ], [ -135, 61.60639637 ], [ -135, 58.81374172 ], [ -140.625, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.25, 58.81374172 ], [ -146.25, 61.60639637 ], [ -140.625, 61.60639637 ], [ -140.625, 58.81374172 ], [ -146.25, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.25, 61.60639637 ], [ -146.25, 64.1681069 ], [ -140.625, 64.1681069 ], [ -140.625, 61.60639637 ], [ -146.25, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.25, 64.1681069 ], [ -146.25, 66.51326044 ], [ -140.625, 66.51326044 ], [ -140.625, 64.1681069 ], [ -146.25, 64.1681069 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.25, 66.51326044 ], [ -146.25, 68.65655498 ], [ -140.625, 68.65655498 ], [ -140.625, 66.51326044 ], [ -146.25, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.25, 68.65655498 ], [ -146.25, 70.61261424 ], [ -140.625, 70.61261424 ], [ -140.625, 68.65655498 ], [ -146.25, 68.65655498 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -151.875, 58.81374172 ], [ -151.875, 61.60639637 ], [ -146.25, 61.60639637 ], [ -146.25, 58.81374172 ], [ -151.875, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.5, 16.63619188 ], [ -157.5, 21.94304553 ], [ -151.875, 21.94304553 ], [ -151.875, 16.63619188 ], [ -157.5, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.5, 55.77657302 ], [ -157.5, 58.81374172 ], [ -151.875, 58.81374172 ], [ -151.875, 55.77657302 ], [ -157.5, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.5, 58.81374172 ], [ -157.5, 61.60639637 ], [ -151.875, 61.60639637 ], [ -151.875, 58.81374172 ], [ -157.5, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.5, 61.60639637 ], [ -157.5, 66.51326044 ], [ -146.25, 66.51326044 ], [ -146.25, 61.60639637 ], [ -157.5, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.5, 66.51326044 ], [ -157.5, 70.61261424 ], [ -146.25, 70.61261424 ], [ -146.25, 66.51326044 ], [ -157.5, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.5, 70.61261424 ], [ -157.5, 72.39570571 ], [ -151.875, 72.39570571 ], [ -151.875, 70.61261424 ], [ -157.5, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.125, 16.63619188 ], [ -163.125, 21.94304553 ], [ -157.5, 21.94304553 ], [ -157.5, 16.63619188 ], [ -163.125, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.125, 21.94304553 ], [ -163.125, 27.05912578 ], [ -157.5, 27.05912578 ], [ -157.5, 21.94304553 ], [ -163.125, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.125, 52.48278022 ], [ -163.125, 55.77657302 ], [ -157.5, 55.77657302 ], [ -157.5, 52.48278022 ], [ -163.125, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.125, 55.77657302 ], [ -163.125, 58.81374172 ], [ -157.5, 58.81374172 ], [ -157.5, 55.77657302 ], [ -163.125, 55.77657302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.125, 58.81374172 ], [ -163.125, 61.60639637 ], [ -157.5, 61.60639637 ], [ -157.5, 58.81374172 ], [ -163.125, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.125, 70.61261424 ], [ -163.125, 72.39570571 ], [ -157.5, 72.39570571 ], [ -157.5, 70.61261424 ], [ -163.125, 70.61261424 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.75, 52.48278022 ], [ -168.75, 55.77657302 ], [ -163.125, 55.77657302 ], [ -163.125, 52.48278022 ], [ -168.75, 52.48278022 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.75, 58.81374172 ], [ -168.75, 61.60639637 ], [ -163.125, 61.60639637 ], [ -163.125, 58.81374172 ], [ -168.75, 58.81374172 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.75, 61.60639637 ], [ -168.75, 66.51326044 ], [ -157.5, 66.51326044 ], [ -157.5, 61.60639637 ], [ -168.75, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.75, 66.51326044 ], [ -168.75, 70.61261424 ], [ -157.5, 70.61261424 ], [ -157.5, 66.51326044 ], [ -168.75, 66.51326044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.375, 61.60639637 ], [ -174.375, 64.1681069 ], [ -168.75, 64.1681069 ], [ -168.75, 61.60639637 ], [ -174.375, 61.60639637 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 40.97989807 ], [ -67.5, 45.08903556 ], [ -61.875, 45.08903556 ], [ -61.875, 40.97989807 ], [ -67.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 45.08903556 ], [ -67.5, 48.92249926 ], [ -61.875, 48.92249926 ], [ -61.875, 45.08903556 ], [ -67.5, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 36.59788913 ], [ -73.125, 40.97989807 ], [ -67.5, 40.97989807 ], [ -67.5, 36.59788913 ], [ -73.125, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 40.97989807 ], [ -73.125, 45.08903556 ], [ -67.5, 45.08903556 ], [ -67.5, 40.97989807 ], [ -73.125, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 45.08903556 ], [ -73.125, 48.92249926 ], [ -67.5, 48.92249926 ], [ -67.5, 45.08903556 ], [ -73.125, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 31.95216224 ], [ -78.75, 36.59788913 ], [ -73.125, 36.59788913 ], [ -73.125, 31.95216224 ], [ -78.75, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 36.59788913 ], [ -78.75, 40.97989807 ], [ -73.125, 40.97989807 ], [ -73.125, 36.59788913 ], [ -78.75, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 40.97989807 ], [ -78.75, 45.08903556 ], [ -73.125, 45.08903556 ], [ -73.125, 40.97989807 ], [ -78.75, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 21.94304553 ], [ -84.375, 27.05912578 ], [ -78.75, 27.05912578 ], [ -78.75, 21.94304553 ], [ -84.375, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375, 27.05912578 ], [ -84.375, 31.95216224 ], [ -78.75, 31.95216224 ], [ -78.75, 27.05912578 ], [ -84.375, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 27.05912578 ], [ -90, 31.95216224 ], [ -84.375, 31.95216224 ], [ -84.375, 27.05912578 ], [ -90, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 31.95216224 ], [ -90, 40.97989807 ], [ -78.75, 40.97989807 ], [ -78.75, 31.95216224 ], [ -90, 31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -90, 40.97989807 ], [ -90, 48.92249926 ], [ -78.75, 48.92249926 ], [ -78.75, 40.97989807 ], [ -90, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 27.05912578 ], [ -95.625, 31.95216224 ], [ -90, 31.95216224 ], [ -90, 27.05912578 ], [ -95.625, 27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625, 48.92249926 ], [ -95.625, 52.48278022 ], [ -90, 52.48278022 ], [ -90, 48.92249926 ], [ -95.625, 48.92249926 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.54211, 19.08348 ], [ -155.68817, 18.91619 ], [ -155.93665, 19.05939 ], [ -155.90806, 19.33888 ], [ -156.07347, 19.70294 ], [ -156.02368, 19.81422 ], [ -155.85008, 19.97729 ], [ -155.91907, 20.17395 ], [ -155.86108, 20.26721 ], [ -155.78505, 20.2487 ], [ -155.40214, 20.07975 ], [ -155.22452, 19.99302 ], [ -155.06226, 19.8591 ], [ -154.80741, 19.50871 ], [ -154.83147, 19.45328 ], [ -155.22217, 19.23972 ], [ -155.54211, 19.08348 ] ] ], [ [ [ -156.07926, 20.64397 ], [ -156.41445, 20.57241 ], [ -156.58673, 20.783 ], [ -156.70167, 20.8643 ], [ -156.71055, 20.92676 ], [ -156.61258, 21.01249 ], [ -156.25711, 20.91745 ], [ -155.99566, 20.76404 ], [ -156.07926, 20.64397 ] ] ], [ [ [ -156.75824, 21.17684 ], [ -156.78933, 21.06873 ], [ -157.32521, 21.09777 ], [ -157.25027, 21.21958 ], [ -156.75824, 21.17684 ] ] ], [ [ [ -157.65283, 21.32217 ], [ -157.70703, 21.26442 ], [ -157.7786, 21.27729 ], [ -158.12667, 21.31244 ], [ -158.2538, 21.53919 ], [ -158.29265, 21.57912 ], [ -158.0252, 21.71696 ], [ -157.94161, 21.65272 ], [ -157.65283, 21.32217 ] ] ], [ [ [ -159.34512, 21.982 ], [ -159.46372, 21.88299 ], [ -159.80051, 22.06533 ], [ -159.74877, 22.1382 ], [ -159.5962, 22.23618 ], [ -159.36569, 22.21494 ], [ -159.34512, 21.982 ] ] ], [ [ [ -94.81758, 49.38905 ], [ -94.64, 48.84 ], [ -94.32914, 48.67074 ], [ -93.63087, 48.60926 ], [ -92.61, 48.45 ], [ -91.64, 48.14 ], [ -90.83, 48.27 ], [ -89.6, 48.01 ], [ -89.272917, 48.019808 ], [ -88.378114, 48.302918 ], [ -87.439793, 47.94 ], [ -86.461991, 47.553338 ], [ -85.652363, 47.220219 ], [ -84.87608, 46.900083 ], [ -84.779238, 46.637102 ], [ -84.543749, 46.538684 ], [ -84.6049, 46.4396 ], [ -84.3367, 46.40877 ], [ -84.14212, 46.512226 ], [ -84.091851, 46.275419 ], [ -83.890765, 46.116927 ], [ -83.616131, 46.116927 ], [ -83.469551, 45.994686 ], [ -83.592851, 45.816894 ], [ -82.550925, 45.347517 ], [ -82.337763, 44.44 ], [ -82.137642, 43.571088 ], [ -82.43, 42.98 ], [ -82.9, 42.43 ], [ -83.12, 42.08 ], [ -83.142, 41.975681 ], [ -83.02981, 41.832796 ], [ -82.690089, 41.675105 ], [ -82.439278, 41.675105 ], [ -81.277747, 42.209026 ], [ -80.247448, 42.3662 ], [ -78.939362, 42.863611 ], [ -78.92, 42.965 ], [ -79.01, 43.27 ], [ -79.171674, 43.466339 ], [ -78.72028, 43.625089 ], [ -77.737885, 43.629056 ], [ -76.820034, 43.628784 ], [ -76.5, 44.018459 ], [ -76.375, 44.09631 ], [ -75.31821, 44.81645 ], [ -74.867, 45.00048 ], [ -73.34783, 45.00738 ], [ -71.50506, 45.0082 ], [ -71.405, 45.255 ], [ -71.08482, 45.30524 ], [ -70.66, 45.46 ], [ -70.305, 45.915 ], [ -69.99997, 46.69307 ], [ -69.237216, 47.447781 ], [ -68.905, 47.185 ], [ -68.23444, 47.35486 ], [ -67.79046, 47.06636 ], [ -67.79134, 45.70281 ], [ -67.13741, 45.13753 ], [ -66.96466, 44.8097 ], [ -68.03252, 44.3252 ], [ -69.06, 43.98 ], [ -70.11617, 43.68405 ], [ -70.645476, 43.090238 ], [ -70.81489, 42.8653 ], [ -70.825, 42.335 ], [ -70.495, 41.805 ], [ -70.08, 41.78 ], [ -70.185, 42.145 ], [ -69.88497, 41.92283 ], [ -69.96503, 41.63717 ], [ -70.64, 41.475 ], [ -71.12039, 41.49445 ], [ -71.86, 41.32 ], [ -72.295, 41.27 ], [ -72.87643, 41.22065 ], [ -73.71, 40.931102 ], [ -72.24126, 41.11948 ], [ -71.945, 40.93 ], [ -73.345, 40.63 ], [ -73.982, 40.628 ], [ -73.952325, 40.75075 ], [ -74.25671, 40.47351 ], [ -73.96244, 40.42763 ], [ -74.17838, 39.70926 ], [ -74.90604, 38.93954 ], [ -74.98041, 39.1964 ], [ -75.20002, 39.24845 ], [ -75.52805, 39.4985 ], [ -75.32, 38.96 ], [ -75.071835, 38.782032 ], [ -75.05673, 38.40412 ], [ -75.37747, 38.01551 ], [ -75.94023, 37.21689 ], [ -76.03127, 37.2566 ], [ -75.72205, 37.93705 ], [ -76.23287, 38.319215 ], [ -76.35, 39.15 ], [ -76.542725, 38.717615 ], [ -76.32933, 38.08326 ], [ -76.989998, 38.239992 ], [ -76.30162, 37.917945 ], [ -76.25874, 36.9664 ], [ -75.9718, 36.89726 ], [ -75.86804, 36.55125 ], [ -75.72749, 35.55074 ], [ -76.36318, 34.80854 ], [ -77.397635, 34.51201 ], [ -78.05496, 33.92547 ], [ -78.55435, 33.86133 ], [ -79.06067, 33.49395 ], [ -79.20357, 33.15839 ], [ -80.301325, 32.509355 ], [ -80.86498, 32.0333 ], [ -81.33629, 31.44049 ], [ -81.49042, 30.72999 ], [ -81.31371, 30.03552 ], [ -80.98, 29.18 ], [ -80.535585, 28.47213 ], [ -80.53, 28.04 ], [ -80.056539, 26.88 ], [ -80.088015, 26.205765 ], [ -80.13156, 25.816775 ], [ -80.38103, 25.20616 ], [ -80.68, 25.08 ], [ -81.17213, 25.20126 ], [ -81.33, 25.64 ], [ -81.71, 25.87 ], [ -82.24, 26.73 ], [ -82.70515, 27.49504 ], [ -82.85526, 27.88624 ], [ -82.65, 28.55 ], [ -82.93, 29.1 ], [ -83.70959, 29.93656 ], [ -84.1, 30.09 ], [ -85.10882, 29.63615 ], [ -85.28784, 29.68612 ], [ -85.7731, 30.15261 ], [ -86.4, 30.4 ], [ -87.53036, 30.27433 ], [ -88.41782, 30.3849 ], [ -89.18049, 30.31598 ], [ -89.593831, 30.159994 ], [ -89.413735, 29.89419 ], [ -89.43, 29.48864 ], [ -89.21767, 29.29108 ], [ -89.40823, 29.15961 ], [ -89.77928, 29.30714 ], [ -90.15463, 29.11743 ], [ -90.880225, 29.148535 ], [ -91.626785, 29.677 ], [ -92.49906, 29.5523 ], [ -93.22637, 29.78375 ], [ -93.84842, 29.71363 ], [ -94.69, 29.48 ], [ -95.60026, 28.73863 ], [ -96.59404, 28.30748 ], [ -97.14, 27.83 ], [ -97.37, 27.38 ], [ -97.38, 26.69 ], [ -97.33, 26.21 ], [ -97.14, 25.87 ], [ -97.53, 25.84 ], [ -98.24, 26.06 ], [ -99.02, 26.37 ], [ -99.3, 26.84 ], [ -99.52, 27.54 ], [ -100.11, 28.11 ], [ -100.45584, 28.69612 ], [ -100.9576, 29.38071 ], [ -101.6624, 29.7793 ], [ -102.48, 29.76 ], [ -103.11, 28.97 ], [ -103.94, 29.27 ], [ -104.45697, 29.57196 ], [ -104.70575, 30.12173 ], [ -105.03737, 30.64402 ], [ -105.63159, 31.08383 ], [ -106.1429, 31.39995 ], [ -106.50759, 31.75452 ], [ -108.24, 31.754854 ], [ -108.24194, 31.34222 ], [ -109.035, 31.34194 ], [ -111.02361, 31.33472 ], [ -113.30498, 32.03914 ], [ -114.815, 32.52528 ], [ -114.72139, 32.72083 ], [ -115.99135, 32.61239 ], [ -117.12776, 32.53534 ], [ -117.295938, 33.046225 ], [ -117.944, 33.621236 ], [ -118.410602, 33.740909 ], [ -118.519895, 34.027782 ], [ -119.081, 34.078 ], [ -119.438841, 34.348477 ], [ -120.36778, 34.44711 ], [ -120.62286, 34.60855 ], [ -120.74433, 35.15686 ], [ -121.71457, 36.16153 ], [ -122.54747, 37.55176 ], [ -122.51201, 37.78339 ], [ -122.95319, 38.11371 ], [ -123.7272, 38.95166 ], [ -123.86517, 39.76699 ], [ -124.39807, 40.3132 ], [ -124.17886, 41.14202 ], [ -124.2137, 41.99964 ], [ -124.53284, 42.76599 ], [ -124.14214, 43.70838 ], [ -124.020535, 44.615895 ], [ -123.89893, 45.52341 ], [ -124.079635, 46.86475 ], [ -124.39567, 47.72017 ], [ -124.68721, 48.184433 ], [ -124.566101, 48.379715 ], [ -123.12, 48.04 ], [ -122.58736, 47.096 ], [ -122.34, 47.36 ], [ -122.5, 48.18 ], [ -122.84, 49 ], [ -120, 49 ], [ -117.03121, 49 ], [ -116.04818, 49 ], [ -113, 49 ], [ -110.05, 49 ], [ -107.05, 49 ], [ -104.04826, 48.99986 ], [ -100.65, 49 ], [ -97.22872, 49.0007 ], [ -95.15907, 49 ], [ -95.15609, 49.38425 ], [ -94.81758, 49.38905 ] ] ], [ [ [ -153.006314, 57.115842 ], [ -154.00509, 56.734677 ], [ -154.516403, 56.992749 ], [ -154.670993, 57.461196 ], [ -153.76278, 57.816575 ], [ -153.228729, 57.968968 ], [ -152.564791, 57.901427 ], [ -152.141147, 57.591059 ], [ -153.006314, 57.115842 ] ] ], [ [ [ -165.579164, 59.909987 ], [ -166.19277, 59.754441 ], [ -166.848337, 59.941406 ], [ -167.455277, 60.213069 ], [ -166.467792, 60.38417 ], [ -165.67443, 60.293607 ], [ -165.579164, 59.909987 ] ] ], [ [ [ -171.731657, 63.782515 ], [ -171.114434, 63.592191 ], [ -170.491112, 63.694975 ], [ -169.682505, 63.431116 ], [ -168.689439, 63.297506 ], [ -168.771941, 63.188598 ], [ -169.52944, 62.976931 ], [ -170.290556, 63.194438 ], [ -170.671386, 63.375822 ], [ -171.553063, 63.317789 ], [ -171.791111, 63.405846 ], [ -171.731657, 63.782515 ] ] ], [ [ [ -155.06779, 71.147776 ], [ -154.344165, 70.696409 ], [ -153.900006, 70.889989 ], [ -152.210006, 70.829992 ], [ -152.270002, 70.600006 ], [ -150.739992, 70.430017 ], [ -149.720003, 70.53001 ], [ -147.613362, 70.214035 ], [ -145.68999, 70.12001 ], [ -144.920011, 69.989992 ], [ -143.589446, 70.152514 ], [ -142.07251, 69.851938 ], [ -140.985988, 69.711998 ], [ -140.992499, 66.000029 ], [ -140.99777, 60.306397 ], [ -140.012998, 60.276838 ], [ -139.039, 60.000007 ], [ -138.34089, 59.56211 ], [ -137.4525, 58.905 ], [ -136.47972, 59.46389 ], [ -135.47583, 59.78778 ], [ -134.945, 59.27056 ], [ -134.27111, 58.86111 ], [ -133.355549, 58.410285 ], [ -132.73042, 57.69289 ], [ -131.70781, 56.55212 ], [ -130.00778, 55.91583 ], [ -129.979994, 55.284998 ], [ -130.53611, 54.802753 ], [ -131.085818, 55.178906 ], [ -131.967211, 55.497776 ], [ -132.250011, 56.369996 ], [ -133.539181, 57.178887 ], [ -134.078063, 58.123068 ], [ -135.038211, 58.187715 ], [ -136.628062, 58.212209 ], [ -137.800006, 58.499995 ], [ -139.867787, 59.537762 ], [ -140.825274, 59.727517 ], [ -142.574444, 60.084447 ], [ -143.958881, 59.99918 ], [ -145.925557, 60.45861 ], [ -147.114374, 60.884656 ], [ -148.224306, 60.672989 ], [ -148.018066, 59.978329 ], [ -148.570823, 59.914173 ], [ -149.727858, 59.705658 ], [ -150.608243, 59.368211 ], [ -151.716393, 59.155821 ], [ -151.859433, 59.744984 ], [ -151.409719, 60.725803 ], [ -150.346941, 61.033588 ], [ -150.621111, 61.284425 ], [ -151.895839, 60.727198 ], [ -152.57833, 60.061657 ], [ -154.019172, 59.350279 ], [ -153.287511, 58.864728 ], [ -154.232492, 58.146374 ], [ -155.307491, 57.727795 ], [ -156.308335, 57.422774 ], [ -156.556097, 56.979985 ], [ -158.117217, 56.463608 ], [ -158.433321, 55.994154 ], [ -159.603327, 55.566686 ], [ -160.28972, 55.643581 ], [ -161.223048, 55.364735 ], [ -162.237766, 55.024187 ], [ -163.069447, 54.689737 ], [ -164.785569, 54.404173 ], [ -164.942226, 54.572225 ], [ -163.84834, 55.039431 ], [ -162.870001, 55.348043 ], [ -161.804175, 55.894986 ], [ -160.563605, 56.008055 ], [ -160.07056, 56.418055 ], [ -158.684443, 57.016675 ], [ -158.461097, 57.216921 ], [ -157.72277, 57.570001 ], [ -157.550274, 58.328326 ], [ -157.041675, 58.918885 ], [ -158.194731, 58.615802 ], [ -158.517218, 58.787781 ], [ -159.058606, 58.424186 ], [ -159.711667, 58.93139 ], [ -159.981289, 58.572549 ], [ -160.355271, 59.071123 ], [ -161.355003, 58.670838 ], [ -161.968894, 58.671665 ], [ -162.054987, 59.266925 ], [ -161.874171, 59.633621 ], [ -162.518059, 59.989724 ], [ -163.818341, 59.798056 ], [ -164.662218, 60.267484 ], [ -165.346388, 60.507496 ], [ -165.350832, 61.073895 ], [ -166.121379, 61.500019 ], [ -165.734452, 62.074997 ], [ -164.919179, 62.633076 ], [ -164.562508, 63.146378 ], [ -163.753332, 63.219449 ], [ -163.067224, 63.059459 ], [ -162.260555, 63.541936 ], [ -161.53445, 63.455817 ], [ -160.772507, 63.766108 ], [ -160.958335, 64.222799 ], [ -161.518068, 64.402788 ], [ -160.777778, 64.788604 ], [ -161.391926, 64.777235 ], [ -162.45305, 64.559445 ], [ -162.757786, 64.338605 ], [ -163.546394, 64.55916 ], [ -164.96083, 64.446945 ], [ -166.425288, 64.686672 ], [ -166.845004, 65.088896 ], [ -168.11056, 65.669997 ], [ -166.705271, 66.088318 ], [ -164.47471, 66.57666 ], [ -163.652512, 66.57666 ], [ -163.788602, 66.077207 ], [ -161.677774, 66.11612 ], [ -162.489715, 66.735565 ], [ -163.719717, 67.116395 ], [ -164.430991, 67.616338 ], [ -165.390287, 68.042772 ], [ -166.764441, 68.358877 ], [ -166.204707, 68.883031 ], [ -164.430811, 68.915535 ], [ -163.168614, 69.371115 ], [ -162.930566, 69.858062 ], [ -161.908897, 70.33333 ], [ -160.934797, 70.44769 ], [ -159.039176, 70.891642 ], [ -158.119723, 70.824721 ], [ -156.580825, 71.357764 ], [ -155.06779, 71.147776 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/UZB.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"UZB","properties":{"name":"Uzbekistan"},"geometry":{"type":"Polygon","coordinates":[[[66.518607,37.362784],[66.54615,37.974685],[65.215999,38.402695],[64.170223,38.892407],[63.518015,39.363257],[62.37426,40.053886],[61.882714,41.084857],[61.547179,41.26637],[60.465953,41.220327],[60.083341,41.425146],[59.976422,42.223082],[58.629011,42.751551],[57.78653,42.170553],[56.932215,41.826026],[57.096391,41.32231],[55.968191,41.308642],[55.928917,44.995858],[58.503127,45.586804],[58.689989,45.500014],[60.239972,44.784037],[61.05832,44.405817],[62.0133,43.504477],[63.185787,43.650075],[64.900824,43.728081],[66.098012,42.99766],[66.023392,41.994646],[66.510649,41.987644],[66.714047,41.168444],[67.985856,41.135991],[68.259896,40.662325],[68.632483,40.668681],[69.070027,41.384244],[70.388965,42.081308],[70.962315,42.266154],[71.259248,42.167711],[70.420022,41.519998],[71.157859,41.143587],[71.870115,41.3929],[73.055417,40.866033],[71.774875,40.145844],[71.014198,40.244366],[70.601407,40.218527],[70.45816,40.496495],[70.666622,40.960213],[69.329495,40.727824],[69.011633,40.086158],[68.536416,39.533453],[67.701429,39.580478],[67.44222,39.140144],[68.176025,38.901553],[68.392033,38.157025],[67.83,37.144994],[67.075782,37.356144],[66.518607,37.362784]]]}} ]} ================================================ FILE: test/fixtures/world/UZB_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625, 40.97989807 ], [ 50.625, 45.08903556 ], [ 56.25, 45.08903556 ], [ 56.25, 40.97989807 ], [ 50.625, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 40.97989807 ], [ 56.25, 45.08903556 ], [ 61.875, 45.08903556 ], [ 61.875, 40.97989807 ], [ 56.25, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.25, 45.08903556 ], [ 56.25, 48.92249926 ], [ 61.875, 48.92249926 ], [ 61.875, 45.08903556 ], [ 56.25, 45.08903556 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 36.59788913 ], [ 61.875, 40.97989807 ], [ 67.5, 40.97989807 ], [ 67.5, 36.59788913 ], [ 61.875, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875, 40.97989807 ], [ 61.875, 45.08903556 ], [ 67.5, 45.08903556 ], [ 67.5, 40.97989807 ], [ 61.875, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 36.59788913 ], [ 67.5, 40.97989807 ], [ 73.125, 40.97989807 ], [ 73.125, 36.59788913 ], [ 67.5, 36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.5, 40.97989807 ], [ 67.5, 45.08903556 ], [ 73.125, 45.08903556 ], [ 73.125, 40.97989807 ], [ 67.5, 40.97989807 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.518607, 37.362784 ], [ 66.54615, 37.974685 ], [ 65.215999, 38.402695 ], [ 64.170223, 38.892407 ], [ 63.518015, 39.363257 ], [ 62.37426, 40.053886 ], [ 61.882714, 41.084857 ], [ 61.547179, 41.26637 ], [ 60.465953, 41.220327 ], [ 60.083341, 41.425146 ], [ 59.976422, 42.223082 ], [ 58.629011, 42.751551 ], [ 57.78653, 42.170553 ], [ 56.932215, 41.826026 ], [ 57.096391, 41.32231 ], [ 55.968191, 41.308642 ], [ 55.928917, 44.995858 ], [ 58.503127, 45.586804 ], [ 58.689989, 45.500014 ], [ 60.239972, 44.784037 ], [ 61.05832, 44.405817 ], [ 62.0133, 43.504477 ], [ 63.185787, 43.650075 ], [ 64.900824, 43.728081 ], [ 66.098012, 42.99766 ], [ 66.023392, 41.994646 ], [ 66.510649, 41.987644 ], [ 66.714047, 41.168444 ], [ 67.985856, 41.135991 ], [ 68.259896, 40.662325 ], [ 68.632483, 40.668681 ], [ 69.070027, 41.384244 ], [ 70.388965, 42.081308 ], [ 70.962315, 42.266154 ], [ 71.259248, 42.167711 ], [ 70.420022, 41.519998 ], [ 71.157859, 41.143587 ], [ 71.870115, 41.3929 ], [ 73.055417, 40.866033 ], [ 71.774875, 40.145844 ], [ 71.014198, 40.244366 ], [ 70.601407, 40.218527 ], [ 70.45816, 40.496495 ], [ 70.666622, 40.960213 ], [ 69.329495, 40.727824 ], [ 69.011633, 40.086158 ], [ 68.536416, 39.533453 ], [ 67.701429, 39.580478 ], [ 67.44222, 39.140144 ], [ 68.176025, 38.901553 ], [ 68.392033, 38.157025 ], [ 67.83, 37.144994 ], [ 67.075782, 37.356144 ], [ 66.518607, 37.362784 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/VEN.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"VEN","properties":{"name":"Venezuela"},"geometry":{"type":"Polygon","coordinates":[[[-71.331584,11.776284],[-71.360006,11.539994],[-71.94705,11.423282],[-71.620868,10.96946],[-71.633064,10.446494],[-72.074174,9.865651],[-71.695644,9.072263],[-71.264559,9.137195],[-71.039999,9.859993],[-71.350084,10.211935],[-71.400623,10.968969],[-70.155299,11.375482],[-70.293843,11.846822],[-69.943245,12.162307],[-69.5843,11.459611],[-68.882999,11.443385],[-68.233271,10.885744],[-68.194127,10.554653],[-67.296249,10.545868],[-66.227864,10.648627],[-65.655238,10.200799],[-64.890452,10.077215],[-64.329479,10.389599],[-64.318007,10.641418],[-63.079322,10.701724],[-61.880946,10.715625],[-62.730119,10.420269],[-62.388512,9.948204],[-61.588767,9.873067],[-60.830597,9.38134],[-60.671252,8.580174],[-60.150096,8.602757],[-59.758285,8.367035],[-60.550588,7.779603],[-60.637973,7.415],[-60.295668,7.043911],[-60.543999,6.856584],[-61.159336,6.696077],[-61.139415,6.234297],[-61.410303,5.959068],[-60.733574,5.200277],[-60.601179,4.918098],[-60.966893,4.536468],[-62.08543,4.162124],[-62.804533,4.006965],[-63.093198,3.770571],[-63.888343,4.02053],[-64.628659,4.148481],[-64.816064,4.056445],[-64.368494,3.79721],[-64.408828,3.126786],[-64.269999,2.497006],[-63.422867,2.411068],[-63.368788,2.2009],[-64.083085,1.916369],[-64.199306,1.492855],[-64.611012,1.328731],[-65.354713,1.095282],[-65.548267,0.789254],[-66.325765,0.724452],[-66.876326,1.253361],[-67.181294,2.250638],[-67.447092,2.600281],[-67.809938,2.820655],[-67.303173,3.318454],[-67.337564,3.542342],[-67.621836,3.839482],[-67.823012,4.503937],[-67.744697,5.221129],[-67.521532,5.55687],[-67.34144,6.095468],[-67.695087,6.267318],[-68.265052,6.153268],[-68.985319,6.206805],[-69.38948,6.099861],[-70.093313,6.960376],[-70.674234,7.087785],[-71.960176,6.991615],[-72.198352,7.340431],[-72.444487,7.423785],[-72.479679,7.632506],[-72.360901,8.002638],[-72.439862,8.405275],[-72.660495,8.625288],[-72.78873,9.085027],[-73.304952,9.152],[-73.027604,9.73677],[-72.905286,10.450344],[-72.614658,10.821975],[-72.227575,11.108702],[-71.973922,11.608672],[-71.331584,11.776284]]]}} ]} ================================================ FILE: test/fixtures/world/VEN_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 0 ], [ -67.5, 11.17840187 ], [ -56.25, 11.17840187 ], [ -56.25, 0 ], [ -67.5, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 0 ], [ -73.125, 5.61598582 ], [ -67.5, 5.61598582 ], [ -67.5, 0 ], [ -73.125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 11.17840187 ], [ -73.125, 16.63619188 ], [ -67.5, 16.63619188 ], [ -67.5, 11.17840187 ], [ -73.125, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 5.61598582 ], [ -73.125, 11.17840187 ], [ -67.5, 11.17840187 ], [ -67.5, 5.61598582 ], [ -73.125, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.75, 5.61598582 ], [ -78.75, 11.17840187 ], [ -73.125, 11.17840187 ], [ -73.125, 5.61598582 ], [ -78.75, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.331584, 11.776284 ], [ -71.360006, 11.539994 ], [ -71.94705, 11.423282 ], [ -71.620868, 10.96946 ], [ -71.633064, 10.446494 ], [ -72.074174, 9.865651 ], [ -71.695644, 9.072263 ], [ -71.264559, 9.137195 ], [ -71.039999, 9.859993 ], [ -71.350084, 10.211935 ], [ -71.400623, 10.968969 ], [ -70.155299, 11.375482 ], [ -70.293843, 11.846822 ], [ -69.943245, 12.162307 ], [ -69.5843, 11.459611 ], [ -68.882999, 11.443385 ], [ -68.233271, 10.885744 ], [ -68.194127, 10.554653 ], [ -67.296249, 10.545868 ], [ -66.227864, 10.648627 ], [ -65.655238, 10.200799 ], [ -64.890452, 10.077215 ], [ -64.329479, 10.389599 ], [ -64.318007, 10.641418 ], [ -63.079322, 10.701724 ], [ -61.880946, 10.715625 ], [ -62.730119, 10.420269 ], [ -62.388512, 9.948204 ], [ -61.588767, 9.873067 ], [ -60.830597, 9.38134 ], [ -60.671252, 8.580174 ], [ -60.150096, 8.602757 ], [ -59.758285, 8.367035 ], [ -60.550588, 7.779603 ], [ -60.637973, 7.415 ], [ -60.295668, 7.043911 ], [ -60.543999, 6.856584 ], [ -61.159336, 6.696077 ], [ -61.139415, 6.234297 ], [ -61.410303, 5.959068 ], [ -60.733574, 5.200277 ], [ -60.601179, 4.918098 ], [ -60.966893, 4.536468 ], [ -62.08543, 4.162124 ], [ -62.804533, 4.006965 ], [ -63.093198, 3.770571 ], [ -63.888343, 4.02053 ], [ -64.628659, 4.148481 ], [ -64.816064, 4.056445 ], [ -64.368494, 3.79721 ], [ -64.408828, 3.126786 ], [ -64.269999, 2.497006 ], [ -63.422867, 2.411068 ], [ -63.368788, 2.2009 ], [ -64.083085, 1.916369 ], [ -64.199306, 1.492855 ], [ -64.611012, 1.328731 ], [ -65.354713, 1.095282 ], [ -65.548267, 0.789254 ], [ -66.325765, 0.724452 ], [ -66.876326, 1.253361 ], [ -67.181294, 2.250638 ], [ -67.447092, 2.600281 ], [ -67.809938, 2.820655 ], [ -67.303173, 3.318454 ], [ -67.337564, 3.542342 ], [ -67.621836, 3.839482 ], [ -67.823012, 4.503937 ], [ -67.744697, 5.221129 ], [ -67.521532, 5.55687 ], [ -67.34144, 6.095468 ], [ -67.695087, 6.267318 ], [ -68.265052, 6.153268 ], [ -68.985319, 6.206805 ], [ -69.38948, 6.099861 ], [ -70.093313, 6.960376 ], [ -70.674234, 7.087785 ], [ -71.960176, 6.991615 ], [ -72.198352, 7.340431 ], [ -72.444487, 7.423785 ], [ -72.479679, 7.632506 ], [ -72.360901, 8.002638 ], [ -72.439862, 8.405275 ], [ -72.660495, 8.625288 ], [ -72.78873, 9.085027 ], [ -73.304952, 9.152 ], [ -73.027604, 9.73677 ], [ -72.905286, 10.450344 ], [ -72.614658, 10.821975 ], [ -72.227575, 11.108702 ], [ -71.973922, 11.608672 ], [ -71.331584, 11.776284 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/VNM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"VNM","properties":{"name":"Vietnam"},"geometry":{"type":"Polygon","coordinates":[[[108.05018,21.55238],[106.715068,20.696851],[105.881682,19.75205],[105.662006,19.058165],[106.426817,18.004121],[107.361954,16.697457],[108.269495,16.079742],[108.877107,15.276691],[109.33527,13.426028],[109.200136,11.666859],[108.36613,11.008321],[107.220929,10.364484],[106.405113,9.53084],[105.158264,8.59976],[104.795185,9.241038],[105.076202,9.918491],[104.334335,10.486544],[105.199915,10.88931],[106.24967,10.961812],[105.810524,11.567615],[107.491403,12.337206],[107.614548,13.535531],[107.382727,14.202441],[107.564525,15.202173],[107.312706,15.908538],[106.556008,16.604284],[105.925762,17.485315],[105.094598,18.666975],[103.896532,19.265181],[104.183388,19.624668],[104.822574,19.886642],[104.435,20.758733],[103.203861,20.766562],[102.754896,21.675137],[102.170436,22.464753],[102.706992,22.708795],[103.504515,22.703757],[104.476858,22.81915],[105.329209,23.352063],[105.811247,22.976892],[106.725403,22.794268],[106.567273,22.218205],[107.04342,21.811899],[108.05018,21.55238]]]}} ]} ================================================ FILE: test/fixtures/world/VNM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 11.17840187 ], [ 101.25, 21.94304553 ], [ 112.5, 21.94304553 ], [ 112.5, 11.17840187 ], [ 101.25, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 21.94304553 ], [ 101.25, 27.05912578 ], [ 106.875, 27.05912578 ], [ 106.875, 21.94304553 ], [ 101.25, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.25, 5.61598582 ], [ 101.25, 11.17840187 ], [ 106.875, 11.17840187 ], [ 106.875, 5.61598582 ], [ 101.25, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 21.94304553 ], [ 106.875, 27.05912578 ], [ 112.5, 27.05912578 ], [ 112.5, 21.94304553 ], [ 106.875, 21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875, 5.61598582 ], [ 106.875, 11.17840187 ], [ 112.5, 11.17840187 ], [ 112.5, 5.61598582 ], [ 106.875, 5.61598582 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.05018, 21.55238 ], [ 106.715068, 20.696851 ], [ 105.881682, 19.75205 ], [ 105.662006, 19.058165 ], [ 106.426817, 18.004121 ], [ 107.361954, 16.697457 ], [ 108.269495, 16.079742 ], [ 108.877107, 15.276691 ], [ 109.33527, 13.426028 ], [ 109.200136, 11.666859 ], [ 108.36613, 11.008321 ], [ 107.220929, 10.364484 ], [ 106.405113, 9.53084 ], [ 105.158264, 8.59976 ], [ 104.795185, 9.241038 ], [ 105.076202, 9.918491 ], [ 104.334335, 10.486544 ], [ 105.199915, 10.88931 ], [ 106.24967, 10.961812 ], [ 105.810524, 11.567615 ], [ 107.491403, 12.337206 ], [ 107.614548, 13.535531 ], [ 107.382727, 14.202441 ], [ 107.564525, 15.202173 ], [ 107.312706, 15.908538 ], [ 106.556008, 16.604284 ], [ 105.925762, 17.485315 ], [ 105.094598, 18.666975 ], [ 103.896532, 19.265181 ], [ 104.183388, 19.624668 ], [ 104.822574, 19.886642 ], [ 104.435, 20.758733 ], [ 103.203861, 20.766562 ], [ 102.754896, 21.675137 ], [ 102.170436, 22.464753 ], [ 102.706992, 22.708795 ], [ 103.504515, 22.703757 ], [ 104.476858, 22.81915 ], [ 105.329209, 23.352063 ], [ 105.811247, 22.976892 ], [ 106.725403, 22.794268 ], [ 106.567273, 22.218205 ], [ 107.04342, 21.811899 ], [ 108.05018, 21.55238 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/VUT.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"VUT","properties":{"name":"Vanuatu"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.844877,-16.466333],[167.515181,-16.59785],[167.180008,-16.159995],[167.216801,-15.891846],[167.844877,-16.466333]]],[[[167.107712,-14.93392],[167.270028,-15.740021],[167.001207,-15.614602],[166.793158,-15.668811],[166.649859,-15.392704],[166.629137,-14.626497],[167.107712,-14.93392]]]]}} ]} ================================================ FILE: test/fixtures/world/VUT_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.125, -16.63619188 ], [ 163.125, -11.17840187 ], [ 168.75, -11.17840187 ], [ 168.75, -16.63619188 ], [ 163.125, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.844877, -16.466333 ], [ 167.515181, -16.59785 ], [ 167.180008, -16.159995 ], [ 167.216801, -15.891846 ], [ 167.844877, -16.466333 ] ] ], [ [ [ 167.107712, -14.93392 ], [ 167.270028, -15.740021 ], [ 167.001207, -15.614602 ], [ 166.793158, -15.668811 ], [ 166.649859, -15.392704 ], [ 166.629137, -14.626497 ], [ 167.107712, -14.93392 ] ] ] ] } } ] } ================================================ FILE: test/fixtures/world/YEM.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"YEM","properties":{"name":"Yemen"},"geometry":{"type":"Polygon","coordinates":[[[53.108573,16.651051],[52.385206,16.382411],[52.191729,15.938433],[52.168165,15.59742],[51.172515,15.17525],[49.574576,14.708767],[48.679231,14.003202],[48.238947,13.94809],[47.938914,14.007233],[47.354454,13.59222],[46.717076,13.399699],[45.877593,13.347764],[45.62505,13.290946],[45.406459,13.026905],[45.144356,12.953938],[44.989533,12.699587],[44.494576,12.721653],[44.175113,12.58595],[43.482959,12.6368],[43.222871,13.22095],[43.251448,13.767584],[43.087944,14.06263],[42.892245,14.802249],[42.604873,15.213335],[42.805015,15.261963],[42.702438,15.718886],[42.823671,15.911742],[42.779332,16.347891],[43.218375,16.66689],[43.115798,17.08844],[43.380794,17.579987],[43.791519,17.319977],[44.062613,17.410359],[45.216651,17.433329],[45.399999,17.333335],[46.366659,17.233315],[46.749994,17.283338],[47.000005,16.949999],[47.466695,17.116682],[48.183344,18.166669],[49.116672,18.616668],[52.00001,19.000003],[52.782184,17.349742],[53.108573,16.651051]]]}} ]} ================================================ FILE: test/fixtures/world/YEM_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 11.17840187 ], [ 39.375, 16.63619188 ], [ 45, 16.63619188 ], [ 45, 11.17840187 ], [ 39.375, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375, 16.63619188 ], [ 39.375, 21.94304553 ], [ 45, 21.94304553 ], [ 45, 16.63619188 ], [ 39.375, 16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 45, 11.17840187 ], [ 45, 21.94304553 ], [ 56.25, 21.94304553 ], [ 56.25, 11.17840187 ], [ 45, 11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.108573, 16.651051 ], [ 52.385206, 16.382411 ], [ 52.191729, 15.938433 ], [ 52.168165, 15.59742 ], [ 51.172515, 15.17525 ], [ 49.574576, 14.708767 ], [ 48.679231, 14.003202 ], [ 48.238947, 13.94809 ], [ 47.938914, 14.007233 ], [ 47.354454, 13.59222 ], [ 46.717076, 13.399699 ], [ 45.877593, 13.347764 ], [ 45.62505, 13.290946 ], [ 45.406459, 13.026905 ], [ 45.144356, 12.953938 ], [ 44.989533, 12.699587 ], [ 44.494576, 12.721653 ], [ 44.175113, 12.58595 ], [ 43.482959, 12.6368 ], [ 43.222871, 13.22095 ], [ 43.251448, 13.767584 ], [ 43.087944, 14.06263 ], [ 42.892245, 14.802249 ], [ 42.604873, 15.213335 ], [ 42.805015, 15.261963 ], [ 42.702438, 15.718886 ], [ 42.823671, 15.911742 ], [ 42.779332, 16.347891 ], [ 43.218375, 16.66689 ], [ 43.115798, 17.08844 ], [ 43.380794, 17.579987 ], [ 43.791519, 17.319977 ], [ 44.062613, 17.410359 ], [ 45.216651, 17.433329 ], [ 45.399999, 17.333335 ], [ 46.366659, 17.233315 ], [ 46.749994, 17.283338 ], [ 47.000005, 16.949999 ], [ 47.466695, 17.116682 ], [ 48.183344, 18.166669 ], [ 49.116672, 18.616668 ], [ 52.00001, 19.000003 ], [ 52.782184, 17.349742 ], [ 53.108573, 16.651051 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ZAF.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ZAF","properties":{"name":"South Africa"},"geometry":{"type":"Polygon","coordinates":[[[31.521001,-29.257387],[31.325561,-29.401978],[30.901763,-29.909957],[30.622813,-30.423776],[30.055716,-31.140269],[28.925553,-32.172041],[28.219756,-32.771953],[27.464608,-33.226964],[26.419452,-33.61495],[25.909664,-33.66704],[25.780628,-33.944646],[25.172862,-33.796851],[24.677853,-33.987176],[23.594043,-33.794474],[22.988189,-33.916431],[22.574157,-33.864083],[21.542799,-34.258839],[20.689053,-34.417175],[20.071261,-34.795137],[19.616405,-34.819166],[19.193278,-34.462599],[18.855315,-34.444306],[18.424643,-33.997873],[18.377411,-34.136521],[18.244499,-33.867752],[18.25008,-33.281431],[17.92519,-32.611291],[18.24791,-32.429131],[18.221762,-31.661633],[17.566918,-30.725721],[17.064416,-29.878641],[17.062918,-29.875954],[16.344977,-28.576705],[16.824017,-28.082162],[17.218929,-28.355943],[17.387497,-28.783514],[17.836152,-28.856378],[18.464899,-29.045462],[19.002127,-28.972443],[19.894734,-28.461105],[19.895768,-24.76779],[20.165726,-24.917962],[20.758609,-25.868136],[20.66647,-26.477453],[20.889609,-26.828543],[21.605896,-26.726534],[22.105969,-26.280256],[22.579532,-25.979448],[22.824271,-25.500459],[23.312097,-25.26869],[23.73357,-25.390129],[24.211267,-25.670216],[25.025171,-25.71967],[25.664666,-25.486816],[25.765849,-25.174845],[25.941652,-24.696373],[26.485753,-24.616327],[26.786407,-24.240691],[27.11941,-23.574323],[28.017236,-22.827754],[29.432188,-22.091313],[29.839037,-22.102216],[30.322883,-22.271612],[30.659865,-22.151567],[31.191409,-22.25151],[31.670398,-23.658969],[31.930589,-24.369417],[31.752408,-25.484284],[31.837778,-25.843332],[31.333158,-25.660191],[31.04408,-25.731452],[30.949667,-26.022649],[30.676609,-26.398078],[30.685962,-26.743845],[31.282773,-27.285879],[31.86806,-27.177927],[32.071665,-26.73382],[32.83012,-26.742192],[32.580265,-27.470158],[32.462133,-28.301011],[32.203389,-28.752405],[31.521001,-29.257387]],[[28.978263,-28.955597],[28.5417,-28.647502],[28.074338,-28.851469],[27.532511,-29.242711],[26.999262,-29.875954],[27.749397,-30.645106],[28.107205,-30.545732],[28.291069,-30.226217],[28.8484,-30.070051],[29.018415,-29.743766],[29.325166,-29.257387],[28.978263,-28.955597]]]}} ]} ================================================ FILE: test/fixtures/world/ZAF_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.25, -31.95216224 ], [ 11.25, -27.05912578 ], [ 16.875, -27.05912578 ], [ 16.875, -31.95216224 ], [ 11.25, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -27.05912578 ], [ 16.875, -21.94304553 ], [ 22.5, -21.94304553 ], [ 22.5, -27.05912578 ], [ 16.875, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -31.95216224 ], [ 16.875, -27.05912578 ], [ 22.5, -27.05912578 ], [ 22.5, -31.95216224 ], [ 16.875, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -36.59788913 ], [ 16.875, -31.95216224 ], [ 22.5, -31.95216224 ], [ 22.5, -36.59788913 ], [ 16.875, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -31.95216224 ], [ 22.5, -21.94304553 ], [ 33.75, -21.94304553 ], [ 33.75, -31.95216224 ], [ 22.5, -31.95216224 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -36.59788913 ], [ 22.5, -31.95216224 ], [ 28.125, -31.95216224 ], [ 28.125, -36.59788913 ], [ 22.5, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -36.59788913 ], [ 28.125, -31.95216224 ], [ 33.75, -31.95216224 ], [ 33.75, -36.59788913 ], [ 28.125, -36.59788913 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.521001, -29.257387 ], [ 31.325561, -29.401978 ], [ 30.901763, -29.909957 ], [ 30.622813, -30.423776 ], [ 30.055716, -31.140269 ], [ 28.925553, -32.172041 ], [ 28.219756, -32.771953 ], [ 27.464608, -33.226964 ], [ 26.419452, -33.61495 ], [ 25.909664, -33.66704 ], [ 25.780628, -33.944646 ], [ 25.172862, -33.796851 ], [ 24.677853, -33.987176 ], [ 23.594043, -33.794474 ], [ 22.988189, -33.916431 ], [ 22.574157, -33.864083 ], [ 21.542799, -34.258839 ], [ 20.689053, -34.417175 ], [ 20.071261, -34.795137 ], [ 19.616405, -34.819166 ], [ 19.193278, -34.462599 ], [ 18.855315, -34.444306 ], [ 18.424643, -33.997873 ], [ 18.377411, -34.136521 ], [ 18.244499, -33.867752 ], [ 18.25008, -33.281431 ], [ 17.92519, -32.611291 ], [ 18.24791, -32.429131 ], [ 18.221762, -31.661633 ], [ 17.566918, -30.725721 ], [ 17.064416, -29.878641 ], [ 17.062918, -29.875954 ], [ 16.344977, -28.576705 ], [ 16.824017, -28.082162 ], [ 17.218929, -28.355943 ], [ 17.387497, -28.783514 ], [ 17.836152, -28.856378 ], [ 18.464899, -29.045462 ], [ 19.002127, -28.972443 ], [ 19.894734, -28.461105 ], [ 19.895768, -24.76779 ], [ 20.165726, -24.917962 ], [ 20.758609, -25.868136 ], [ 20.66647, -26.477453 ], [ 20.889609, -26.828543 ], [ 21.605896, -26.726534 ], [ 22.105969, -26.280256 ], [ 22.579532, -25.979448 ], [ 22.824271, -25.500459 ], [ 23.312097, -25.26869 ], [ 23.73357, -25.390129 ], [ 24.211267, -25.670216 ], [ 25.025171, -25.71967 ], [ 25.664666, -25.486816 ], [ 25.765849, -25.174845 ], [ 25.941652, -24.696373 ], [ 26.485753, -24.616327 ], [ 26.786407, -24.240691 ], [ 27.11941, -23.574323 ], [ 28.017236, -22.827754 ], [ 29.432188, -22.091313 ], [ 29.839037, -22.102216 ], [ 30.322883, -22.271612 ], [ 30.659865, -22.151567 ], [ 31.191409, -22.25151 ], [ 31.670398, -23.658969 ], [ 31.930589, -24.369417 ], [ 31.752408, -25.484284 ], [ 31.837778, -25.843332 ], [ 31.333158, -25.660191 ], [ 31.04408, -25.731452 ], [ 30.949667, -26.022649 ], [ 30.676609, -26.398078 ], [ 30.685962, -26.743845 ], [ 31.282773, -27.285879 ], [ 31.86806, -27.177927 ], [ 32.071665, -26.73382 ], [ 32.83012, -26.742192 ], [ 32.580265, -27.470158 ], [ 32.462133, -28.301011 ], [ 32.203389, -28.752405 ], [ 31.521001, -29.257387 ] ], [ [ 28.978263, -28.955597 ], [ 28.5417, -28.647502 ], [ 28.074338, -28.851469 ], [ 27.532511, -29.242711 ], [ 26.999262, -29.875954 ], [ 27.749397, -30.645106 ], [ 28.107205, -30.545732 ], [ 28.291069, -30.226217 ], [ 28.8484, -30.070051 ], [ 29.018415, -29.743766 ], [ 29.325166, -29.257387 ], [ 28.978263, -28.955597 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ZMB.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ZMB","properties":{"name":"Zambia"},"geometry":{"type":"Polygon","coordinates":[[[32.759375,-9.230599],[33.231388,-9.676722],[33.485688,-10.525559],[33.31531,-10.79655],[33.114289,-11.607198],[33.306422,-12.435778],[32.991764,-12.783871],[32.688165,-13.712858],[33.214025,-13.97186],[30.179481,-14.796099],[30.274256,-15.507787],[29.516834,-15.644678],[28.947463,-16.043051],[28.825869,-16.389749],[28.467906,-16.4684],[27.598243,-17.290831],[27.044427,-17.938026],[26.706773,-17.961229],[26.381935,-17.846042],[25.264226,-17.73654],[25.084443,-17.661816],[25.07695,-17.578823],[24.682349,-17.353411],[24.033862,-17.295843],[23.215048,-17.523116],[22.562478,-16.898451],[21.887843,-16.08031],[21.933886,-12.898437],[24.016137,-12.911046],[23.930922,-12.565848],[24.079905,-12.191297],[23.904154,-11.722282],[24.017894,-11.237298],[23.912215,-10.926826],[24.257155,-10.951993],[24.314516,-11.262826],[24.78317,-11.238694],[25.418118,-11.330936],[25.75231,-11.784965],[26.553088,-11.92444],[27.16442,-11.608748],[27.388799,-12.132747],[28.155109,-12.272481],[28.523562,-12.698604],[28.934286,-13.248958],[29.699614,-13.257227],[29.616001,-12.178895],[29.341548,-12.360744],[28.642417,-11.971569],[28.372253,-11.793647],[28.49607,-10.789884],[28.673682,-9.605925],[28.449871,-9.164918],[28.734867,-8.526559],[29.002912,-8.407032],[30.346086,-8.238257],[30.740015,-8.340007],[31.157751,-8.594579],[31.556348,-8.762049],[32.191865,-8.930359],[32.759375,-9.230599]]]}} ]} ================================================ FILE: test/fixtures/world/ZMB_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -16.63619188 ], [ 16.875, -11.17840187 ], [ 22.5, -11.17840187 ], [ 22.5, -16.63619188 ], [ 16.875, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875, -21.94304553 ], [ 16.875, -16.63619188 ], [ 22.5, -16.63619188 ], [ 22.5, -21.94304553 ], [ 16.875, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -11.17840187 ], [ 22.5, -5.61598582 ], [ 28.125, -5.61598582 ], [ 28.125, -11.17840187 ], [ 22.5, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -21.94304553 ], [ 22.5, -11.17840187 ], [ 33.75, -11.17840187 ], [ 33.75, -21.94304553 ], [ 22.5, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -11.17840187 ], [ 28.125, -5.61598582 ], [ 33.75, -5.61598582 ], [ 33.75, -11.17840187 ], [ 28.125, -11.17840187 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.759375, -9.230599 ], [ 33.231388, -9.676722 ], [ 33.485688, -10.525559 ], [ 33.31531, -10.79655 ], [ 33.114289, -11.607198 ], [ 33.306422, -12.435778 ], [ 32.991764, -12.783871 ], [ 32.688165, -13.712858 ], [ 33.214025, -13.97186 ], [ 30.179481, -14.796099 ], [ 30.274256, -15.507787 ], [ 29.516834, -15.644678 ], [ 28.947463, -16.043051 ], [ 28.825869, -16.389749 ], [ 28.467906, -16.4684 ], [ 27.598243, -17.290831 ], [ 27.044427, -17.938026 ], [ 26.706773, -17.961229 ], [ 26.381935, -17.846042 ], [ 25.264226, -17.73654 ], [ 25.084443, -17.661816 ], [ 25.07695, -17.578823 ], [ 24.682349, -17.353411 ], [ 24.033862, -17.295843 ], [ 23.215048, -17.523116 ], [ 22.562478, -16.898451 ], [ 21.887843, -16.08031 ], [ 21.933886, -12.898437 ], [ 24.016137, -12.911046 ], [ 23.930922, -12.565848 ], [ 24.079905, -12.191297 ], [ 23.904154, -11.722282 ], [ 24.017894, -11.237298 ], [ 23.912215, -10.926826 ], [ 24.257155, -10.951993 ], [ 24.314516, -11.262826 ], [ 24.78317, -11.238694 ], [ 25.418118, -11.330936 ], [ 25.75231, -11.784965 ], [ 26.553088, -11.92444 ], [ 27.16442, -11.608748 ], [ 27.388799, -12.132747 ], [ 28.155109, -12.272481 ], [ 28.523562, -12.698604 ], [ 28.934286, -13.248958 ], [ 29.699614, -13.257227 ], [ 29.616001, -12.178895 ], [ 29.341548, -12.360744 ], [ 28.642417, -11.971569 ], [ 28.372253, -11.793647 ], [ 28.49607, -10.789884 ], [ 28.673682, -9.605925 ], [ 28.449871, -9.164918 ], [ 28.734867, -8.526559 ], [ 29.002912, -8.407032 ], [ 30.346086, -8.238257 ], [ 30.740015, -8.340007 ], [ 31.157751, -8.594579 ], [ 31.556348, -8.762049 ], [ 32.191865, -8.930359 ], [ 32.759375, -9.230599 ] ] ] } } ] } ================================================ FILE: test/fixtures/world/ZWE.geo.json ================================================ {"type":"FeatureCollection","features":[ {"type":"Feature","id":"ZWE","properties":{"name":"Zimbabwe"},"geometry":{"type":"Polygon","coordinates":[[[31.191409,-22.25151],[30.659865,-22.151567],[30.322883,-22.271612],[29.839037,-22.102216],[29.432188,-22.091313],[28.794656,-21.639454],[28.02137,-21.485975],[27.727228,-20.851802],[27.724747,-20.499059],[27.296505,-20.39152],[26.164791,-19.293086],[25.850391,-18.714413],[25.649163,-18.536026],[25.264226,-17.73654],[26.381935,-17.846042],[26.706773,-17.961229],[27.044427,-17.938026],[27.598243,-17.290831],[28.467906,-16.4684],[28.825869,-16.389749],[28.947463,-16.043051],[29.516834,-15.644678],[30.274256,-15.507787],[30.338955,-15.880839],[31.173064,-15.860944],[31.636498,-16.07199],[31.852041,-16.319417],[32.328239,-16.392074],[32.847639,-16.713398],[32.849861,-17.979057],[32.654886,-18.67209],[32.611994,-19.419383],[32.772708,-19.715592],[32.659743,-20.30429],[32.508693,-20.395292],[32.244988,-21.116489],[31.191409,-22.25151]]]}} ]} ================================================ FILE: test/fixtures/world/ZWE_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -21.94304553 ], [ 22.5, -16.63619188 ], [ 28.125, -16.63619188 ], [ 28.125, -21.94304553 ], [ 22.5, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -16.63619188 ], [ 28.125, -11.17840187 ], [ 33.75, -11.17840187 ], [ 33.75, -16.63619188 ], [ 28.125, -16.63619188 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -21.94304553 ], [ 28.125, -16.63619188 ], [ 33.75, -16.63619188 ], [ 33.75, -21.94304553 ], [ 28.125, -21.94304553 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125, -27.05912578 ], [ 28.125, -21.94304553 ], [ 33.75, -21.94304553 ], [ 33.75, -27.05912578 ], [ 28.125, -27.05912578 ] ] ] }, "properties": {} }, { "type": "Feature", "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.191409, -22.25151 ], [ 30.659865, -22.151567 ], [ 30.322883, -22.271612 ], [ 29.839037, -22.102216 ], [ 29.432188, -22.091313 ], [ 28.794656, -21.639454 ], [ 28.02137, -21.485975 ], [ 27.727228, -20.851802 ], [ 27.724747, -20.499059 ], [ 27.296505, -20.39152 ], [ 26.164791, -19.293086 ], [ 25.850391, -18.714413 ], [ 25.649163, -18.536026 ], [ 25.264226, -17.73654 ], [ 26.381935, -17.846042 ], [ 26.706773, -17.961229 ], [ 27.044427, -17.938026 ], [ 27.598243, -17.290831 ], [ 28.467906, -16.4684 ], [ 28.825869, -16.389749 ], [ 28.947463, -16.043051 ], [ 29.516834, -15.644678 ], [ 30.274256, -15.507787 ], [ 30.338955, -15.880839 ], [ 31.173064, -15.860944 ], [ 31.636498, -16.07199 ], [ 31.852041, -16.319417 ], [ 32.328239, -16.392074 ], [ 32.847639, -16.713398 ], [ 32.849861, -17.979057 ], [ 32.654886, -18.67209 ], [ 32.611994, -19.419383 ], [ 32.772708, -19.715592 ], [ 32.659743, -20.30429 ], [ 32.508693, -20.395292 ], [ 32.244988, -21.116489 ], [ 31.191409, -22.25151 ] ] ] } } ] } ================================================ FILE: test/fixtures/world.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0.000000, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0.000000, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0.000000, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "brk_group": null, "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Afghanistan", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 6.000000, "mapcolor9": 8.000000, "mapcolor13": 7.000000, "pop_est": 28400000.000000, "gdp_md_est": 22270.000000, "pop_year": -99.000000, "lastcensus": 1979.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99.000000, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11.000000, "long_len": 11.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.210817091725744, 35.650072333309225 ], [ 62.230651483005886, 35.270663967422294 ], [ 62.98466230657661, 35.404040839167621 ], [ 63.193538445900352, 35.857165635718914 ], [ 63.98289594915871, 36.007957465146603 ], [ 64.546479119733903, 36.312073269184268 ], [ 64.746105177677407, 37.111817735333304 ], [ 65.588947788357842, 37.305216783185642 ], [ 65.745630731066825, 37.661164048812068 ], [ 66.217384881459338, 37.39379018813392 ], [ 66.51860680528867, 37.362784328758792 ], [ 67.075782098259623, 37.356143907209287 ], [ 67.829999627559516, 37.144994004864685 ], [ 68.135562371701383, 37.023115139304309 ], [ 68.859445835245936, 37.344335842430596 ], [ 69.196272820924378, 37.151143500307427 ], [ 69.518785434857961, 37.60899669041342 ], [ 70.116578403610333, 37.588222764632093 ], [ 70.270574171840138, 37.735164699854025 ], [ 70.376304152309302, 38.138395901027522 ], [ 70.806820509732887, 38.486281643216415 ], [ 71.348131137990265, 38.258905341132163 ], [ 71.239403924448169, 37.953265082341886 ], [ 71.541917759084782, 37.905774441065645 ], [ 71.448693475230243, 37.06564484308052 ], [ 71.844638299450594, 36.738171291646921 ], [ 72.193040805962397, 36.948287665345674 ], [ 72.636889682917285, 37.047558091778356 ], [ 73.260055779925011, 37.495256862939002 ], [ 73.9486959166465, 37.4215662704908 ], [ 74.980002475895418, 37.419990139305895 ], [ 75.158027785140916, 37.133030910789117 ], [ 74.575892775372978, 37.020841376283457 ], [ 74.067551710917826, 36.836175645488453 ], [ 72.920024855444467, 36.720007025696319 ], [ 71.846291945283923, 36.509942328429858 ], [ 71.26234826038575, 36.074387518857804 ], [ 71.498767938121091, 35.650563259416003 ], [ 71.613076206350712, 35.153203436822864 ], [ 71.115018751921639, 34.733125718722235 ], [ 71.156773309213463, 34.348911444632151 ], [ 70.881803012988399, 33.98885590263852 ], [ 69.930543247359594, 34.02012014417511 ], [ 70.323594191371598, 33.358532619758392 ], [ 69.687147251264861, 33.105498969041236 ], [ 69.262522007122556, 32.5019440780883 ], [ 69.317764113242561, 31.901412258424443 ], [ 68.926676873657669, 31.620189113892067 ], [ 68.556932000609322, 31.713310044882018 ], [ 67.792689243444784, 31.582930406209631 ], [ 67.683393589147471, 31.303154201781421 ], [ 66.938891229118468, 31.304911200479353 ], [ 66.381457553986024, 30.738899237586452 ], [ 66.346472609324422, 29.887943427036177 ], [ 65.046862013616106, 29.472180691031905 ], [ 64.350418735618518, 29.560030625928093 ], [ 64.148002150331251, 29.340819200145972 ], [ 63.550260858011171, 29.468330796826166 ], [ 62.549856805272782, 29.318572496044311 ], [ 60.874248488208792, 29.829238999952608 ], [ 61.781221551363444, 30.735850328081238 ], [ 61.699314406180832, 31.379506130492672 ], [ 60.941944614511129, 31.548074652628753 ], [ 60.863654819588966, 32.182919623334428 ], [ 60.536077915290775, 32.981268825811568 ], [ 60.963700392506006, 33.528832302376259 ], [ 60.528429803311582, 33.676446031218006 ], [ 60.803193393807447, 34.404101874319863 ], [ 61.210817091725744, 35.650072333309225 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0.000000, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0.000000, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0.000000, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "brk_group": null, "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Angola", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 2.000000, "mapcolor9": 6.000000, "mapcolor13": 1.000000, "pop_est": 12799293.000000, "gdp_md_est": 110300.000000, "pop_year": -99.000000, "lastcensus": 1970.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99.000000, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.326528354567046, -5.877470391466218 ], [ 16.573179965896145, -6.622644545115094 ], [ 16.86019087084523, -7.222297865429979 ], [ 17.089995965247169, -7.545688978712477 ], [ 17.472970004962292, -8.068551120641658 ], [ 18.134221632569052, -7.987677504104866 ], [ 18.464175652752687, -7.847014255406478 ], [ 19.016751743249671, -7.98824594486014 ], [ 19.166613396896082, -7.738183688999726 ], [ 19.417502475673217, -7.155428562044278 ], [ 20.037723016040218, -7.11636117923166 ], [ 20.09162153492062, -6.943090101756951 ], [ 20.601822950938327, -6.939317722199689 ], [ 20.51474816252653, -7.299605808138665 ], [ 21.728110792739756, -7.290872491081316 ], [ 21.746455926203367, -7.920084730667114 ], [ 21.94913089365204, -8.305900974158305 ], [ 21.801801385187957, -8.908706556842986 ], [ 21.875181919042404, -9.523707777548566 ], [ 22.208753289486424, -9.89479623783653 ], [ 22.155268182064333, -11.084801120653779 ], [ 22.402798292742432, -10.993075453335692 ], [ 22.837345411884769, -11.017621758674338 ], [ 23.456790805767469, -10.867863457892483 ], [ 23.912215203555746, -10.926826267137542 ], [ 24.017893507592618, -11.237298272347118 ], [ 23.904153680118242, -11.722281589406336 ], [ 24.079905226342902, -12.191296888887308 ], [ 23.930922072045377, -12.565847670138822 ], [ 24.016136508894704, -12.911046237848552 ], [ 21.933886346125945, -12.898437188369357 ], [ 21.887842644953878, -16.080310153876894 ], [ 22.56247846852429, -16.898451429921835 ], [ 23.215048455506093, -17.523116143465955 ], [ 21.377176141045595, -17.93063648851971 ], [ 18.956186964603631, -17.789094740472237 ], [ 18.263309360434221, -17.309950860262006 ], [ 14.209706658595053, -17.353100681225712 ], [ 14.058501417709039, -17.423380629142656 ], [ 13.462362094789967, -16.971211846588744 ], [ 12.814081251688407, -16.941342868724078 ], [ 12.215461460019384, -17.111668389558062 ], [ 11.73419884608515, -17.301889336824502 ], [ 11.640096062881611, -16.673142185129208 ], [ 11.778537224991567, -15.793816013250691 ], [ 12.123580763404448, -14.878316338767931 ], [ 12.175618930722266, -14.449143568583892 ], [ 12.500095249083017, -13.547699883684402 ], [ 12.738478631245442, -13.137905775609937 ], [ 13.312913852601838, -12.483630466362513 ], [ 13.633721144269828, -12.038644707897191 ], [ 13.738727654686926, -11.297863050993143 ], [ 13.686379428775297, -10.731075941615842 ], [ 13.387327915102162, -10.373578383020728 ], [ 13.120987583069876, -9.766897067914115 ], [ 12.875369500386569, -9.166933689005489 ], [ 12.929061313537801, -8.959091078327575 ], [ 13.236432732809874, -8.562629489784342 ], [ 12.933040398824318, -7.596538588087753 ], [ 12.72829837408392, -6.927122084178805 ], [ 12.227347039446443, -6.294447523629373 ], [ 12.322431674863566, -6.100092461779653 ], [ 12.735171339578699, -5.965682061388478 ], [ 13.02486941900699, -5.984388929878108 ], [ 13.375597364971895, -5.864241224799557 ], [ 16.326528354567046, -5.877470391466218 ] ] ], [ [ [ 12.436688266660923, -5.684303887559224 ], [ 12.182336866920281, -5.789930515163803 ], [ 11.914963006242118, -5.037986748884734 ], [ 12.318607618873926, -4.606230157086159 ], [ 12.62075971848455, -4.438023369976122 ], [ 12.995517205465205, -4.781103203961919 ], [ 12.631611769265845, -4.991271254092936 ], [ 12.468004184629763, -5.248361504744992 ], [ 12.436688266660923, -5.684303887559224 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0.000000, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0.000000, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0.000000, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "brk_group": null, "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Albania", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 6.000000, "pop_est": 3639453.000000, "gdp_md_est": 21810.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99.000000, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.59024743010491, 41.855404161133606 ], [ 20.463175083099202, 41.51508901627534 ], [ 20.605181919037364, 41.086226304685226 ], [ 21.020040317476401, 40.84272695572588 ], [ 20.999989861747224, 40.580003973953978 ], [ 20.674996779063633, 40.434999904943027 ], [ 20.615000441172754, 40.110006822259379 ], [ 20.15001590341052, 39.624997666983973 ], [ 19.980000441170148, 39.694993394523408 ], [ 19.960001661873207, 39.915005805006047 ], [ 19.406081984136733, 40.250773423822466 ], [ 19.319058872157143, 40.727230129553561 ], [ 19.403549838954291, 41.409565741535459 ], [ 19.540027296637106, 41.719986070312757 ], [ 19.371768833094961, 41.877547512370654 ], [ 19.304486118250793, 42.19574514420782 ], [ 19.738051385179631, 42.688247382165571 ], [ 19.801613396898688, 42.500093492190842 ], [ 20.0707, 42.58863 ], [ 20.283754510181893, 42.320259507815081 ], [ 20.52295, 42.21787 ], [ 20.59024743010491, 41.855404161133606 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0.000000, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0.000000, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0.000000, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "brk_group": null, "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United Arab Emirates", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 1.000000, "mapcolor9": 3.000000, "mapcolor13": 3.000000, "pop_est": 4798491.000000, "gdp_md_est": 184300.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99.000000, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20.000000, "long_len": 20.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.579518670463273, 24.245497137951105 ], [ 51.757440626844186, 24.294072984305469 ], [ 51.794389275932872, 24.019826158132506 ], [ 52.577080519425607, 24.177439276622707 ], [ 53.404006788960146, 24.15131684009917 ], [ 54.008000929587581, 24.121757920828216 ], [ 54.693023716048629, 24.797892360935091 ], [ 55.43902469261414, 25.439145209244941 ], [ 56.070820753814559, 26.055464178973981 ], [ 56.261041701080956, 25.714606431576769 ], [ 56.396847365144005, 24.924732163995486 ], [ 55.886232537668008, 24.920830593357447 ], [ 55.804118686756226, 24.269604193615265 ], [ 55.981213820220461, 24.130542914317829 ], [ 55.528631626208238, 23.933604030853502 ], [ 55.525841098864475, 23.524869289640932 ], [ 55.234489373602884, 23.110992743415324 ], [ 55.208341098863194, 22.708329982997046 ], [ 55.006803012924905, 22.496947536707136 ], [ 52.000733270074335, 23.00115448657894 ], [ 51.617707553926977, 24.014219265228832 ], [ 51.579518670463273, 24.245497137951105 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0.000000, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0.000000, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0.000000, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "brk_group": null, "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Argentina", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 1.000000, "mapcolor9": 3.000000, "mapcolor13": 13.000000, "pop_est": 40913584.000000, "gdp_md_est": 573900.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99.000000, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.5, -55.2 ], [ -66.45, -55.25 ], [ -66.95992, -54.89681 ], [ -67.56244, -54.87001 ], [ -68.63335, -54.8695 ], [ -68.634010227583161, -52.63637045887446 ], [ -68.25, -53.1 ], [ -67.75, -53.85 ], [ -66.45, -54.45 ], [ -65.05, -54.7 ], [ -65.5, -55.2 ] ] ], [ [ [ -64.964892137294584, -22.075861504812352 ], [ -64.377021043542271, -22.798091322523547 ], [ -63.986838141522469, -21.993644301035957 ], [ -62.846468471921554, -22.034985446869456 ], [ -62.6850571356579, -22.249029229422405 ], [ -60.84656470400995, -23.880712579038303 ], [ -60.028966030503994, -24.032796319273245 ], [ -58.807128465394953, -24.771459242453275 ], [ -57.777217169817959, -25.16233977630904 ], [ -57.633660040911138, -25.60365650808167 ], [ -58.618173590719721, -27.123718763947124 ], [ -57.609759690976148, -27.395898532828426 ], [ -56.486701626192996, -27.54849903738625 ], [ -55.6958455063982, -27.387837009390822 ], [ -54.788794928595053, -26.621785577096091 ], [ -54.625290696823555, -25.739255466415486 ], [ -54.130049607954419, -25.54763925547725 ], [ -53.62834896504873, -26.124865004177437 ], [ -53.648735317587892, -26.923472588816111 ], [ -54.490725267135531, -27.47475676850577 ], [ -55.162286342984601, -27.881915378533421 ], [ -56.290899624239103, -28.852760512000856 ], [ -57.625133429582917, -30.216294854454247 ], [ -57.874937303281911, -31.016556084926165 ], [ -58.142440355040748, -32.044503676076189 ], [ -58.132647671121418, -33.040566908502015 ], [ -58.349611172098832, -33.263188978815435 ], [ -58.427074144104381, -33.909454441057548 ], [ -58.495442064026548, -34.431489760070107 ], [ -57.225829637263644, -35.288026625307893 ], [ -57.362358771378751, -35.977390232081504 ], [ -56.737487352105461, -36.413125909166581 ], [ -56.788285285048346, -36.901571547189334 ], [ -57.749156867083428, -38.183870538079915 ], [ -59.231857062401872, -38.720220228837206 ], [ -61.237445237865614, -38.928424574541154 ], [ -62.335956997310149, -38.827707208004369 ], [ -62.125763108962929, -39.424104913084875 ], [ -62.330530971919444, -40.172586358400324 ], [ -62.145994432205242, -40.676896661136738 ], [ -62.745802781816991, -41.028761488612091 ], [ -63.770494757732536, -41.166789239263665 ], [ -64.732089809819712, -40.802677097335135 ], [ -65.118035244391592, -41.064314874028881 ], [ -64.978560553635845, -42.058000990569326 ], [ -64.30340796574248, -42.359016208669502 ], [ -63.75594784204236, -42.043686618824509 ], [ -63.45805904809589, -42.563138116222362 ], [ -64.378803880456303, -42.873558444999645 ], [ -65.181803961839705, -43.495380954767796 ], [ -65.328823411710147, -44.501366062193696 ], [ -65.565268927661606, -45.036785577169795 ], [ -66.509965786389358, -45.03962778094585 ], [ -67.293793911392441, -45.551896254255198 ], [ -67.580546434180093, -46.301772963242541 ], [ -66.597066413017274, -47.033924655953811 ], [ -65.641026577401448, -47.236134535511894 ], [ -65.985088263600744, -48.133289076531142 ], [ -67.166178961847663, -48.697337334996945 ], [ -67.816087612566463, -49.869668877970419 ], [ -68.728745083273168, -50.264218438518867 ], [ -69.138539191347803, -50.732510267947802 ], [ -68.815561489523532, -51.771104011594105 ], [ -68.149994879820412, -52.349983406127706 ], [ -68.571545376241346, -52.299443855346262 ], [ -69.49836218939609, -52.14276091263725 ], [ -71.914803839796349, -52.009022305865926 ], [ -72.329403856074038, -51.425956312872408 ], [ -72.30997351753237, -50.677009779666356 ], [ -72.975746832964631, -50.741450290734313 ], [ -73.328050910114484, -50.378785088909872 ], [ -73.415435757120036, -49.318436374712959 ], [ -72.648247443314943, -48.878618259476788 ], [ -72.331160854771952, -48.244238376661826 ], [ -72.447355312780275, -47.738532810253531 ], [ -71.917258470330211, -46.8848381487918 ], [ -71.552009446891248, -45.560732924177131 ], [ -71.65931555854533, -44.973688653341441 ], [ -71.222778896759735, -44.784242852559416 ], [ -71.329800788036209, -44.407521661151691 ], [ -71.793622606071949, -44.207172133156106 ], [ -71.464056159130507, -43.787611179378331 ], [ -71.915423956983915, -43.408564548517418 ], [ -72.148898078078531, -42.254888197601389 ], [ -71.746803758415467, -42.051386407235995 ], [ -71.915734015577556, -40.832339369470731 ], [ -71.680761277946459, -39.808164157878068 ], [ -71.413516608349056, -38.916022230791114 ], [ -70.814664272734717, -38.552995293940739 ], [ -71.118625047475433, -37.576827487947199 ], [ -71.121880662709799, -36.658123874662337 ], [ -70.364769253201672, -36.005088799789945 ], [ -70.388049485949097, -35.169687595359449 ], [ -69.817309129501467, -34.193571465798286 ], [ -69.814776984319224, -33.273886000299854 ], [ -70.074399380153636, -33.091209812148037 ], [ -70.535068935819453, -31.365010267870289 ], [ -69.919008348251936, -30.336339206668313 ], [ -70.013550381129875, -29.367922865518551 ], [ -69.656130337183157, -28.459141127233693 ], [ -69.001234910748281, -27.521213881136134 ], [ -68.295541551370405, -26.89933969493579 ], [ -68.594799770772681, -26.506908868111267 ], [ -68.386001146097357, -26.185016371365236 ], [ -68.417652960876126, -24.518554782816878 ], [ -67.328442959244143, -24.025303236590915 ], [ -66.985233934177643, -22.986348565362832 ], [ -67.106673550063618, -22.7359245744764 ], [ -66.273339402924847, -21.832310479420684 ], [ -64.964892137294584, -22.075861504812352 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0.000000, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0.000000, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0.000000, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "brk_group": null, "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Armenia", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 1.000000, "mapcolor9": 2.000000, "mapcolor13": 10.000000, "pop_est": 2967004.000000, "gdp_md_est": 18770.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99.000000, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.582745802592733, 41.092143256182567 ], [ 44.972480096218078, 41.248128567055595 ], [ 45.179495883979342, 40.985353908851408 ], [ 45.560351189970447, 40.812289537105926 ], [ 45.35917483905817, 40.561503811193461 ], [ 45.891907179555091, 40.218475653639999 ], [ 45.610012241402927, 39.899993801425182 ], [ 46.034534132680676, 39.628020738273065 ], [ 46.483498976432458, 39.464154771475535 ], [ 46.505719842317973, 38.770605373686294 ], [ 46.143623081248819, 38.741201483712217 ], [ 45.735379266143013, 39.319719143219743 ], [ 45.739978468616982, 39.473999131827128 ], [ 45.298144972521463, 39.471751207022436 ], [ 45.001987339056747, 39.740003567049555 ], [ 44.793989699081948, 39.713002631177048 ], [ 44.400008579288702, 40.005000311842281 ], [ 43.656436395040942, 40.253563951166186 ], [ 43.752657911968413, 40.740200914058761 ], [ 43.582745802592733, 41.092143256182567 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0.000000, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0.000000, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0.000000, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "brk_group": null, "abbrev": "Ant.", "postal": "AQ", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 5.000000, "mapcolor9": 1.000000, "mapcolor13": -99.000000, "pop_est": 3802.000000, "gdp_md_est": 760.400000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99.000000, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -59.572094692611529, -80.040178725096297 ], [ -59.865849371974718, -80.549656671061854 ], [ -60.1596557277702, -81.000326837079314 ], [ -62.255393439367083, -80.863177585776654 ], [ -64.488125372969762, -80.921933689292558 ], [ -65.741666429289836, -80.588827406739142 ], [ -65.741666429289836, -80.549656671061854 ], [ -66.29003089055513, -80.25577280061799 ], [ -64.037687750897646, -80.294943536295179 ], [ -61.883245612217138, -80.392870375488286 ], [ -61.138975796133451, -79.9813709451481 ], [ -60.610119188058405, -79.628679294756125 ], [ -59.572094692611529, -80.040178725096297 ] ] ], [ [ [ -159.208183560197654, -79.497059421708727 ], [ -161.127601284814659, -79.634208673011301 ], [ -162.439846768218388, -79.281465346187019 ], [ -163.027407803376974, -78.928773695794959 ], [ -163.066604377270323, -78.869965915846763 ], [ -163.712895677728739, -78.595667413241529 ], [ -163.712895677728739, -78.595666605797277 ], [ -163.105800951163815, -78.223337911134294 ], [ -161.245113491846382, -78.380175883140168 ], [ -160.246208055644502, -78.693645121422662 ], [ -159.482404548154477, -79.046337579258989 ], [ -159.208183560197654, -79.497059421708727 ] ] ], [ [ [ -45.154757656421026, -78.047069600586738 ], [ -43.920827806155756, -78.478102722333261 ], [ -43.489949713706096, -79.085559991368456 ], [ -43.372437506674373, -79.516644789547271 ], [ -43.333266770997085, -80.026122735512928 ], [ -44.880536668464288, -80.339643650227714 ], [ -46.506173875502014, -80.594356784994318 ], [ -48.386420864441789, -80.829484551922349 ], [ -50.482106899606464, -81.025441583173119 ], [ -52.851988084511788, -80.966685479657301 ], [ -54.164259406131606, -80.633527520671578 ], [ -53.98799109558405, -80.222028090331406 ], [ -51.8531343247422, -79.947729587726087 ], [ -50.991326463410587, -79.614623305172657 ], [ -50.364594692574741, -79.183486830561634 ], [ -49.914131232286508, -78.811209004886692 ], [ -49.306958991073117, -78.458569030926924 ], [ -48.660616014182523, -78.047017924154446 ], [ -48.660616014182523, -78.047018731598683 ], [ -48.1513964503784, -78.047069600586738 ], [ -46.662856818211026, -77.831475525065031 ], [ -45.154757656421026, -78.047069600586738 ] ] ], [ [ [ -121.211511393857123, -73.500990499006036 ], [ -119.918851278292053, -73.65772511814734 ], [ -118.724143032691913, -73.481353454735199 ], [ -119.292118700011955, -73.834096781559481 ], [ -120.232217163709976, -74.088809916326156 ], [ -121.622829956684257, -74.010468444971607 ], [ -122.621734585441899, -73.657777602023884 ], [ -122.621735392886137, -73.657776794579632 ], [ -122.406244670229029, -73.32461883559391 ], [ -121.211511393857123, -73.500990499006036 ] ] ], [ [ [ -125.559566406895314, -73.481353454735199 ], [ -124.031881877266855, -73.873267517236741 ], [ -124.619468750641531, -73.834096781559481 ], [ -125.912180542638907, -73.736118265934095 ], [ -127.28312964568191, -73.461768894340821 ], [ -127.283130453126162, -73.461768086896569 ], [ -126.558471843097209, -73.246225687807168 ], [ -125.559566406895314, -73.481353454735199 ] ] ], [ [ [ -98.981549648823901, -71.933334248999785 ], [ -97.884743211645031, -72.070535176734737 ], [ -96.787936774466232, -71.952971293270707 ], [ -96.200349901091442, -72.521205342752182 ], [ -96.983764614636215, -72.442863871397634 ], [ -98.19808325884685, -72.482034607074922 ], [ -99.432013109112205, -72.442863871397634 ], [ -100.783455166409212, -72.501619974913552 ], [ -101.80186845580134, -72.305662943662782 ], [ -102.330725063876386, -71.894164320766848 ], [ -102.330725063876386, -71.89416351332261 ], [ -101.703967454824436, -71.717791849910384 ], [ -100.4309185453141, -71.854992777645322 ], [ -98.981549648823901, -71.933334248999785 ] ] ], [ [ [ -68.451345994730417, -70.955822855766741 ], [ -68.333833787698694, -71.406493021784186 ], [ -68.510127936462425, -71.798407084285728 ], [ -68.784297247986984, -72.170735778948625 ], [ -69.959470994736421, -72.307885030251299 ], [ -71.075888637970138, -72.50384206150207 ], [ -72.388134121373781, -72.484256693663426 ], [ -71.898499925408288, -72.092342631161884 ], [ -73.073621995725432, -72.229491882464544 ], [ -74.190039638959064, -72.366692810199496 ], [ -74.953894822881381, -72.07275726332324 ], [ -75.01262508818121, -71.661257832983068 ], [ -73.915818651002326, -71.269344577925779 ], [ -73.915818651002326, -71.269343770481527 ], [ -73.230330776650561, -71.151779887017511 ], [ -72.074716559523551, -71.190950622694771 ], [ -71.780961880160362, -70.681472676729129 ], [ -71.72217993842844, -70.30919565849851 ], [ -71.741791144483187, -69.505782165656797 ], [ -71.173815477163146, -69.035474955368414 ], [ -70.253251512315728, -68.878740336227196 ], [ -69.72444658067306, -69.251017354457815 ], [ -69.489422166609586, -69.623346049120727 ], [ -69.058518235943808, -70.074016215138187 ], [ -68.725541144471066, -70.505152689749281 ], [ -68.451345994730417, -70.955822855766741 ] ] ], [ [ [ -58.614142829000912, -64.152467130133147 ], [ -59.045072597882864, -64.368009529222633 ], [ -59.789342413966551, -64.211223233649051 ], [ -60.611927863188697, -64.309201749274436 ], [ -61.297415737540376, -64.544329516202566 ], [ -62.022100185785433, -64.799094327401363 ], [ -62.511760219966902, -65.093029874277519 ], [ -62.648857794837369, -65.484942321890657 ], [ -62.590127529537739, -65.857219340121361 ], [ -62.120078701410705, -66.190325622674706 ], [ -62.805566575762384, -66.425505066034958 ], [ -63.745690070232371, -66.503846537389592 ], [ -64.294106207929957, -66.837004496375215 ], [ -64.881693081304633, -67.150473734657723 ], [ -65.508424852140564, -67.581610209268916 ], [ -65.665081956633287, -67.95388722749945 ], [ -65.31254533553809, -68.365334981407415 ], [ -64.783714565679333, -68.678907572554493 ], [ -63.961103278241097, -68.913983663050175 ], [ -63.197299770751044, -69.227556254197253 ], [ -62.78595536970775, -69.619418640266503 ], [ -62.570516323482906, -69.991747334929499 ], [ -62.276735805903542, -70.383661397431041 ], [ -61.806661139560589, -70.716767679984471 ], [ -61.512906460197399, -71.089044698215076 ], [ -61.375808885327132, -72.010073750953126 ], [ -61.081976691315532, -72.38235076918383 ], [ -61.003661058177187, -72.774264831685372 ], [ -60.69026933454316, -73.166178894187084 ], [ -60.827366909413428, -73.695242207991186 ], [ -61.375808885327132, -74.106741638331371 ], [ -61.96336992048569, -74.439847920884887 ], [ -63.295200771727963, -74.576997172187376 ], [ -63.745690070232371, -74.929740499011729 ], [ -64.352836473229587, -75.262846781565159 ], [ -65.860987311451765, -75.635123799795778 ], [ -67.192818162694124, -75.791910095369445 ], [ -68.446281704365759, -76.007452494458761 ], [ -69.797723761662837, -76.222994893548176 ], [ -70.600723843046239, -76.634494323888447 ], [ -72.206775682245365, -76.673665059565721 ], [ -73.969536302369676, -76.634494323888447 ], [ -75.555976935514025, -76.712887471675202 ], [ -77.240370246067613, -76.712887471675202 ], [ -76.926978522433586, -77.104801534176744 ], [ -75.399293992804928, -77.281069844724385 ], [ -74.28287634957141, -77.555420023761812 ], [ -73.656118740519446, -77.908111674153957 ], [ -74.772536383753078, -78.221632588868673 ], [ -76.496100429984011, -78.123654073243287 ], [ -77.925858120419264, -78.378418884442254 ], [ -77.984665900367474, -78.789918314782341 ], [ -78.02378495961247, -79.18183318472822 ], [ -76.848637051079123, -79.51493946728165 ], [ -76.633223843070397, -79.887216485512269 ], [ -75.360097418911749, -80.259545180175252 ], [ -73.244851854124619, -80.416331475748763 ], [ -71.442946336539222, -80.690629978353982 ], [ -70.013162807887767, -81.004150893068783 ], [ -68.191646084247537, -81.317671807783569 ], [ -65.704278530526665, -81.47445810335725 ], [ -63.256030036050703, -81.748756605962484 ], [ -61.55202551944231, -82.042692152838541 ], [ -59.691415574773458, -82.375850111824349 ], [ -58.712121344626212, -82.846105645680353 ], [ -58.222487148660917, -83.21843434034335 ], [ -57.008116828017819, -82.865691013519083 ], [ -55.362894253141548, -82.571755466642827 ], [ -53.619770677288244, -82.258234551928041 ], [ -51.543644171746024, -82.003521417161352 ], [ -49.761349860215461, -81.729171238123755 ], [ -47.27393063006221, -81.709585870285295 ], [ -44.825707973802508, -81.84673512158777 ], [ -42.808363409992381, -82.081914564948107 ], [ -42.162020433101787, -81.650829766769291 ], [ -40.771433478343596, -81.356894219893221 ], [ -38.244817674297053, -81.337308852054591 ], [ -36.266669684380219, -81.121714776532983 ], [ -34.386396857224355, -80.906172377443482 ], [ -32.31029618989831, -80.769023126140738 ], [ -30.097097947701997, -80.592651462728696 ], [ -28.549802212018704, -80.337938327962007 ], [ -29.254901292425131, -79.985195001137654 ], [ -29.685805223090966, -79.632503350745679 ], [ -29.685805223090966, -79.260226332514975 ], [ -31.62480831554663, -79.299397068192235 ], [ -33.681323615033961, -79.456131687333453 ], [ -35.639912075328255, -79.456131687333453 ], [ -35.914107225069017, -79.083854669102919 ], [ -35.777009650198721, -78.33924814876498 ], [ -35.326546189910431, -78.123654073243287 ], [ -33.896762661258862, -77.888526306315242 ], [ -32.212369350705302, -77.653450215819575 ], [ -30.99805070649461, -77.359514668943319 ], [ -29.783732062284059, -77.065579122067263 ], [ -28.882779303491361, -76.673665059565721 ], [ -27.511751878355653, -76.497345072585787 ], [ -26.16033565927475, -76.36014414485075 ], [ -25.474821946706868, -76.281802673496287 ], [ -23.927552049239779, -76.242580261386735 ], [ -22.45859778491095, -76.105431010084246 ], [ -21.22469377286177, -75.909473978833475 ], [ -20.010375128651077, -75.67434621190543 ], [ -18.91354285325616, -75.439218444977286 ], [ -17.522981736714172, -75.125697530262499 ], [ -16.641588507544014, -74.792539571276876 ], [ -15.701490851290259, -74.498604024400635 ], [ -15.407710333710867, -74.106741638331371 ], [ -16.465320196996373, -73.871613871403412 ], [ -16.112783575901261, -73.460114441063155 ], [ -15.446855231171952, -73.146541849916076 ], [ -14.408804897508986, -72.950584818665305 ], [ -13.311972622113984, -72.715457051737332 ], [ -12.293507656289563, -72.401936137022545 ], [ -11.510067104528588, -72.010073750953126 ], [ -11.020432908563038, -71.539766540664829 ], [ -10.295774298534155, -71.265416361627302 ], [ -9.101015183946089, -71.324224141575513 ], [ -8.611380987980596, -71.657330424128844 ], [ -7.416621873392415, -71.696501159806033 ], [ -7.377451137715241, -71.324224141575513 ], [ -6.868231573911117, -70.932310079073972 ], [ -5.790984666354774, -71.030288594699272 ], [ -5.53637488445267, -71.402617289362254 ], [ -4.341667446296867, -71.461373392878073 ], [ -3.048981492515594, -71.28505340589814 ], [ -1.795492112627784, -71.167437846001832 ], [ -0.659489101555522, -71.226245625950042 ], [ -0.228636847322065, -71.637745056290299 ], [ 0.868195428072937, -71.304638773736784 ], [ 1.886686232113533, -71.128267110324742 ], [ 3.022637566753417, -70.991117859022069 ], [ 4.139055209987049, -70.853916931287046 ], [ 5.157546014027673, -70.618789164359086 ], [ 6.273911980828927, -70.462054545217796 ], [ 7.135719842160626, -70.246512146128381 ], [ 7.742866245157842, -69.893768819304029 ], [ 8.487110223025326, -70.148533630502996 ], [ 9.525134718472202, -70.011332702768215 ], [ 10.249845004933434, -70.481639913056512 ], [ 10.81782067225339, -70.834331563448501 ], [ 11.953823683325652, -70.63837453219773 ], [ 12.404287143613942, -70.246512146128381 ], [ 13.422777947654396, -69.972161967090955 ], [ 14.734997592842006, -70.030918070606774 ], [ 15.126756626046586, -70.403246765269756 ], [ 15.949342075268646, -70.030918070606774 ], [ 17.02658898282516, -69.913354187142744 ], [ 18.201711053142333, -69.874183451465484 ], [ 19.259372592860046, -69.893768819304029 ], [ 20.375738559661471, -70.011332702768215 ], [ 21.452985467217815, -70.070140482716255 ], [ 21.923034295344735, -70.403246765269756 ], [ 22.569403110451447, -70.697182312145827 ], [ 23.666183709414213, -70.520810648733701 ], [ 24.841357456163593, -70.481639913056512 ], [ 25.977308790803647, -70.481639913056512 ], [ 27.093726434037279, -70.462054545217796 ], [ 28.092580193806867, -70.32485361748293 ], [ 29.150241733524581, -70.207289734018985 ], [ 30.031583286262531, -69.932939554981289 ], [ 30.971732618948607, -69.756619568001454 ], [ 31.990171746556854, -69.658641052376069 ], [ 32.754052768695288, -69.384290873338458 ], [ 33.302443068176757, -68.835642191695712 ], [ 33.8704187354966, -68.50258758557456 ], [ 34.908494907375854, -68.659270528283486 ], [ 35.300202264148226, -69.012013855107938 ], [ 36.162010125479782, -69.247141622035969 ], [ 37.200034620926573, -69.168748474249043 ], [ 37.905107863116797, -69.521440124641202 ], [ 38.649403517416914, -69.776204935840184 ], [ 39.667894321457339, -69.541077168912039 ], [ 40.020430942552565, -69.109940694300946 ], [ 40.921357863129089, -68.933620707321182 ], [ 41.959434035008229, -68.600514424767667 ], [ 42.938702426939102, -68.463313497032715 ], [ 44.113876173688624, -68.267408142214236 ], [ 44.897290887233424, -68.051865743124921 ], [ 45.719928012887834, -67.816737976196777 ], [ 46.503342726432635, -67.601195577107461 ], [ 47.443440382686305, -67.718759460571476 ], [ 48.344418979695121, -67.366067810179416 ], [ 48.990736118369597, -67.091717631141904 ], [ 49.930885451055673, -67.111302998980449 ], [ 50.753470900277733, -66.876175232052404 ], [ 50.949324578663919, -66.523483581660429 ], [ 51.791547072157044, -66.249133402622903 ], [ 52.614132521378934, -66.053176371372132 ], [ 53.613037957580815, -65.89639007579855 ], [ 54.533550245996054, -65.818048604444002 ], [ 55.414943475166211, -65.876804707959906 ], [ 56.355041131419881, -65.974783223585376 ], [ 57.158092889235689, -66.249133402622903 ], [ 57.255968051996462, -66.680218200801633 ], [ 58.137361281166619, -67.013324483355149 ], [ 58.744507684163949, -67.287674662392675 ], [ 59.939318475184251, -67.40523854585669 ], [ 60.605220981697443, -67.679588724894217 ], [ 61.427806430919333, -67.95388722749945 ], [ 62.387489455011661, -68.012695007447547 ], [ 63.190489536395233, -67.816737976196777 ], [ 64.052349074159025, -67.40523854585669 ], [ 64.992446730412922, -67.620729268513713 ], [ 65.971715122343966, -67.738344828410035 ], [ 66.911864455029757, -67.85590871187415 ], [ 67.891132846960915, -67.934301859660806 ], [ 68.890038283162909, -67.934301859660806 ], [ 69.712623732384742, -68.972791442998371 ], [ 69.673452996707482, -69.227556254197253 ], [ 69.555940789675816, -69.678226420214713 ], [ 68.596257765583488, -69.932939554981289 ], [ 67.812739699174159, -70.305268249644286 ], [ 67.949888950476662, -70.697182312145827 ], [ 69.066306593710266, -70.67754526787499 ], [ 68.929157342407763, -71.069459330376532 ], [ 68.41998945503596, -71.441788025039529 ], [ 67.949888950476662, -71.853287455379615 ], [ 68.713769972615154, -72.166808370094415 ], [ 69.869306675093952, -72.264786885719801 ], [ 71.024895054004588, -72.088415222307759 ], [ 71.573285353486057, -71.696501159806033 ], [ 71.906288283174916, -71.324224141575513 ], [ 72.454626906224036, -71.010703226860628 ], [ 73.081410353492089, -70.716767679984471 ], [ 73.336020135394193, -70.364024353160204 ], [ 73.864876743469239, -69.874183451465484 ], [ 74.491556837872707, -69.776204935840184 ], [ 75.627559848944969, -69.73703420016281 ], [ 76.62646528514685, -69.619418640266503 ], [ 77.644904412755267, -69.462684021125298 ], [ 78.13453860872059, -69.070769958623757 ], [ 78.428370802732246, -68.698441263960675 ], [ 79.113858677083925, -68.326215922162433 ], [ 80.093127069014855, -68.071502787395758 ], [ 80.935349562507753, -67.875545756144987 ], [ 81.483791538421457, -67.542387797159265 ], [ 82.05176720574147, -67.366067810179416 ], [ 82.776425815770409, -67.209281514605919 ], [ 83.775331251972403, -67.30726003023122 ], [ 84.676206496116635, -67.209281514605919 ], [ 85.65552656447997, -67.091717631141904 ], [ 86.752358839874859, -67.150473734657723 ], [ 87.477017449903798, -66.876175232052404 ], [ 87.986288690140242, -66.20991099051335 ], [ 88.358410679073955, -66.484261169550862 ], [ 88.828407830768555, -66.95456837983923 ], [ 89.670630324261566, -67.150473734657723 ], [ 90.6303650247863, -67.228866882444464 ], [ 91.590099725310807, -67.111302998980449 ], [ 92.608538852919054, -67.189696146767204 ], [ 93.548636509172951, -67.209281514605919 ], [ 94.175419956441004, -67.111302998980449 ], [ 95.017590773501666, -67.170110778928645 ], [ 95.781471795640272, -67.385653178017975 ], [ 96.682398716216795, -67.248503926715486 ], [ 97.759645623773139, -67.248503926715486 ], [ 98.680209588620556, -67.111302998980449 ], [ 99.718182407635055, -67.248503926715486 ], [ 100.384188267012775, -66.915345967729678 ], [ 100.893356154384691, -66.582239685176248 ], [ 101.578895705168549, -66.307889506138636 ], [ 102.832410923272647, -65.56328379324512 ], [ 103.478676385514774, -65.700484720979972 ], [ 104.242557407653095, -65.974783223585376 ], [ 104.90845991416623, -66.327526550409658 ], [ 106.181560500108759, -66.934931335568393 ], [ 107.160880568472095, -66.95456837983923 ], [ 108.081392856887163, -66.95456837983923 ], [ 109.158639764443677, -66.837004496375215 ], [ 110.235834995567842, -66.699803568640363 ], [ 111.058472121222081, -66.425505066034958 ], [ 111.743959995573931, -66.131569519158887 ], [ 112.860377638807478, -66.092347107049321 ], [ 113.604673293107368, -65.876804707959906 ], [ 114.388088006652055, -66.072761739210677 ], [ 114.897307570456263, -66.386282653925477 ], [ 115.602380812646544, -66.699803568640363 ], [ 116.699161411609424, -66.660632832962989 ], [ 117.384700962393225, -66.915345967729678 ], [ 118.579460076981292, -67.170110778928645 ], [ 119.832923618653098, -67.268089294553945 ], [ 120.870999790532181, -67.189696146767204 ], [ 121.654414504077096, -66.876175232052404 ], [ 122.320368687022352, -66.562654317337689 ], [ 123.221295607598933, -66.484261169550862 ], [ 124.122274204607635, -66.6214620972859 ], [ 125.160247023622247, -66.719388936478907 ], [ 126.10039635630838, -66.562654317337689 ], [ 127.001426629749318, -66.562654317337689 ], [ 127.88276818248724, -66.660632832962989 ], [ 128.803280470902422, -66.75861134858846 ], [ 129.704259067911181, -66.582239685176248 ], [ 130.78145429903546, -66.425505066034958 ], [ 131.799945103075885, -66.386282653925477 ], [ 132.935896437716139, -66.386282653925477 ], [ 133.856460402563386, -66.288304138300091 ], [ 134.757387323139909, -66.209962666945628 ], [ 135.031582472880729, -65.720070088818616 ], [ 135.070753208557818, -65.30857065847843 ], [ 135.697484979393579, -65.582869161083664 ], [ 135.873804966373513, -66.033591003533417 ], [ 136.206704543197787, -66.445090433873673 ], [ 136.61804894424111, -66.778196716427018 ], [ 137.460271437733951, -66.95456837983923 ], [ 138.596222772374148, -66.895760599891133 ], [ 139.908442417561474, -66.876175232052404 ], [ 140.80942101457029, -66.817367452104378 ], [ 142.121692336190193, -66.817367452104378 ], [ 143.061841668876156, -66.797782084265663 ], [ 144.374061314063709, -66.837004496375215 ], [ 145.490427280865021, -66.915345967729678 ], [ 146.195552199487821, -67.228866882444464 ], [ 145.999698521101521, -67.601195577107461 ], [ 146.646067336208233, -67.895131123983703 ], [ 147.723262567332341, -68.130258890911662 ], [ 148.839628534133709, -68.385023702110544 ], [ 150.132314487914897, -68.561292012658186 ], [ 151.483704868779597, -68.718129984663975 ], [ 152.502247349252485, -68.874812927372986 ], [ 153.638198683892568, -68.894501648076101 ], [ 154.28456749899928, -68.561292012658186 ], [ 155.165857375304853, -68.835642191695712 ], [ 155.929790073875466, -69.14921478284279 ], [ 156.811131626613388, -69.384290873338458 ], [ 158.025527785472406, -69.482269388963942 ], [ 159.181012811518741, -69.599833272427958 ], [ 159.670698683916527, -69.991747334929499 ], [ 160.806650018556496, -70.226875101857544 ], [ 161.570479364262809, -70.579618428681812 ], [ 162.686897007496356, -70.736353047823201 ], [ 163.842433709974927, -70.716767679984471 ], [ 164.919680617531213, -70.77552378350029 ], [ 166.11443973211945, -70.755938415661745 ], [ 167.309095493842989, -70.834331563448501 ], [ 168.425616489941177, -70.971480814751061 ], [ 169.46358930895596, -71.206660258111398 ], [ 170.501665480835044, -71.402617289362254 ], [ 171.206790399457617, -71.696501159806033 ], [ 171.089226515993772, -72.088415222307759 ], [ 170.560421584350735, -72.441158549132112 ], [ 170.109958124062388, -72.891828715149387 ], [ 169.757369826535154, -73.244520365541547 ], [ 169.287320998408319, -73.656019795881633 ], [ 167.975101353220765, -73.81280609145513 ], [ 167.387488641629744, -74.16549774184719 ], [ 166.094802687848443, -74.381040140936605 ], [ 165.644390903992445, -74.772954203438147 ], [ 164.958851353208587, -75.145282898101229 ], [ 164.234192743179705, -75.45880381281593 ], [ 163.822796665703919, -75.870303243156201 ], [ 163.568238560234278, -76.242580261386735 ], [ 163.470260044608978, -76.693302103836558 ], [ 163.489897088879758, -77.065579122067263 ], [ 164.057872756199771, -77.457441508136426 ], [ 164.273363478856965, -77.829770202799324 ], [ 164.743463983416149, -78.182513529623776 ], [ 166.60412560451735, -78.319611104494058 ], [ 166.995781284857429, -78.750747579105251 ], [ 165.193875767272033, -78.907483005690693 ], [ 163.666217075859578, -79.123025404780023 ], [ 161.766384719081117, -79.162247816889675 ], [ 160.924162225588333, -79.73048186637098 ], [ 160.747893915040748, -80.200737400227155 ], [ 160.31696414615871, -80.573066094889967 ], [ 159.78821089094842, -80.945394789553049 ], [ 161.120015903974405, -81.278501072106479 ], [ 161.629287144210906, -81.690000502446566 ], [ 162.490991652678048, -82.06227752067727 ], [ 163.705336135104773, -82.395435479662893 ], [ 165.095948928078855, -82.708956394377779 ], [ 166.60412560451735, -83.022477309092579 ], [ 168.895665318067955, -83.335998223807366 ], [ 169.404781529007579, -83.825890801934378 ], [ 172.283933954149376, -84.041433201023708 ], [ 172.477048781624177, -84.117914320815672 ], [ 173.224083286835395, -84.413710219254412 ], [ 175.985671828513119, -84.158997084487638 ], [ 178.277211542064066, -84.472517999202438 ], [ 180.000000000000142, -84.71338 ], [ 180.000000000000142, -90.0 ], [ -179.9999999999, -90.0 ], [ -179.9999999999, -84.71338 ], [ -179.942499356178928, -84.721443373552489 ], [ -179.058677334691197, -84.139411716649093 ], [ -177.256771817105744, -84.452932631363879 ], [ -177.140806673265786, -84.417941227148319 ], [ -176.084672818077593, -84.099259128758419 ], [ -175.947234613627757, -84.110448710216616 ], [ -175.829882168662522, -84.117914320815672 ], [ -174.382502814815695, -84.534323012223567 ], [ -173.116559414745467, -84.117914320815672 ], [ -172.889105598012804, -84.061018568862337 ], [ -169.951222907571434, -83.884646905450126 ], [ -168.999988980158633, -84.117914320815672 ], [ -168.530198534193232, -84.237390232274478 ], [ -167.022099372403318, -84.570496514827909 ], [ -164.182143521155069, -84.825209649594584 ], [ -161.929774543281383, -85.138730564309384 ], [ -158.071379564424944, -85.373910007669707 ], [ -155.192252977499294, -85.09955982863211 ], [ -150.942098965438021, -85.295516859882881 ], [ -148.533072883071497, -85.609037774597667 ], [ -145.888918226332976, -85.31510222772161 ], [ -143.107718478600447, -85.040752048683913 ], [ -142.892279432375631, -84.570496514827909 ], [ -146.829068366463304, -84.531274102718342 ], [ -150.060731574483952, -84.296146335790382 ], [ -150.902928229760732, -83.904232273288841 ], [ -153.586201138300197, -83.688689874199355 ], [ -153.409906989536466, -83.238019708182065 ], [ -153.037759162386408, -82.826520277841809 ], [ -152.665637173452751, -82.454191583178812 ], [ -152.861516690055055, -82.042692152838541 ], [ -154.526298794553895, -81.768393650233321 ], [ -155.290179816692387, -81.415650323409039 ], [ -156.837449714159504, -81.102129408694253 ], [ -154.408786587522229, -81.16093718864245 ], [ -152.097661506132823, -81.004150893068783 ], [ -150.648292609642624, -81.337308852054591 ], [ -148.865998298112061, -81.043373305178335 ], [ -147.220749885019501, -80.671044610515438 ], [ -146.417748996191847, -80.337938327962007 ], [ -146.770286424731182, -79.926438897621921 ], [ -148.062946540296366, -79.652088718584224 ], [ -149.53190080462511, -79.358204848140446 ], [ -151.588416104112412, -79.299397068192235 ], [ -153.390321621697808, -79.162247816889675 ], [ -155.329376390585765, -79.064269301264204 ], [ -155.97566769104418, -78.691939799157041 ], [ -157.268301968393047, -78.378418884442254 ], [ -158.051768358370111, -78.025675557617902 ], [ -158.365134243787963, -76.889207458654951 ], [ -157.875474209606352, -76.987237650712615 ], [ -156.974573127245947, -77.300758565427515 ], [ -155.329376390585765, -77.202728373369752 ], [ -153.742832404576745, -77.065579122067263 ], [ -152.92024695535477, -77.496663920245993 ], [ -151.333780483994303, -77.398737081052801 ], [ -150.001949632751945, -77.183143005531193 ], [ -148.748486091080338, -76.908844502925973 ], [ -147.612483080008076, -76.575738220372529 ], [ -146.104408948989999, -76.477759704747058 ], [ -146.143528008234995, -76.105431010084246 ], [ -146.496091274990476, -75.733153991853541 ], [ -146.202309949967002, -75.380410665029189 ], [ -144.909623996185758, -75.204039001616962 ], [ -144.322037122811082, -75.53719696060277 ], [ -142.794352593182623, -75.341239929352 ], [ -141.638764214271617, -75.086475118152947 ], [ -140.209006523836166, -75.066889750314388 ], [ -138.857590304755348, -74.968911234688917 ], [ -137.506199923890449, -74.733783467760958 ], [ -136.428901339901927, -74.518241068671642 ], [ -135.214582695691291, -74.302698669582142 ], [ -134.431193820362608, -74.361454773097961 ], [ -133.745654269578552, -74.439847920884887 ], [ -132.257167928732059, -74.302698669582142 ], [ -130.925311239273583, -74.47901865656199 ], [ -129.554283814137762, -74.459433288723432 ], [ -128.24203833073426, -74.322284037420701 ], [ -126.890622111653244, -74.420262553046172 ], [ -125.402082479485784, -74.518241068671642 ], [ -124.011495524727607, -74.47901865656199 ], [ -122.562152466453611, -74.498604024400635 ], [ -121.073612834286237, -74.518241068671642 ], [ -119.702559570934227, -74.47901865656199 ], [ -118.684145474097932, -74.185083109685834 ], [ -117.469800991671207, -74.02834849054463 ], [ -116.216311611783411, -74.243890889633946 ], [ -115.021552497195415, -74.06751922622189 ], [ -113.944331427855076, -73.71482757582983 ], [ -113.297988450964482, -74.02834849054463 ], [ -112.94545182986937, -74.381040140936605 ], [ -112.299083014762587, -74.714198099922413 ], [ -111.261058519315625, -74.420262553046172 ], [ -110.066325242943734, -74.792539571276876 ], [ -108.714909023862731, -74.910103454740891 ], [ -107.559346483168113, -75.184453633778418 ], [ -106.149148322355018, -75.125697530262499 ], [ -104.876073574628663, -74.949325866850458 ], [ -103.367948574622659, -74.988496602527647 ], [ -102.016506517325652, -75.125697530262499 ], [ -100.645530768622308, -75.302017517242433 ], [ -100.116699998763266, -74.870932719063532 ], [ -100.763042975653946, -74.537826436510187 ], [ -101.252703009835528, -74.185083109685834 ], [ -102.545337287184509, -74.106741638331371 ], [ -103.113312954504536, -73.734412943668389 ], [ -103.328752000729281, -73.362084249005562 ], [ -103.681288621824393, -72.617530212544153 ], [ -102.917485114334355, -72.754679463846813 ], [ -101.605239630930726, -72.813435567362632 ], [ -100.312527838933448, -72.754679463846813 ], [ -99.137379930400101, -72.911414082988102 ], [ -98.118889126359477, -73.205349629864173 ], [ -97.688036872126105, -73.558041280256333 ], [ -96.336594814828914, -73.616849060204359 ], [ -95.043960537479848, -73.47969980890187 ], [ -93.672907274128107, -73.283742777650929 ], [ -92.439003262078955, -73.166178894187084 ], [ -91.420564134470709, -73.401306661115129 ], [ -90.088733283228436, -73.322913513328203 ], [ -89.226951260112941, -72.558722432595957 ], [ -88.42395117872951, -73.009392598613402 ], [ -87.268336961602614, -73.185764262025629 ], [ -86.01482174349843, -73.087785746400158 ], [ -85.192236294276569, -73.47969980890187 ], [ -83.879990810872755, -73.518870544578974 ], [ -82.66564632844603, -73.636434428043088 ], [ -81.470913052074138, -73.851976827132404 ], [ -80.687446662096988, -73.47969980890187 ], [ -80.295790981756994, -73.126956482077432 ], [ -79.296885545555, -73.518870544578974 ], [ -77.925858120419264, -73.420892028953588 ], [ -76.907367316378753, -73.636434428043088 ], [ -76.221879442027074, -73.969540710596419 ], [ -74.890048590784801, -73.871613871403412 ], [ -73.852024095337924, -73.656019795881633 ], [ -72.833533291297414, -73.401306661115129 ], [ -71.619214647086864, -73.264157409812384 ], [ -70.209042324489957, -73.146541849916076 ], [ -68.935915900331224, -73.009392598613402 ], [ -67.956621670184091, -72.793850199524087 ], [ -67.36906063502559, -72.480329284809301 ], [ -67.134036220962031, -72.049244486630386 ], [ -67.251548427993669, -71.637745056290299 ], [ -67.564940151627894, -71.245830993788758 ], [ -67.917476772723006, -70.853916931287046 ], [ -68.230842658140915, -70.462054545217796 ], [ -68.485452440043019, -70.109311218393515 ], [ -68.544208543558938, -69.717397155891973 ], [ -68.446281704365759, -69.325534769822724 ], [ -67.976232876238896, -68.953206075159727 ], [ -67.584499681250321, -68.54170664481947 ], [ -67.427842576757513, -68.149844258750221 ], [ -67.623670416927695, -67.718759460571476 ], [ -67.741182623959332, -67.326845398069935 ], [ -67.251548427993669, -66.876175232052404 ], [ -66.703183966728574, -66.582239685176248 ], [ -66.056815151621862, -66.209962666945628 ], [ -65.371327277270098, -65.89639007579855 ], [ -64.568275519454403, -65.602506205354672 ], [ -64.176542324465828, -65.171423022064445 ], [ -63.62815202498453, -64.897072843026749 ], [ -63.001394415932566, -64.642308031827866 ], [ -62.041685553623978, -64.583551928311948 ], [ -61.414927944572014, -64.270031013597162 ], [ -60.709854702381705, -64.074073982346391 ], [ -59.887269253159559, -63.956510098882369 ], [ -59.16258480491453, -63.701745287683572 ], [ -58.594557461162282, -63.388224372968601 ], [ -57.811142747617509, -63.270660489504579 ], [ -57.223581712458838, -63.525425300703638 ], [ -57.595729539608868, -63.858531583257069 ], [ -58.614142829000912, -64.152467130133147 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0.000000, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0.000000, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0.000000, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "brk_group": null, "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "formal_fr": null, "note_adm0": "Fr.", "note_brk": null, "name_sort": "French Southern and Antarctic Lands", "name_alt": null, "mapcolor7": 7.000000, "mapcolor8": 5.000000, "mapcolor9": 9.000000, "mapcolor13": 11.000000, "pop_est": 140.000000, "gdp_md_est": 16.000000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99.000000, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22.000000, "long_len": 35.000000, "abbrev_len": 10.000000, "tiny": 2.000000, "homepart": -99.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.935, -48.625 ], [ 69.58, -48.94 ], [ 70.525, -49.065 ], [ 70.56, -49.255 ], [ 70.28, -49.71 ], [ 68.745, -49.775 ], [ 68.72, -49.2425 ], [ 68.8675, -48.83 ], [ 68.935, -48.625 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0.000000, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0.000000, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0.000000, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "brk_group": null, "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Australia", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 2.000000, "mapcolor9": 2.000000, "mapcolor13": 7.000000, "pop_est": 21262641.000000, "gdp_md_est": 800200.000000, "pop_year": -99.000000, "lastcensus": 2006.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99.000000, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.397978143494839, -40.792548516605891 ], [ 146.364120721623721, -41.137695407883342 ], [ 146.908583612250851, -41.000546156580683 ], [ 147.689259474884153, -40.808258152022688 ], [ 148.289067824496016, -40.87543751400213 ], [ 148.359864536735842, -42.062445163746446 ], [ 148.017301467073111, -42.407023614268624 ], [ 147.914051955353813, -43.211522312188492 ], [ 147.564564243764011, -42.937688897473862 ], [ 146.870343052354968, -43.634597263362096 ], [ 146.663327264593676, -43.580853773778557 ], [ 146.048377720320417, -43.549744561538887 ], [ 145.431929559510564, -42.693776137056275 ], [ 145.295090366801702, -42.033609714527557 ], [ 144.718071323830628, -41.162551771815714 ], [ 144.743754510679679, -40.703975111657712 ], [ 145.397978143494839, -40.792548516605891 ] ] ], [ [ [ 143.561811151299963, -13.763655694232213 ], [ 143.922099237238939, -14.548310642152003 ], [ 144.563713820574861, -14.171176039285882 ], [ 144.894908075133543, -14.594457696188627 ], [ 145.374723748963476, -14.984976495018287 ], [ 145.271991001567272, -15.428205254785695 ], [ 145.485259637635778, -16.285672295804773 ], [ 145.637033319276981, -16.784918308176614 ], [ 145.8889042502677, -16.90692636481765 ], [ 146.160308872664501, -17.761654554925244 ], [ 146.06367394427869, -18.280072523677319 ], [ 146.387478469019612, -18.958274021075908 ], [ 147.471081577747924, -19.480722751546679 ], [ 148.177601760042506, -19.955939222902771 ], [ 148.848413527623251, -20.391209812097259 ], [ 148.717465448195611, -20.633468926681516 ], [ 149.289420200802084, -21.260510756111103 ], [ 149.678337030230665, -22.342511895438392 ], [ 150.077382440388618, -22.122783705333319 ], [ 150.482939081015189, -22.556142266533016 ], [ 150.727265252891215, -22.402404880464658 ], [ 150.899554478152282, -23.462236830338682 ], [ 151.60917524638424, -24.076256198830762 ], [ 152.073539666959078, -24.457886651306197 ], [ 152.855197381805937, -25.267501316023015 ], [ 153.13616214417678, -26.07117319102619 ], [ 153.161948683890415, -26.641319268502443 ], [ 153.092908970348589, -27.26029957449451 ], [ 153.569469028944212, -28.110066827102102 ], [ 153.512108189100246, -28.995077406532758 ], [ 153.339095493787084, -29.458201592732451 ], [ 153.069241164358885, -30.350240166954819 ], [ 153.089601678681817, -30.923641859665452 ], [ 152.891577590139406, -31.640445651985956 ], [ 152.450002476205356, -32.550002536755244 ], [ 151.709117466436822, -33.041342054986345 ], [ 151.343971795862416, -33.816023451473853 ], [ 151.01055545471516, -34.310360202777886 ], [ 150.714139439089053, -35.17345997491681 ], [ 150.328219842733262, -35.67187916437193 ], [ 150.075212030232279, -36.420205580390515 ], [ 149.946124302367167, -37.109052422841231 ], [ 149.997283970336156, -37.425260512035138 ], [ 149.423882277625552, -37.77268116633347 ], [ 148.304622430615922, -37.809061374666882 ], [ 147.381733026315288, -38.21921721776755 ], [ 146.922122837511353, -38.606532077795123 ], [ 146.317921991154805, -39.03575652441144 ], [ 145.489652134380577, -38.59376799901905 ], [ 144.876976353128185, -38.417448012039117 ], [ 145.03221235573298, -37.896187839510986 ], [ 144.485682407814039, -38.085323581699271 ], [ 143.609973586196105, -38.809465427405328 ], [ 142.745426873952994, -38.538267510737526 ], [ 142.178329705982009, -38.380034275059842 ], [ 141.606581659104705, -38.308514092767879 ], [ 140.63857872941324, -38.019332777662555 ], [ 139.992158237874349, -37.402936293285109 ], [ 139.806588169514072, -36.643602797188279 ], [ 139.574147577065247, -36.138362318670673 ], [ 139.082808058834104, -35.732754001611781 ], [ 138.120747918856324, -35.612296237939404 ], [ 138.449461704665026, -35.127261244447894 ], [ 138.207564325106688, -34.384722588845932 ], [ 137.719170363516156, -35.076825046531027 ], [ 136.829405552314739, -35.260534763328621 ], [ 137.352371047108505, -34.7073385556441 ], [ 137.503886346588359, -34.130267836240776 ], [ 137.890116001537677, -33.640478610978334 ], [ 137.81032759007914, -32.900007012668112 ], [ 136.996837192940376, -33.752771498348636 ], [ 136.37206912653167, -34.094766127256193 ], [ 135.989043410384369, -34.890118096660487 ], [ 135.208212518454133, -34.478670342752608 ], [ 135.239218377829189, -33.947953383114978 ], [ 134.613416782774635, -33.222778008763143 ], [ 134.085903761939136, -32.848072198214766 ], [ 134.273902622617044, -32.617233575166964 ], [ 132.990776808809841, -32.011224053680195 ], [ 132.288080682504898, -31.982646986622768 ], [ 131.326330601120929, -31.495803318001052 ], [ 129.535793898639696, -31.590422865527486 ], [ 128.240937534702226, -31.948488864877859 ], [ 127.102867466338324, -32.282266941051049 ], [ 126.148713820501172, -32.215966078420607 ], [ 125.088623488465629, -32.728751316052836 ], [ 124.221647983904944, -32.959486586236068 ], [ 124.028946567888539, -33.483847344701715 ], [ 123.659666782730739, -33.890179131812729 ], [ 122.811036411633637, -33.914467054989842 ], [ 122.183064406422858, -34.003402194964224 ], [ 121.299190708502607, -33.821036065406133 ], [ 120.580268182458127, -33.930176690406626 ], [ 119.89369510302825, -33.976065362281815 ], [ 119.29889936734881, -34.509366143533967 ], [ 119.00734093635802, -34.464149265278536 ], [ 118.505717808100798, -34.7468193499151 ], [ 118.024971958489544, -35.064732761374714 ], [ 117.295507440257467, -35.025458672832869 ], [ 116.625109084134948, -35.025096937806836 ], [ 115.564346958479717, -34.386427911111554 ], [ 115.026808709779544, -34.196517022438925 ], [ 115.048616164206777, -33.623425388322033 ], [ 115.545123325667106, -33.487257989232958 ], [ 115.714673700016675, -33.259571628554951 ], [ 115.679378696761404, -32.900368747694131 ], [ 115.801645135563973, -32.205062351207033 ], [ 115.689610630355133, -31.612437025683789 ], [ 115.160909051576965, -30.601594333622458 ], [ 114.997043084779449, -30.030724786094169 ], [ 115.040037876446291, -29.461095472940798 ], [ 114.641974318502008, -28.810230808224716 ], [ 114.616497837382184, -28.516398614213045 ], [ 114.173579136208474, -28.118076674107328 ], [ 114.048883905088161, -27.334765313427127 ], [ 113.477497593236905, -26.543134047147902 ], [ 113.338953078262506, -26.116545098578484 ], [ 113.778357782040274, -26.549025160429181 ], [ 113.440962355606615, -25.621278171493159 ], [ 113.936901076311671, -25.911234633082884 ], [ 114.232852004047317, -26.298446140245872 ], [ 114.216160516417034, -25.786281019801109 ], [ 113.721255324357713, -24.998938897402127 ], [ 113.625343866024053, -24.683971042583153 ], [ 113.393523390762681, -24.384764499613269 ], [ 113.502043898575636, -23.806350192970257 ], [ 113.706992629045175, -23.560215345964068 ], [ 113.843418410295698, -23.059987481378741 ], [ 113.7365515483161, -22.475475355725379 ], [ 114.149756300921894, -21.755881036061012 ], [ 114.225307244932679, -22.517488295178637 ], [ 114.647762078918703, -21.829519952076907 ], [ 115.460167270979326, -21.495173435148544 ], [ 115.947372674627019, -21.068687839443712 ], [ 116.711615431791557, -20.70168181730682 ], [ 117.166316359527713, -20.623598728113805 ], [ 117.441545037914267, -20.746898695562166 ], [ 118.22955895393298, -20.374208265873236 ], [ 118.836085239742744, -20.263310642174829 ], [ 118.987807244951767, -20.044202569257322 ], [ 119.252493931150667, -19.952941989829839 ], [ 119.805225050944586, -19.976506442954985 ], [ 120.856220330896662, -19.683707777589191 ], [ 121.399856398607227, -19.239755547769732 ], [ 121.655137974129076, -18.705317885007133 ], [ 122.241665480641785, -18.197648614171769 ], [ 122.286623976735683, -17.798603204013915 ], [ 122.312772251475423, -17.254967136303449 ], [ 123.012574497571933, -16.405199883695857 ], [ 123.433789097183052, -17.268558037996229 ], [ 123.859344517106621, -17.069035332917252 ], [ 123.503242222183275, -16.596506036040367 ], [ 123.817073195491929, -16.111316013251994 ], [ 124.258286574399875, -16.327943617419564 ], [ 124.379726190285822, -15.567059828353976 ], [ 124.926152785340065, -15.075100192935324 ], [ 125.167275018413903, -14.680395603090005 ], [ 125.670086704613851, -14.510070082256021 ], [ 125.685796340030521, -14.230655612853838 ], [ 126.12514936737611, -14.347340996968953 ], [ 126.142822707219892, -14.095986830301214 ], [ 126.582589146023764, -13.952791436420412 ], [ 127.065867140817346, -13.817967624570926 ], [ 127.804633416861947, -14.276906019755046 ], [ 128.359689976108967, -14.869169610252257 ], [ 128.985543247595928, -14.875990899314743 ], [ 129.621473423379626, -14.969783623924556 ], [ 129.409600050983016, -14.420669854391036 ], [ 129.888640578328619, -13.618703301653483 ], [ 130.339465773642956, -13.357375583553477 ], [ 130.183506300986011, -13.107520033422304 ], [ 130.617795037966999, -12.536392103732467 ], [ 131.223494500860028, -12.183648776908115 ], [ 131.735091180549517, -12.302452894747162 ], [ 132.575298293183124, -12.114040622611014 ], [ 132.55721154188106, -11.603012383676685 ], [ 131.824698114143672, -11.273781833545101 ], [ 132.357223748911423, -11.128519382372644 ], [ 133.019560581596437, -11.376411228076847 ], [ 133.550845981989056, -11.786515394745138 ], [ 134.393068475482011, -12.042365411022175 ], [ 134.67863244032705, -11.941182956594702 ], [ 135.298491245668032, -12.248606052299053 ], [ 135.882693312727639, -11.962266940969798 ], [ 136.258380975489473, -12.049341729381609 ], [ 136.492475213771655, -11.857208754120393 ], [ 136.951620314685016, -12.351958916882737 ], [ 136.685124953355768, -12.887223402562057 ], [ 136.305406528875125, -13.291229750219898 ], [ 135.961758254134139, -13.324509372615893 ], [ 136.077616815332561, -13.724278252825783 ], [ 135.783836297753254, -14.223989353088214 ], [ 135.428664178611228, -14.7154322241839 ], [ 135.500184360903205, -14.997740573794431 ], [ 136.295174595281395, -15.550264987859123 ], [ 137.065360142159506, -15.870762220933358 ], [ 137.580470819244823, -16.215082289294088 ], [ 138.303217401278999, -16.807604261952662 ], [ 138.585164015863398, -16.806622409739177 ], [ 139.108542922115504, -17.062679131745369 ], [ 139.260574985918225, -17.371600843986187 ], [ 140.215245396078302, -17.710804945550066 ], [ 140.87546349503927, -17.369068698803943 ], [ 141.071110467696286, -16.832047214426723 ], [ 141.274095493738827, -16.388870131091608 ], [ 141.398222284103809, -15.840531508042588 ], [ 141.702183058844668, -15.044921156476931 ], [ 141.563380161708693, -14.56133310308951 ], [ 141.635520461188122, -14.270394789286286 ], [ 141.519868605718983, -13.698078301653808 ], [ 141.650920038011037, -12.944687595270565 ], [ 141.842691278246235, -12.74154753993119 ], [ 141.686990187750808, -12.407614434461138 ], [ 141.928629185147571, -11.877465915578782 ], [ 142.118488397388006, -11.328042087451621 ], [ 142.143706496346368, -11.042736504768143 ], [ 142.515260044524979, -10.668185723516643 ], [ 142.797310011974076, -11.157354831591519 ], [ 142.866763136974299, -11.784706719614931 ], [ 143.115946893485699, -11.905629571177911 ], [ 143.158631626558787, -12.325655612846191 ], [ 143.522123651299893, -12.834358412327433 ], [ 143.597157830987697, -13.400422051652598 ], [ 143.561811151299963, -13.763655694232213 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0.000000, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0.000000, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0.000000, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "brk_group": null, "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Austria", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 1.000000, "mapcolor9": 3.000000, "mapcolor13": 4.000000, "pop_est": 8210281.000000, "gdp_md_est": 329500.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99.000000, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.979666782304037, 48.123497015976305 ], [ 16.903754103267261, 47.714865627628328 ], [ 16.340584344150415, 47.71290192320123 ], [ 16.534267612380376, 47.496170966169117 ], [ 16.202298211337364, 46.852385972676963 ], [ 16.011663852612656, 46.683610744811702 ], [ 15.137091912504985, 46.65870270444703 ], [ 14.632471551174829, 46.431817328469549 ], [ 13.806475457421527, 46.509306138691215 ], [ 12.376485223040817, 46.76755910906985 ], [ 12.153088006243054, 47.115393174826451 ], [ 11.164827915093269, 46.941579494812729 ], [ 11.048555942436536, 46.751358547546339 ], [ 10.442701450246631, 46.893546250997431 ], [ 9.932448357796659, 46.920728054382963 ], [ 9.479969516649021, 47.102809963563374 ], [ 9.632931756232978, 47.347601223329988 ], [ 9.59422610844635, 47.52505809182027 ], [ 9.89606814946319, 47.580196845075704 ], [ 10.402083774465211, 47.302487697939164 ], [ 10.544504021861627, 47.566399237653769 ], [ 11.426414015354737, 47.523766181012974 ], [ 12.141357456112788, 47.703083401065776 ], [ 12.620759718484493, 47.672387600284409 ], [ 12.932626987365948, 47.467645575543997 ], [ 13.025851271220491, 47.637583523135831 ], [ 12.884102817443903, 48.289145819687917 ], [ 13.243357374737, 48.416114813829054 ], [ 13.595945672264437, 48.877171942737149 ], [ 14.338897739324722, 48.555305284207208 ], [ 14.901447381254057, 48.964401760445824 ], [ 15.253415561593982, 49.039074205107582 ], [ 16.029647251050221, 48.73389903420793 ], [ 16.499282667718774, 48.785808010445109 ], [ 16.960288120194576, 48.5969823268506 ], [ 16.879982944413001, 48.47001333270947 ], [ 16.979666782304037, 48.123497015976305 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0.000000, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0.000000, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0.000000, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "brk_group": null, "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Azerbaijan", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 6.000000, "mapcolor9": 5.000000, "mapcolor13": 8.000000, "pop_est": 8238672.000000, "gdp_md_est": 77610.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99.000000, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.001987339056797, 39.740003567049598 ], [ 45.298144972521442, 39.471751207022436 ], [ 45.739978468617011, 39.473999131827156 ], [ 45.735379266143099, 39.3197191432198 ], [ 46.143623081248819, 38.741201483712217 ], [ 45.457721795438744, 38.874139105783115 ], [ 44.952688022650278, 39.335764675446427 ], [ 44.793989699082005, 39.713002631177034 ], [ 45.001987339056797, 39.740003567049598 ] ] ], [ [ [ 47.373315464066224, 41.219732367511256 ], [ 47.815665724484717, 41.151416124021353 ], [ 47.98728315612604, 41.40581920019423 ], [ 48.58435265482629, 41.808869533854676 ], [ 49.110263706260668, 41.282286688800525 ], [ 49.618914829309603, 40.572924302729973 ], [ 50.0848295428531, 40.526157131505784 ], [ 50.392821079312711, 40.256561184239104 ], [ 49.569202101444802, 40.176100979160708 ], [ 49.395259230350433, 39.399481716462248 ], [ 49.223228387250714, 39.049218858387917 ], [ 48.856532423707591, 38.815486355131782 ], [ 48.883249139202547, 38.320245266262646 ], [ 48.634375441284845, 38.270377509100939 ], [ 48.010744256386516, 38.794014797514535 ], [ 48.355529412637935, 39.288764960276893 ], [ 48.06009524922527, 39.582235419262446 ], [ 47.685079380083124, 39.508363959301192 ], [ 46.505719842317973, 38.770605373686266 ], [ 46.483498976432458, 39.464154771475535 ], [ 46.034534132680704, 39.628020738273051 ], [ 45.610012241402927, 39.899993801425182 ], [ 45.891907179555147, 40.218475653639985 ], [ 45.35917483905817, 40.561503811193489 ], [ 45.560351189970476, 40.812289537105954 ], [ 45.179495883979399, 40.985353908851437 ], [ 44.972480096218163, 41.24812856705563 ], [ 45.217426385281641, 41.411451931314048 ], [ 45.962600538930445, 41.123872585609803 ], [ 46.501637404166985, 41.064444688474111 ], [ 46.637908156120574, 41.181672675128226 ], [ 46.145431756378997, 41.722802435872637 ], [ 46.404950799348825, 41.860675157227348 ], [ 46.686070591016659, 41.827137152669906 ], [ 47.373315464066224, 41.219732367511256 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0.000000, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0.000000, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0.000000, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "brk_group": null, "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Burundi", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 5.000000, "mapcolor13": 8.000000, "pop_est": 8988091.000000, "gdp_md_est": 3102.000000, "pop_year": -99.000000, "lastcensus": 2008.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99.000000, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.339997592900346, -4.499983412294092 ], [ 29.276383904749053, -3.293907159034063 ], [ 29.024926385216787, -2.839257907730158 ], [ 29.632176141078588, -2.917857761246097 ], [ 29.938359002407939, -2.348486830254238 ], [ 30.469696079232989, -2.413857517103459 ], [ 30.527677036264464, -2.807631931167535 ], [ 30.743012729624699, -3.034284763199686 ], [ 30.752262811004954, -3.35932952231557 ], [ 30.505559523243566, -3.568567396665365 ], [ 30.11633263522117, -4.090137627787243 ], [ 29.753512404099922, -4.452389418153281 ], [ 29.339997592900346, -4.499983412294092 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0.000000, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0.000000, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0.000000, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "brk_group": null, "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Belgium", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 2.000000, "mapcolor9": 1.000000, "mapcolor13": 8.000000, "pop_est": 10414336.000000, "gdp_md_est": 389300.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99.000000, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.314971144228537, 51.345780951536085 ], [ 4.047071160507528, 51.26725861266857 ], [ 4.973991326526914, 51.475023708698131 ], [ 5.606975945670001, 51.037298488969782 ], [ 6.15665815595878, 50.803721015010581 ], [ 6.043073357781111, 50.128051662794235 ], [ 5.782417433300907, 50.09032786722122 ], [ 5.674051954784829, 49.529483547557504 ], [ 4.79922163251581, 49.985373033236385 ], [ 4.286022983425084, 49.907496649772554 ], [ 3.588184441755686, 50.378992418003577 ], [ 3.123251580425801, 50.780363267614575 ], [ 2.658422071960274, 50.796848049515745 ], [ 2.513573032246143, 51.148506171261829 ], [ 3.314971144228537, 51.345780951536085 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0.000000, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0.000000, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0.000000, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "brk_group": null, "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Benin", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 2.000000, "mapcolor9": 2.000000, "mapcolor13": 12.000000, "pop_est": 8791832.000000, "gdp_md_est": 12830.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99.000000, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.691701694356254, 6.258817246928629 ], [ 1.865240512712319, 6.142157701029731 ], [ 1.618950636409238, 6.832038072126238 ], [ 1.664477573258381, 9.128590399609379 ], [ 1.46304284018467, 9.334624335157088 ], [ 1.425060662450136, 9.825395412633 ], [ 1.077795037448738, 10.175606594275024 ], [ 0.772335646171484, 10.470808213742359 ], [ 0.899563022474069, 10.99733938236426 ], [ 1.243469679376489, 11.110510769083461 ], [ 1.447178175471066, 11.547719224488858 ], [ 1.935985548519881, 11.641150214072553 ], [ 2.154473504249921, 11.940150051313339 ], [ 2.49016360841793, 12.233052069543675 ], [ 2.848643019226671, 12.235635891158267 ], [ 3.611180454125559, 11.660167141155968 ], [ 3.572216424177469, 11.32793935795152 ], [ 3.797112257511714, 10.734745591673105 ], [ 3.600070021182802, 10.332186184119408 ], [ 3.705438266625919, 10.063210354040208 ], [ 3.220351596702101, 9.444152533399702 ], [ 2.912308383810256, 9.137607937044322 ], [ 2.723792758809509, 8.506845404489709 ], [ 2.74906253420022, 7.870734361192888 ], [ 2.691701694356254, 6.258817246928629 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0.000000, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0.000000, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0.000000, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "brk_group": null, "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Burkina Faso", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 1.000000, "mapcolor9": 5.000000, "mapcolor13": 11.000000, "pop_est": 15746232.000000, "gdp_md_est": 17820.000000, "pop_year": -99.000000, "lastcensus": 2006.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99.000000, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12.000000, "long_len": 12.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.827496303712707, 9.642460842319778 ], [ -3.511898972986273, 9.90032623945622 ], [ -3.980449184576685, 9.8623440617217 ], [ -4.330246954760383, 9.610834865757141 ], [ -4.779883592131966, 9.821984768101743 ], [ -4.954653286143099, 10.152713934769736 ], [ -5.404341599946974, 10.370736802609146 ], [ -5.470564947929006, 10.951269842976048 ], [ -5.197842576508648, 11.37514577885014 ], [ -5.220941941743121, 11.713858954307227 ], [ -4.427166103523803, 12.542645575404295 ], [ -4.28040503581488, 13.228443508349741 ], [ -4.006390753587226, 13.472485459848116 ], [ -3.522802700199861, 13.337661647998615 ], [ -3.10370683431276, 13.541266791228594 ], [ -2.967694464520577, 13.79815033615151 ], [ -2.191824510090385, 14.246417548067356 ], [ -2.001035122068771, 14.559008287000893 ], [ -1.066363491205664, 14.973815009007765 ], [ -0.515854458000348, 15.116157741755728 ], [ -0.26625729003058, 14.924308986872148 ], [ 0.374892205414682, 14.92890818934613 ], [ 0.295646396495101, 14.444234930880654 ], [ 0.429927605805517, 13.988733018443924 ], [ 0.993045688490071, 13.335749620003824 ], [ 1.024103224297477, 12.851825669806574 ], [ 2.177107781593776, 12.625017808477535 ], [ 2.154473504249921, 11.940150051313339 ], [ 1.935985548519881, 11.641150214072553 ], [ 1.447178175471066, 11.547719224488858 ], [ 1.243469679376489, 11.110510769083461 ], [ 0.899563022474069, 10.99733938236426 ], [ 0.023802524423701, 11.018681748900804 ], [ -0.438701544588582, 11.098340969278722 ], [ -0.761575893548183, 10.936929633015055 ], [ -1.203357713211432, 11.009819240762738 ], [ -2.940409308270461, 10.962690334512558 ], [ -2.963896246747112, 10.395334784380083 ], [ -2.827496303712707, 9.642460842319778 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0.000000, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0.000000, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0.000000, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "brk_group": null, "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bangladesh", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 4.000000, "mapcolor9": 7.000000, "mapcolor13": 7.000000, "pop_est": 156050883.000000, "gdp_md_est": 224000.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99.000000, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.672720981825563, 22.041238918541254 ], [ 92.65225711463799, 21.324047552978485 ], [ 92.303234490938678, 21.475485337809818 ], [ 92.36855350135562, 20.670883287025347 ], [ 92.082886183646139, 21.19219513598577 ], [ 92.02521528520839, 21.701569729086767 ], [ 91.834890985077436, 22.182935695885565 ], [ 91.41708702999766, 22.765019029221222 ], [ 90.496006300827275, 22.805016587815128 ], [ 90.586956821660976, 22.392793687422866 ], [ 90.272970819055558, 21.836367702720111 ], [ 89.847467075564282, 22.039146023033425 ], [ 89.702049595094934, 21.857115790285306 ], [ 89.418862746135488, 21.966178900637299 ], [ 89.031961297566227, 22.055708319582976 ], [ 88.876311883503092, 22.87914642993783 ], [ 88.529769728553788, 23.631141872649167 ], [ 88.699940220090923, 24.23371491138856 ], [ 88.084422235062419, 24.501657212821925 ], [ 88.306372511756024, 24.866079413344206 ], [ 88.931553989623083, 25.238692328384776 ], [ 88.209789259802506, 25.768065700782714 ], [ 88.563049350949768, 26.446525580342723 ], [ 89.35509402868729, 26.014407253518073 ], [ 89.832480910199621, 25.965082098895479 ], [ 89.920692580121852, 25.269749864192178 ], [ 90.872210727912119, 25.132600612889547 ], [ 91.79959598182208, 25.147431748957317 ], [ 92.376201613334814, 24.976692816664965 ], [ 91.915092807994426, 24.130413723237112 ], [ 91.467729933643682, 24.072639471934792 ], [ 91.158963250699728, 23.503526923104388 ], [ 91.706475050832111, 22.985263983649187 ], [ 91.869927606171316, 23.624346421802784 ], [ 92.146034783906813, 23.627498684172593 ], [ 92.672720981825563, 22.041238918541254 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0.000000, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0.000000, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0.000000, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "brk_group": null, "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bulgaria", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 5.000000, "mapcolor9": 1.000000, "mapcolor13": 8.000000, "pop_est": 7204687.000000, "gdp_md_est": 93750.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99.000000, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.657149692482989, 44.234923000661283 ], [ 22.944832391051847, 43.82378530534713 ], [ 23.332302280376325, 43.897010809904714 ], [ 24.100679152124172, 43.741051337247853 ], [ 25.569271681426926, 43.688444729174719 ], [ 26.065158725699746, 43.943493760751267 ], [ 27.242399529740908, 44.175986029632405 ], [ 27.970107049275075, 43.812468166675217 ], [ 28.558081495891997, 43.707461656258133 ], [ 28.039095086384719, 43.293171698574184 ], [ 27.673897739378049, 42.577892361006221 ], [ 27.99672041190539, 42.007358710287789 ], [ 27.13573937349048, 42.141484890301342 ], [ 26.1170418637208, 41.826904608724561 ], [ 26.106138136507212, 41.32889883072778 ], [ 25.197201368925448, 41.23448598893053 ], [ 24.492644891058035, 41.583896185872035 ], [ 23.692073601992348, 41.309080918943856 ], [ 22.952377150166452, 41.337993882811148 ], [ 22.881373732197432, 41.999297186850256 ], [ 22.380525750424592, 42.320259507815088 ], [ 22.545011834409621, 42.46136200618804 ], [ 22.43659467946128, 42.580321153323936 ], [ 22.604801466571331, 42.898518785161144 ], [ 22.986018507588483, 43.211161200526966 ], [ 22.50015669118028, 43.642814439460992 ], [ 22.410446404721597, 44.008063462899955 ], [ 22.657149692482989, 44.234923000661283 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0.000000, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0.000000, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0.000000, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "brk_group": null, "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bahamas, The", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 1.000000, "mapcolor9": 2.000000, "mapcolor13": 5.000000, "pop_est": 309156.000000, "gdp_md_est": 9093.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99.000000, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.53466, 23.75975 ], [ -77.78, 23.71 ], [ -78.03405, 24.28615 ], [ -78.40848, 24.57564 ], [ -78.19087, 25.2103 ], [ -77.89, 25.17 ], [ -77.54, 24.34 ], [ -77.53466, 23.75975 ] ] ], [ [ [ -77.82, 26.58 ], [ -78.91, 26.42 ], [ -78.98, 26.79 ], [ -78.51, 26.87 ], [ -77.85, 26.84 ], [ -77.82, 26.58 ] ] ], [ [ [ -77.0, 26.59 ], [ -77.17255, 25.87918 ], [ -77.35641, 26.00735 ], [ -77.34, 26.53 ], [ -77.78802, 26.92516 ], [ -77.79, 27.04 ], [ -77.0, 26.59 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0.000000, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0.000000, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0.000000, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "brk_group": null, "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bosnia and Herzegovina", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 1.000000, "mapcolor9": 1.000000, "mapcolor13": 2.000000, "pop_est": 4613414.000000, "gdp_md_est": 29700.000000, "pop_year": -99.000000, "lastcensus": 1991.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99.000000, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16.000000, "long_len": 22.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.005486281010121, 44.860233669609158 ], [ 19.36803, 44.863 ], [ 19.11761, 44.423070000000109 ], [ 19.59976, 44.03847 ], [ 19.454, 43.568100000000129 ], [ 19.21852, 43.52384 ], [ 19.03165, 43.43253 ], [ 18.70648, 43.20011 ], [ 18.56, 42.65 ], [ 17.674921502358984, 43.02856252702361 ], [ 17.297373488034452, 43.446340643887368 ], [ 16.916156447017329, 43.66772247982567 ], [ 16.456442905348865, 44.041239732431279 ], [ 16.239660271884532, 44.351143296885709 ], [ 15.750026075918981, 44.818711656262565 ], [ 15.959367303133376, 45.233776760430942 ], [ 16.318156772535872, 45.004126695325908 ], [ 16.534939406000206, 45.211607570977719 ], [ 17.002146030351014, 45.233776760430942 ], [ 17.861783481526402, 45.067740383477144 ], [ 18.553214145591653, 45.081589667331457 ], [ 19.005486281010121, 44.860233669609158 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0.000000, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0.000000, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0.000000, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "brk_group": null, "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Belarus", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 1.000000, "mapcolor9": 5.000000, "mapcolor13": 11.000000, "pop_est": 9648533.000000, "gdp_md_est": 114100.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99.000000, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.484127638449849, 53.912497667041137 ], [ 24.450683628037037, 53.905702216194754 ], [ 25.536353794056993, 54.282423407602529 ], [ 25.768432651479799, 54.846962592175089 ], [ 26.588279249790389, 55.167175604871673 ], [ 26.494331495883756, 55.615106919977634 ], [ 27.102459751094528, 55.783313707087686 ], [ 28.176709425577997, 56.169129950578814 ], [ 29.229513380660308, 55.918344224666363 ], [ 29.371571893030673, 55.670090643936184 ], [ 29.896294386522356, 55.789463202530413 ], [ 30.87390913262001, 55.550976467503411 ], [ 30.971835971813135, 55.081547756564042 ], [ 30.757533807098721, 54.811770941784317 ], [ 31.38447228366374, 54.157056382862436 ], [ 31.791424187962239, 53.974638576872124 ], [ 31.731272820774507, 53.794029446012019 ], [ 32.405598585751164, 53.618045355842042 ], [ 32.693643019346041, 53.35142080343212 ], [ 32.304519484188233, 53.13272614197291 ], [ 31.497643670382931, 53.167426866256903 ], [ 31.305200636528014, 53.073995876673209 ], [ 31.540018344862261, 52.742052313846358 ], [ 31.785998162571587, 52.101677964885454 ], [ 30.927549269338982, 52.04235342061439 ], [ 30.619454380014844, 51.822806098022376 ], [ 30.555117221811457, 51.319503485715657 ], [ 30.157363722460897, 51.416138414101468 ], [ 29.254938185347925, 51.368234361366895 ], [ 28.992835320763533, 51.602044379271476 ], [ 28.617612745892249, 51.427713934934843 ], [ 28.241615024536571, 51.572227077839067 ], [ 27.454066196408434, 51.592303371784467 ], [ 26.337958611768556, 51.832288723347929 ], [ 25.327787713327009, 51.910656032918553 ], [ 24.553106316839518, 51.888461005249184 ], [ 24.00507775238421, 51.617443956094462 ], [ 23.527070753684374, 51.57845408793024 ], [ 23.508002150168693, 52.023646552124731 ], [ 23.199493849386187, 52.486977444053672 ], [ 23.799198846133379, 52.691099351606567 ], [ 23.804934930117781, 53.089731350306074 ], [ 23.527535841575002, 53.470121568406555 ], [ 23.484127638449849, 53.912497667041137 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0.000000, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0.000000, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0.000000, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "brk_group": null, "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Belize", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 5.000000, "mapcolor13": 7.000000, "pop_est": 307899.000000, "gdp_md_est": 2536.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99.000000, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143080410503316, 17.808318996649319 ], [ -89.150909389995533, 17.955467637600421 ], [ -89.029857347351822, 18.001511338772488 ], [ -88.848343878926613, 17.883198147040233 ], [ -88.490122850279349, 18.486830552641607 ], [ -88.300031094093697, 18.499982204659901 ], [ -88.296336229184817, 18.353272813383271 ], [ -88.106812913754382, 18.348673610909287 ], [ -88.123478563168504, 18.07667470954101 ], [ -88.285354987322805, 17.644142971258034 ], [ -88.197866787452654, 17.489475409408456 ], [ -88.302640753924436, 17.131693630435663 ], [ -88.239517991879907, 17.036066392479555 ], [ -88.355428229510565, 16.530774237529627 ], [ -88.55182451043585, 16.265467434143147 ], [ -88.732433641295941, 16.233634751851355 ], [ -88.930612759135272, 15.887273464415076 ], [ -89.229121670269279, 15.886937567605171 ], [ -89.150806037130948, 17.015576687075836 ], [ -89.143080410503316, 17.808318996649319 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0.000000, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0.000000, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0.000000, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "brk_group": null, "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bolivia", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 5.000000, "mapcolor9": 2.000000, "mapcolor13": 3.000000, "pop_est": 9775246.000000, "gdp_md_est": 43270.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99.000000, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 7.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.846468471921561, -22.034985446869449 ], [ -63.986838141522476, -21.99364430103595 ], [ -64.377021043542257, -22.79809132252354 ], [ -64.964892137294612, -22.075861504812327 ], [ -66.273339402924847, -21.83231047942072 ], [ -67.106673550063604, -22.735924574476417 ], [ -67.828179897722734, -22.872918796482175 ], [ -68.21991309271128, -21.494346612231865 ], [ -68.757167121033746, -20.372657972904463 ], [ -68.442225104430918, -19.405068454671429 ], [ -68.966818406841867, -18.981683444904107 ], [ -69.100246955019486, -18.260125420812678 ], [ -69.59042375352405, -17.580011895419332 ], [ -68.959635382753305, -16.50069793057127 ], [ -69.389764166934711, -15.660129082911652 ], [ -69.160346645774951, -15.323973890853019 ], [ -69.339534674747014, -14.953195489158832 ], [ -68.948886684836594, -14.453639418193283 ], [ -68.92922380234954, -13.602683607643009 ], [ -68.88007951523997, -12.899729099176653 ], [ -68.665079718689626, -12.561300144097173 ], [ -69.529678107364958, -10.951734307502194 ], [ -68.786157599549483, -11.03638030359628 ], [ -68.271253628193264, -11.014521172736821 ], [ -68.048192308205387, -10.712059014532485 ], [ -67.173801235610739, -10.306812432499612 ], [ -66.646908331962806, -9.931331475466862 ], [ -65.338435228116424, -9.761987806846392 ], [ -65.444837002205389, -10.511451104375432 ], [ -65.321898769783019, -10.895872084194679 ], [ -65.402281460213032, -11.566270440317155 ], [ -64.316352912031604, -12.461978041232193 ], [ -63.196498786050569, -12.627032565972435 ], [ -62.803060268796386, -13.000653171442686 ], [ -62.127080857986385, -13.198780612849724 ], [ -61.713204311760776, -13.489202162330052 ], [ -61.084121263255653, -13.479383640194598 ], [ -60.503304002511136, -13.775954685117659 ], [ -60.459198167550028, -14.354007256734555 ], [ -60.26432634137737, -14.645979099183641 ], [ -60.251148851142936, -15.07721892665932 ], [ -60.542965664295153, -15.093910414289596 ], [ -60.158389655179036, -16.258283786690086 ], [ -58.24121985536668, -16.299573256091293 ], [ -58.388058437724041, -16.877109063385276 ], [ -58.280804002502251, -17.271710300366017 ], [ -57.734558274961003, -17.552468357007768 ], [ -57.498371141170992, -18.174187513911292 ], [ -57.676008877174311, -18.961839694904029 ], [ -57.949997321185826, -19.400004164306822 ], [ -57.853801642474508, -19.969995212486189 ], [ -58.166392381408045, -20.176700941653678 ], [ -58.183471442280506, -19.868399346600363 ], [ -59.115042487206111, -19.356906019775401 ], [ -60.043564622626491, -19.342746677327426 ], [ -61.786326463453769, -19.633736667562964 ], [ -62.265961269770798, -20.513734633061276 ], [ -62.291179368729225, -21.051634616787393 ], [ -62.685057135657885, -22.249029229422387 ], [ -62.846468471921561, -22.034985446869449 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0.000000, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0.000000, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0.000000, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "brk_group": null, "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Brazil", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 6.000000, "mapcolor9": 5.000000, "mapcolor13": 7.000000, "pop_est": 198739269.000000, "gdp_md_est": 1993000.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99.000000, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.625133429582959, -30.216294854454262 ], [ -56.290899624239081, -28.852760512000895 ], [ -55.162286342984572, -27.881915378533463 ], [ -54.490725267135524, -27.474756768505792 ], [ -53.648735317587892, -26.92347258881609 ], [ -53.628348965048744, -26.124865004177472 ], [ -54.13004960795439, -25.547639255477254 ], [ -54.625290696823576, -25.739255466415514 ], [ -54.428946092330591, -25.162184747012166 ], [ -54.293476325077449, -24.570799655863965 ], [ -54.292959560754518, -24.021014092710729 ], [ -54.652834235235133, -23.839578138933959 ], [ -55.02790178080955, -24.001273695575229 ], [ -55.400747239795422, -23.956935316668805 ], [ -55.517639329639636, -23.571997572526637 ], [ -55.610682745981144, -22.655619398694846 ], [ -55.797958136606908, -22.356929620047822 ], [ -56.473317430229393, -22.086300144135283 ], [ -56.881509568902899, -22.282153822521479 ], [ -57.937155727761294, -22.090175876557172 ], [ -57.8706739976178, -20.732687676681952 ], [ -58.166392381408045, -20.176700941653678 ], [ -57.853801642474508, -19.969995212486189 ], [ -57.949997321185826, -19.400004164306822 ], [ -57.676008877174311, -18.961839694904029 ], [ -57.498371141170992, -18.174187513911292 ], [ -57.734558274961003, -17.552468357007768 ], [ -58.280804002502251, -17.271710300366017 ], [ -58.388058437724041, -16.877109063385276 ], [ -58.24121985536668, -16.299573256091293 ], [ -60.158389655179036, -16.258283786690086 ], [ -60.542965664295153, -15.093910414289596 ], [ -60.251148851142936, -15.07721892665932 ], [ -60.26432634137737, -14.645979099183641 ], [ -60.459198167550028, -14.354007256734555 ], [ -60.503304002511136, -13.775954685117659 ], [ -61.084121263255653, -13.479383640194598 ], [ -61.713204311760776, -13.489202162330052 ], [ -62.127080857986385, -13.198780612849724 ], [ -62.803060268796386, -13.000653171442686 ], [ -63.196498786050569, -12.627032565972435 ], [ -64.316352912031604, -12.461978041232193 ], [ -65.402281460213032, -11.566270440317155 ], [ -65.321898769783019, -10.895872084194679 ], [ -65.444837002205389, -10.511451104375432 ], [ -65.338435228116424, -9.761987806846392 ], [ -66.646908331962806, -9.931331475466862 ], [ -67.173801235610739, -10.306812432499612 ], [ -68.048192308205387, -10.712059014532485 ], [ -68.271253628193264, -11.014521172736821 ], [ -68.786157599549483, -11.03638030359628 ], [ -69.529678107364958, -10.951734307502194 ], [ -70.093752204046893, -11.123971856331012 ], [ -70.548685675728407, -11.009146823778465 ], [ -70.481893886991173, -9.490118096558845 ], [ -71.302412278921537, -10.079436130415374 ], [ -72.18489071316985, -10.053597914269432 ], [ -72.563033006465645, -9.520193780152717 ], [ -73.226713426390162, -9.462212823121234 ], [ -73.015382656532552, -9.032833347208062 ], [ -73.571059332967067, -8.424446709835834 ], [ -73.987235480429661, -7.523829847853065 ], [ -73.723401455363501, -7.340998630404414 ], [ -73.724486660441642, -6.91859547285064 ], [ -73.120027431923603, -6.629930922068239 ], [ -73.21971126981461, -6.089188734566078 ], [ -72.9645072089412, -5.741251315944893 ], [ -72.891927659787257, -5.274561455916981 ], [ -71.748405727816547, -4.593982842633011 ], [ -70.928843349883579, -4.401591485210368 ], [ -70.794768846302304, -4.251264743673303 ], [ -69.893635219996625, -4.298186944194327 ], [ -69.444101935489613, -1.556287123219818 ], [ -69.420485805932231, -1.122618503426409 ], [ -69.5770653957766, -0.549991957200163 ], [ -70.020655890570055, -0.185156345219539 ], [ -70.015565761989308, 0.541414292804205 ], [ -69.452396002872462, 0.706158758950693 ], [ -69.252434048119056, 0.602650865070075 ], [ -69.21863766140018, 0.985676581217433 ], [ -69.80459672715773, 1.089081122233466 ], [ -69.816973232691623, 1.714805202639624 ], [ -67.868565029558837, 1.692455145673392 ], [ -67.537810024674698, 2.03716278727633 ], [ -67.259997524673594, 1.719998684084956 ], [ -67.065048183852497, 1.130112209473225 ], [ -66.87632585312258, 1.253360500489336 ], [ -66.325765143484958, 0.724452215982012 ], [ -65.548267381437569, 0.78925446207603 ], [ -65.354713304288367, 1.0952822941085 ], [ -64.611011928959869, 1.328730576987042 ], [ -64.199305792890513, 1.49285492594602 ], [ -64.083085496666087, 1.91636912679408 ], [ -63.368788011311665, 2.200899562993129 ], [ -63.422867397705119, 2.411067613124175 ], [ -64.269999152265797, 2.497005520025567 ], [ -64.408827887617917, 3.126786200366624 ], [ -64.368494432214106, 3.797210394705246 ], [ -64.816064012294021, 4.056445217297423 ], [ -64.628659430587547, 4.14848094320925 ], [ -63.888342861574159, 4.020530096854571 ], [ -63.093197597899106, 3.770571193858785 ], [ -62.804533047116706, 4.006965033377952 ], [ -62.085429653559132, 4.162123521334308 ], [ -60.966893276601539, 4.536467596856639 ], [ -60.601179165271944, 4.91809804933213 ], [ -60.733574184803722, 5.200277207861901 ], [ -60.213683437731333, 5.244486395687602 ], [ -59.980958624904886, 5.014061184098139 ], [ -60.11100236676738, 4.574966538914083 ], [ -59.767405768458715, 4.423502915866607 ], [ -59.538039923731233, 3.958802598481938 ], [ -59.815413174057866, 3.606498521332085 ], [ -59.974524909084558, 2.755232652188056 ], [ -59.718545701726747, 2.24963043864436 ], [ -59.646043667221257, 1.786893825686789 ], [ -59.030861579002647, 1.317697658692722 ], [ -58.540012986878295, 1.268088283692521 ], [ -58.429477098205965, 1.463941962078721 ], [ -58.113449876525017, 1.507195135907025 ], [ -57.660971035377372, 1.682584947105639 ], [ -57.335822923396904, 1.948537705895759 ], [ -56.782704230360828, 1.863710842288654 ], [ -56.539385748914555, 1.899522609866921 ], [ -55.995698004771754, 1.817667141116601 ], [ -55.905600145070885, 2.02199575439866 ], [ -56.073341844290297, 2.220794989425499 ], [ -55.973322109589375, 2.510363877773017 ], [ -55.569755011605999, 2.421506252447131 ], [ -55.097587449755139, 2.523748073736613 ], [ -54.524754197799716, 2.311848863123785 ], [ -54.08806250671725, 2.105556545414629 ], [ -53.778520677288917, 2.376702785650082 ], [ -53.554839240113544, 2.334896551925951 ], [ -53.418465135295307, 2.053389187015981 ], [ -52.939657151894956, 2.124857692875636 ], [ -52.556424730018421, 2.504705308437053 ], [ -52.249337531123956, 3.241094468596245 ], [ -51.657797410678889, 4.156232408053029 ], [ -51.317146369010857, 4.203490505383954 ], [ -51.069771287629656, 3.650397650564031 ], [ -50.508875291533656, 1.901563828942457 ], [ -49.974075893745059, 1.736483465986069 ], [ -49.947100796088712, 1.046189683431223 ], [ -50.699251268096916, 0.222984117021682 ], [ -50.388210822132137, -0.078444512536819 ], [ -48.62056677915632, -0.235489190271821 ], [ -48.584496629416591, -1.237805271005001 ], [ -47.824956427590635, -0.5816179337628 ], [ -46.566583624851226, -0.941027520352776 ], [ -44.905703090990414, -1.551739597178134 ], [ -44.417619187993665, -2.137750339367976 ], [ -44.581588507655781, -2.691308282078524 ], [ -43.418791266440195, -2.383110039889793 ], [ -41.472656826328247, -2.912018324397116 ], [ -39.978665330554037, -2.873054294449041 ], [ -38.500383470196567, -3.700652357603396 ], [ -37.2232521225352, -4.820945733258917 ], [ -36.452937384576387, -5.109403578312154 ], [ -35.597795783010469, -5.149504489770649 ], [ -35.23538896334756, -5.464937432480247 ], [ -34.896029832486832, -6.738193047719711 ], [ -34.729993455533034, -7.343220716992967 ], [ -35.128212042774223, -8.996401462442286 ], [ -35.636966518687714, -9.649281508017815 ], [ -37.046518724096998, -11.040721123908803 ], [ -37.683611619607362, -12.171194756725823 ], [ -38.423876512188443, -13.038118584854288 ], [ -38.673887091616521, -13.057652276260619 ], [ -38.953275722802545, -13.793369642800023 ], [ -38.882298143049653, -15.667053724838768 ], [ -39.161092495264313, -17.208406670808472 ], [ -39.267339240056401, -17.867746270420483 ], [ -39.583521491034233, -18.262295830968938 ], [ -39.760823330227637, -19.599113457927409 ], [ -40.774740770010339, -20.904511814052423 ], [ -40.944756232250612, -21.937316989837811 ], [ -41.754164191238225, -22.370675551037458 ], [ -41.98828426773656, -22.970070489190896 ], [ -43.074703742024752, -22.967693373305469 ], [ -44.647811855637812, -23.351959323827842 ], [ -45.352135789559917, -23.796841729428582 ], [ -46.472093268405537, -24.088968601174543 ], [ -47.648972337420659, -24.885199069927722 ], [ -48.495458136577703, -25.877024834905654 ], [ -48.64100480812774, -26.623697605090932 ], [ -48.474735887228654, -27.175911960561891 ], [ -48.661520351747626, -28.18613453543572 ], [ -48.8884574041574, -28.674115085567884 ], [ -49.587329474472675, -29.224469089476337 ], [ -50.696874152211485, -30.98446502047296 ], [ -51.576226162306156, -31.777698256153212 ], [ -52.256081305538046, -32.24536996839467 ], [ -52.712099982297694, -33.196578057591182 ], [ -53.373661668498244, -33.768377780900764 ], [ -53.650543992718099, -33.20200408298183 ], [ -53.209588995971544, -32.727666110974724 ], [ -53.787951626182192, -32.047242526987624 ], [ -54.572451544805119, -31.494511407193748 ], [ -55.601510179249345, -30.853878676071393 ], [ -55.973244594940937, -30.883075860316303 ], [ -56.976025763564735, -30.109686374636127 ], [ -57.625133429582959, -30.216294854454262 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0.000000, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0.000000, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0.000000, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "brk_group": null, "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Brunei", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 6.000000, "mapcolor9": 6.000000, "mapcolor13": 12.000000, "pop_est": 388190.000000, "gdp_md_est": 20250.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99.000000, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6.000000, "long_len": 17.000000, "abbrev_len": 6.000000, "tiny": 2.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.204016554828371, 4.525873928236805 ], [ 114.599961379048722, 4.900011298029966 ], [ 115.450710483869813, 5.447729803891534 ], [ 115.405700311343608, 4.955227565933839 ], [ 115.347460972150657, 4.316636053887009 ], [ 114.869557326315402, 4.348313706881925 ], [ 114.659595981913526, 4.007636826997754 ], [ 114.204016554828371, 4.525873928236805 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0.000000, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0.000000, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0.000000, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "brk_group": null, "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bhutan", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 6.000000, "mapcolor9": 1.000000, "mapcolor13": 8.000000, "pop_est": 691141.000000, "gdp_md_est": 3524.000000, "pop_year": -99.000000, "lastcensus": 2005.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99.000000, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.696656528696678, 27.771741848251665 ], [ 92.103711785859744, 27.452614040633208 ], [ 92.033483514375092, 26.838310451763562 ], [ 91.217512648486434, 26.808648179628022 ], [ 90.373274774134075, 26.875724188742879 ], [ 89.744527622438852, 26.719402981059957 ], [ 88.83564253128938, 27.098966376243762 ], [ 88.814248488320558, 27.299315904239364 ], [ 89.475810174521115, 28.042758897406397 ], [ 90.015828891971182, 28.296438503527217 ], [ 90.730513950567797, 28.064953925075756 ], [ 91.258853794319919, 28.040614325466294 ], [ 91.696656528696678, 27.771741848251665 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0.000000, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0.000000, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0.000000, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "brk_group": null, "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Botswana", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 5.000000, "mapcolor9": 7.000000, "mapcolor13": 3.000000, "pop_est": 1990876.000000, "gdp_md_est": 27060.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99.000000, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.649163445750162, -18.536025892818991 ], [ 25.850391473094732, -18.714412937090536 ], [ 26.164790887158485, -19.293085625894939 ], [ 27.296504754350508, -20.391519870690999 ], [ 27.724747348753255, -20.499058526290391 ], [ 27.727227817503259, -20.851801853114715 ], [ 28.021370070108617, -21.485975030200585 ], [ 28.794656202924216, -21.639454034107452 ], [ 29.43218834810904, -22.091312758067588 ], [ 28.017235955525251, -22.827753594659079 ], [ 27.119409620886245, -23.574323011979775 ], [ 26.786406691197413, -24.240690606383485 ], [ 26.485753208123299, -24.616326592713104 ], [ 25.941652052522159, -24.696373386333221 ], [ 25.76584882986521, -25.174845472923678 ], [ 25.664666375437719, -25.486816094669713 ], [ 25.025170525825786, -25.719670098576898 ], [ 24.211266717228796, -25.670215752873574 ], [ 23.73356977712271, -25.390129489851617 ], [ 23.312096795350186, -25.26868987396572 ], [ 22.824271274514899, -25.500458672794771 ], [ 22.579531691180591, -25.979447523708146 ], [ 22.105968865657868, -26.280256036079138 ], [ 21.605896030369394, -26.726533705351756 ], [ 20.889609002371738, -26.828542982695915 ], [ 20.66647016773544, -26.477453301704923 ], [ 20.758609246511838, -25.86813648855145 ], [ 20.165725538827189, -24.917961928000771 ], [ 19.895767856534434, -24.767790215760591 ], [ 19.895457797940679, -21.849156996347869 ], [ 20.88113406747587, -21.814327080983148 ], [ 20.910641310314535, -18.252218926672022 ], [ 21.655040317478978, -18.219146010005225 ], [ 23.196858351339301, -17.869038181227786 ], [ 23.579005568137717, -18.281261081620059 ], [ 24.217364536239213, -17.889347019118489 ], [ 24.520705193792537, -17.887124932529936 ], [ 25.084443393664571, -17.661815687737374 ], [ 25.264225701608012, -17.736539808831417 ], [ 25.649163445750162, -18.536025892818991 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0.000000, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0.000000, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0.000000, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "brk_group": null, "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Central African Republic", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 6.000000, "mapcolor9": 6.000000, "mapcolor13": 9.000000, "pop_est": 4511488.000000, "gdp_md_est": 3198.000000, "pop_year": -99.000000, "lastcensus": 2003.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99.000000, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20.000000, "long_len": 24.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.279460483469109, 7.421924546737969 ], [ 16.10623172370677, 7.497087917506505 ], [ 16.290561557691888, 7.754307359239306 ], [ 16.456184523187346, 7.734773667832968 ], [ 16.705988396886255, 7.508327541529979 ], [ 17.964929640380888, 7.890914008002866 ], [ 18.389554884523221, 8.281303615751824 ], [ 18.911021762780507, 8.630894680206353 ], [ 18.812009718509273, 8.982914536978598 ], [ 19.094008009526021, 9.07484691002584 ], [ 20.059685499764271, 9.012706000194854 ], [ 21.000868361096167, 9.475985215691509 ], [ 21.723821648859456, 10.567055568885976 ], [ 22.231129184668788, 10.97188873946051 ], [ 22.864165480244225, 11.142395127807546 ], [ 22.97754357269261, 10.71446259199854 ], [ 23.554304233502194, 10.089255275915308 ], [ 23.55724979014283, 9.681218166538684 ], [ 23.394779087017184, 9.265067857292223 ], [ 23.459012892355986, 8.954285793488893 ], [ 23.805813429466752, 8.666318874542426 ], [ 24.567369012152085, 8.229187933785468 ], [ 25.114932488716789, 7.825104071479174 ], [ 25.124130893664727, 7.500085150579437 ], [ 25.796647983511178, 6.979315904158071 ], [ 26.213418409945117, 6.546603298362072 ], [ 26.465909458123235, 5.94671743410187 ], [ 27.21340905122517, 5.550953477394557 ], [ 27.37422610851749, 5.233944403500061 ], [ 27.04406538260471, 5.127852688004836 ], [ 26.402760857862543, 5.150874538590871 ], [ 25.650455356557472, 5.256087754737123 ], [ 25.278798455514305, 5.170408229997192 ], [ 25.128833449003281, 4.92724477784779 ], [ 24.805028924262416, 4.89724660890235 ], [ 24.410531040146253, 5.10878408448913 ], [ 23.297213982850138, 4.609693101414223 ], [ 22.841479526468106, 4.710126247573484 ], [ 22.704123569436291, 4.633050848810157 ], [ 22.405123732195538, 4.029160061047321 ], [ 21.659122755630023, 4.22434194581372 ], [ 20.927591180106276, 4.322785549329737 ], [ 20.290679152108936, 4.691677761245288 ], [ 19.467783644293149, 5.03152781821278 ], [ 18.932312452884759, 4.709506130385975 ], [ 18.542982211997781, 4.201785183118318 ], [ 18.453065219809929, 3.504385891123349 ], [ 17.809900343505262, 3.56019643799857 ], [ 17.133042433346304, 3.728196519379452 ], [ 16.537058139724138, 3.198254706226279 ], [ 16.012852410555354, 2.267639675298085 ], [ 15.907380812247652, 2.557389431158612 ], [ 15.862732374747482, 3.013537298998983 ], [ 15.405395948964383, 3.33530060466434 ], [ 15.036219516671252, 3.851367295747124 ], [ 14.950953403389661, 4.210389309094921 ], [ 14.478372430080469, 4.732605495620447 ], [ 14.558935988023507, 5.03059764243153 ], [ 14.459407179429348, 5.4517605656103 ], [ 14.536560092841114, 6.22695872642069 ], [ 14.776545444404576, 6.408498033062045 ], [ 15.279460483469109, 7.421924546737969 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0.000000, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0.000000, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0.000000, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "brk_group": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 6.000000, "mapcolor9": 2.000000, "mapcolor13": 2.000000, "pop_est": 33487208.000000, "gdp_md_est": 1300000.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99.000000, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.6645, 46.55001 ], [ -62.9393, 46.41587 ], [ -62.01208, 46.44314 ], [ -62.50391, 46.03339 ], [ -62.87433, 45.96818 ], [ -64.1428, 46.39265 ], [ -64.39261, 46.72747 ], [ -64.01486, 47.03601 ], [ -63.6645, 46.55001 ] ] ], [ [ [ -61.806305, 49.10506 ], [ -62.29318, 49.08717 ], [ -63.58926, 49.40069 ], [ -64.51912, 49.87304 ], [ -64.17322, 49.95718 ], [ -62.85829, 49.70641 ], [ -61.835585, 49.28855 ], [ -61.806305, 49.10506 ] ] ], [ [ [ -123.510001587551159, 48.510010891303438 ], [ -124.012890788399503, 48.370846259141416 ], [ -125.655012777338371, 48.825004584338501 ], [ -125.954994466792769, 49.179995835967645 ], [ -126.850004435871881, 49.530000311880428 ], [ -127.029993449544421, 49.81499583597008 ], [ -128.059336304366241, 49.994959011426602 ], [ -128.444584107102173, 50.539137681676124 ], [ -128.358413656255436, 50.770648098343685 ], [ -127.308581096029897, 50.552573554071955 ], [ -126.695000977212317, 50.400903225295394 ], [ -125.755006673823203, 50.295018215529382 ], [ -125.415001587558805, 49.950000515332619 ], [ -124.920768189119343, 49.475274970083404 ], [ -123.922508708321018, 49.062483628935809 ], [ -123.510001587551159, 48.510010891303438 ] ] ], [ [ [ -56.134035814017125, 50.687009792679305 ], [ -56.795881720595276, 49.81230866149096 ], [ -56.143105027884303, 50.150117499382844 ], [ -55.471492275602941, 49.935815334668462 ], [ -55.822401089080927, 49.587128607779107 ], [ -54.935142584845664, 49.31301097268684 ], [ -54.473775397343786, 49.556691189159181 ], [ -53.476549445191324, 49.249138902374057 ], [ -53.78601375997124, 48.516780503933632 ], [ -53.086133999226263, 48.687803656603535 ], [ -52.958648240762244, 48.157164211614486 ], [ -52.648098720904187, 47.535548407575504 ], [ -53.069158291218343, 46.65549876564495 ], [ -53.521456264853043, 46.61829173439483 ], [ -54.178935512902541, 46.807065741557011 ], [ -53.961868659060485, 47.625207017601923 ], [ -54.240482143762137, 47.752279364607631 ], [ -55.400773078011497, 46.884993801453135 ], [ -55.997480841685842, 46.919720363953303 ], [ -55.291219041552779, 47.389562486350997 ], [ -56.250798712780522, 47.632545070987391 ], [ -57.325229254777099, 47.572807115258001 ], [ -59.266015184146767, 47.603347886742512 ], [ -59.419494188053704, 47.899453843774864 ], [ -58.796586473207412, 48.251525376979487 ], [ -59.231624518456528, 48.523188381537807 ], [ -58.391804979065228, 49.125580552764177 ], [ -57.358689744686046, 50.718274034215852 ], [ -56.738650071832012, 51.287438259478535 ], [ -55.870976935435294, 51.632094224649194 ], [ -55.406974249886616, 51.588272610065729 ], [ -55.600218268442092, 51.317074693397927 ], [ -56.134035814017125, 50.687009792679305 ] ] ], [ [ [ -133.180004041711697, 54.169975490935315 ], [ -132.71000788443132, 54.040009315423532 ], [ -131.749989584003288, 54.120004380909222 ], [ -132.049480347350993, 52.984621487024526 ], [ -131.179042521826602, 52.180432847698285 ], [ -131.577829549822923, 52.182370713909251 ], [ -132.180428426778548, 52.639707139692405 ], [ -132.549992432313871, 53.100014960332146 ], [ -133.054611178755522, 53.411468817755377 ], [ -133.239664482792705, 53.851080227262401 ], [ -133.180004041711697, 54.169975490935315 ] ] ], [ [ [ -79.26582, 62.158675 ], [ -79.65752, 61.63308 ], [ -80.09956, 61.7181 ], [ -80.36215, 62.01649 ], [ -80.315395, 62.085565 ], [ -79.92939, 62.3856 ], [ -79.52002, 62.36371 ], [ -79.26582, 62.158675 ] ] ], [ [ [ -81.89825, 62.7108 ], [ -83.06857, 62.15922 ], [ -83.77462, 62.18231 ], [ -83.99367, 62.4528 ], [ -83.25048, 62.91409 ], [ -81.87699, 62.90458 ], [ -81.89825, 62.7108 ] ] ], [ [ [ -85.161307949549865, 65.657284654392811 ], [ -84.975763719405961, 65.217518215588996 ], [ -84.464012010419509, 65.371772365980178 ], [ -83.882626308919754, 65.10961782496355 ], [ -82.787576870438784, 64.766693020274687 ], [ -81.642013719392537, 64.455135809986956 ], [ -81.553440314444259, 63.979609280037153 ], [ -80.817361212878865, 64.057485663501012 ], [ -80.103451300766608, 63.725981350348604 ], [ -80.991019863595682, 63.411246039474975 ], [ -82.547178107417011, 63.651722317145243 ], [ -83.108797573565056, 64.101875718839722 ], [ -84.100416632813875, 63.569711819098018 ], [ -85.523404710619019, 63.052379055424097 ], [ -85.866768764982368, 63.637252916103563 ], [ -87.221983201836736, 63.541238104905233 ], [ -86.352759772471273, 64.035833238370714 ], [ -86.224886440765147, 64.822916978608276 ], [ -85.883847825854872, 65.738778388117055 ], [ -85.161307949549865, 65.657284654392811 ] ] ], [ [ [ -75.86588, 67.14886 ], [ -76.98687, 67.09873 ], [ -77.2364, 67.58809 ], [ -76.81166, 68.14856 ], [ -75.89521, 68.28721 ], [ -75.1145, 68.01036 ], [ -75.10333, 67.58202 ], [ -75.21597, 67.44425 ], [ -75.86588, 67.14886 ] ] ], [ [ [ -95.647681203800516, 69.107690358321776 ], [ -96.269521203800593, 68.757040358321746 ], [ -97.617401203800569, 69.060030358321796 ], [ -98.431801203800518, 68.950700358321797 ], [ -99.797401203800533, 69.4000303583218 ], [ -98.917401203800551, 69.710030358321802 ], [ -98.218261203800495, 70.143540358321758 ], [ -97.157401203800561, 69.860030358321808 ], [ -96.557401203800538, 69.680030358321773 ], [ -96.257401203800526, 69.490030358321775 ], [ -95.647681203800516, 69.107690358321776 ] ] ], [ [ [ -90.5471, 69.49766 ], [ -90.55151, 68.47499 ], [ -89.21515, 69.25873 ], [ -88.01966, 68.61508 ], [ -88.31749, 67.87338 ], [ -87.35017, 67.19872 ], [ -86.30607, 67.92146 ], [ -85.57664, 68.78456 ], [ -85.52197, 69.88211 ], [ -84.10081, 69.80539 ], [ -82.62258, 69.65826 ], [ -81.28043, 69.16202 ], [ -81.2202, 68.66567 ], [ -81.96436, 68.13253 ], [ -81.25928, 67.59716 ], [ -81.38653, 67.11078 ], [ -83.34456, 66.41154 ], [ -84.73542, 66.2573 ], [ -85.76943, 66.55833 ], [ -86.0676, 66.05625 ], [ -87.03143, 65.21297 ], [ -87.32324, 64.77563 ], [ -88.48296, 64.09897 ], [ -89.91444, 64.03273 ], [ -90.70398, 63.61017 ], [ -90.77004, 62.96021 ], [ -91.93342, 62.83508 ], [ -93.15698, 62.02469 ], [ -94.24153, 60.89865 ], [ -94.62931, 60.11021 ], [ -94.6846, 58.94882 ], [ -93.21502, 58.78212 ], [ -92.76462, 57.84571 ], [ -92.29703, 57.08709 ], [ -90.89769, 57.28468 ], [ -89.03953, 56.85172 ], [ -88.03978, 56.47162 ], [ -87.32421, 55.99914 ], [ -86.07121, 55.72383 ], [ -85.01181, 55.3026 ], [ -83.36055, 55.24489 ], [ -82.27285, 55.14832 ], [ -82.4362, 54.28227 ], [ -82.12502, 53.27703 ], [ -81.40075, 52.15788 ], [ -79.91289, 51.20842 ], [ -79.14301, 51.53393 ], [ -78.60191, 52.56208 ], [ -79.12421, 54.14145 ], [ -79.82958, 54.66772 ], [ -78.22874, 55.13645 ], [ -77.0956, 55.83741 ], [ -76.54137, 56.53423 ], [ -76.62319, 57.20263 ], [ -77.30226, 58.05209 ], [ -78.51688, 58.80458 ], [ -77.33676, 59.85261 ], [ -77.77272, 60.75788 ], [ -78.10687, 62.31964 ], [ -77.41067, 62.55053 ], [ -75.69621, 62.2784 ], [ -74.6682, 62.18111 ], [ -73.83988, 62.4438 ], [ -72.90853, 62.10507 ], [ -71.67708, 61.52535 ], [ -71.37369, 61.13717 ], [ -69.59042, 61.06141 ], [ -69.62033, 60.22125 ], [ -69.2879, 58.95736 ], [ -68.37455, 58.80106 ], [ -67.64976, 58.21206 ], [ -66.20178, 58.76731 ], [ -65.24517, 59.87071 ], [ -64.58352, 60.33558 ], [ -63.80475, 59.4426 ], [ -62.50236, 58.16708 ], [ -61.39655, 56.96745 ], [ -61.79866, 56.33945 ], [ -60.46853, 55.77548 ], [ -59.56962, 55.20407 ], [ -57.97508, 54.94549 ], [ -57.3332, 54.6265 ], [ -56.93689, 53.78032 ], [ -56.15811, 53.64749 ], [ -55.75632, 53.27036 ], [ -55.68338, 52.14664 ], [ -56.40916, 51.7707 ], [ -57.12691, 51.41972 ], [ -58.77482, 51.0643 ], [ -60.03309, 50.24277 ], [ -61.72366, 50.08046 ], [ -63.86251, 50.29099 ], [ -65.36331, 50.2982 ], [ -66.39905, 50.22897 ], [ -67.23631, 49.51156 ], [ -68.51114, 49.06836 ], [ -69.95362, 47.74488 ], [ -71.10458, 46.82171 ], [ -70.25522, 46.98606 ], [ -68.65, 48.3 ], [ -66.55243, 49.1331 ], [ -65.05626, 49.23278 ], [ -64.17099, 48.74248 ], [ -65.11545, 48.07085 ], [ -64.79854, 46.99297 ], [ -64.47219, 46.23849 ], [ -63.17329, 45.73902 ], [ -61.52072, 45.88377 ], [ -60.51815, 47.00793 ], [ -60.4486, 46.28264 ], [ -59.80287, 45.9204 ], [ -61.03988, 45.26525 ], [ -63.25471, 44.67014 ], [ -64.24656, 44.26553 ], [ -65.36406, 43.54523 ], [ -66.1234, 43.61867 ], [ -66.16173, 44.46512 ], [ -64.42549, 45.29204 ], [ -66.02605, 45.25931 ], [ -67.13741, 45.13753 ], [ -67.79134, 45.70281 ], [ -67.79046, 47.06636 ], [ -68.23444, 47.35486 ], [ -68.905, 47.185 ], [ -69.237216, 47.447781 ], [ -69.99997, 46.69307 ], [ -70.305, 45.915 ], [ -70.66, 45.46 ], [ -71.08482, 45.30524 ], [ -71.405, 45.255 ], [ -71.50506, 45.0082 ], [ -73.34783, 45.00738 ], [ -74.867, 45.00048 ], [ -75.31821, 44.81645 ], [ -76.375, 44.09631 ], [ -76.5, 44.018458893758719 ], [ -76.820034145805579, 43.628784288093755 ], [ -77.737885097957701, 43.629055589363304 ], [ -78.720279914042379, 43.625089423184875 ], [ -79.171673550111876, 43.466339423184223 ], [ -79.01, 43.27 ], [ -78.92, 42.965 ], [ -78.939362148743697, 42.863611355148038 ], [ -80.247447679347943, 42.366199856122591 ], [ -81.277746548167158, 42.209025987306859 ], [ -82.439277716791622, 41.675105088867156 ], [ -82.690089280920176, 41.675105088867156 ], [ -83.029810146806938, 41.832795722005841 ], [ -83.141999681312569, 41.975681057292832 ], [ -83.12, 42.08 ], [ -82.9, 42.43 ], [ -82.43, 42.98 ], [ -82.137642381503895, 43.571087551439916 ], [ -82.337763125431081, 44.44 ], [ -82.550924648758183, 45.347516587905375 ], [ -83.592850714843081, 45.81689362241238 ], [ -83.469550747394635, 45.994686387712591 ], [ -83.616130947590591, 46.11692698829907 ], [ -83.890765347005754, 46.11692698829907 ], [ -84.091851264161477, 46.275418606138174 ], [ -84.142119513673379, 46.512225857115737 ], [ -84.3367, 46.40877 ], [ -84.6049, 46.4396 ], [ -84.543748745445868, 46.538684190449146 ], [ -84.779238247399917, 46.637101955749046 ], [ -84.876079881514869, 46.900083319682381 ], [ -85.652363247403429, 47.220218817730512 ], [ -86.461990831228263, 47.553338019392044 ], [ -87.439792623300235, 47.94 ], [ -88.378114183286726, 48.302917588893735 ], [ -89.272917446636683, 48.019808254582671 ], [ -89.6, 48.01 ], [ -90.83, 48.27 ], [ -91.64, 48.14 ], [ -92.61, 48.45 ], [ -93.63087, 48.60926 ], [ -94.32914, 48.67074 ], [ -94.64, 48.84 ], [ -94.81758, 49.38905 ], [ -95.15609, 49.38425 ], [ -95.159069509172042, 49.0 ], [ -97.228720000004813, 49.0007 ], [ -100.65, 49.0 ], [ -104.04826, 48.99986 ], [ -107.05, 49.0 ], [ -110.05, 49.0 ], [ -113.0, 49.0 ], [ -116.04818, 49.0 ], [ -117.03121, 49.0 ], [ -120.0, 49.0 ], [ -122.84, 49.0 ], [ -122.97421, 49.002537777777803 ], [ -124.91024, 49.98456 ], [ -125.62461, 50.41656 ], [ -127.43561, 50.83061 ], [ -127.99276, 51.71583 ], [ -127.85032, 52.32961 ], [ -129.12979, 52.75538 ], [ -129.30523, 53.56159 ], [ -130.51497, 54.28757 ], [ -130.53611, 54.80278 ], [ -129.98, 55.285 ], [ -130.00778, 55.91583 ], [ -131.70781, 56.55212 ], [ -132.73042, 57.69289 ], [ -133.35556, 58.41028 ], [ -134.27111, 58.86111 ], [ -134.945, 59.27056 ], [ -135.47583, 59.78778 ], [ -136.47972, 59.46389 ], [ -137.4525, 58.905 ], [ -138.34089, 59.56211 ], [ -139.039, 60.0 ], [ -140.013, 60.27682 ], [ -140.99778, 60.30639 ], [ -140.9925, 66.00003 ], [ -140.986, 69.712 ], [ -139.12052, 69.47102 ], [ -137.54636, 68.99002 ], [ -136.50358, 68.89804 ], [ -135.62576, 69.31512 ], [ -134.41464, 69.62743 ], [ -132.92925, 69.50534 ], [ -131.43136, 69.94451 ], [ -129.79471, 70.19369 ], [ -129.10773, 69.77927 ], [ -128.36156, 70.01286 ], [ -128.13817, 70.48384 ], [ -127.44712, 70.37721 ], [ -125.75632, 69.48058 ], [ -124.42483, 70.1584 ], [ -124.28968, 69.39969 ], [ -123.06108, 69.56372 ], [ -122.6835, 69.85553 ], [ -121.47226, 69.79778 ], [ -119.94288, 69.37786 ], [ -117.60268, 69.01128 ], [ -116.22643, 68.84151 ], [ -115.2469, 68.90591 ], [ -113.89794, 68.3989 ], [ -115.30489, 67.90261 ], [ -113.49727, 67.68815 ], [ -110.798, 67.80612 ], [ -109.94619, 67.98104 ], [ -108.8802, 67.38144 ], [ -107.79239, 67.88736 ], [ -108.81299, 68.31164 ], [ -108.16721, 68.65392 ], [ -106.95, 68.7 ], [ -106.15, 68.8 ], [ -105.34282, 68.56122 ], [ -104.33791, 68.018 ], [ -103.22115, 68.09775 ], [ -101.45433, 67.64689 ], [ -99.90195, 67.80566 ], [ -98.4432, 67.78165 ], [ -98.5586, 68.40394 ], [ -97.66948, 68.57864 ], [ -96.11991, 68.23939 ], [ -96.12588, 67.29338 ], [ -95.48943, 68.0907 ], [ -94.685, 68.06383 ], [ -94.23282, 69.06903 ], [ -95.30408, 69.68571 ], [ -96.47131, 70.08976 ], [ -96.39115, 71.19482 ], [ -95.2088, 71.92053 ], [ -93.88997, 71.76015 ], [ -92.87818, 71.31869 ], [ -91.51964, 70.19129 ], [ -92.40692, 69.69997 ], [ -90.5471, 69.49766 ] ] ], [ [ [ -114.167169999999899, 73.12145 ], [ -114.66634, 72.65277 ], [ -112.441019999999895, 72.955400000000111 ], [ -111.05039, 72.4504 ], [ -109.920349999999885, 72.961130000000111 ], [ -109.00654, 72.63335 ], [ -108.18835, 71.65089 ], [ -107.68599, 72.06548 ], [ -108.39639, 73.08953000000011 ], [ -107.51645, 73.23598 ], [ -106.52259, 73.07601 ], [ -105.40246, 72.67259 ], [ -104.77484, 71.698400000000106 ], [ -104.464759999999842, 70.99297 ], [ -102.78537, 70.49776 ], [ -100.980779999999896, 70.02432 ], [ -101.08929, 69.584470000000124 ], [ -102.73116, 69.50402 ], [ -102.09329, 69.119620000000111 ], [ -102.43024, 68.75282 ], [ -104.24, 68.91 ], [ -105.96, 69.180000000000149 ], [ -107.12254, 69.11922 ], [ -109.0, 68.78 ], [ -111.534148875200145, 68.630059156817936 ], [ -113.3132, 68.53554 ], [ -113.854959999999835, 69.007440000000116 ], [ -115.22, 69.28 ], [ -116.10794, 69.16821 ], [ -117.34, 69.960000000000122 ], [ -116.674729999999897, 70.06655 ], [ -115.13112, 70.2373 ], [ -113.72141, 70.19237 ], [ -112.4161, 70.36638 ], [ -114.35, 70.6 ], [ -116.48684, 70.52045 ], [ -117.9048, 70.540560000000141 ], [ -118.43238, 70.9092 ], [ -116.11311, 71.30918 ], [ -117.65568, 71.2952 ], [ -119.40199, 71.55859 ], [ -118.56267, 72.30785 ], [ -117.86642, 72.70594 ], [ -115.18909, 73.314590000000123 ], [ -114.167169999999899, 73.12145 ] ] ], [ [ [ -104.5, 73.42 ], [ -105.38, 72.76 ], [ -106.94, 73.46 ], [ -106.6, 73.6 ], [ -105.26, 73.64 ], [ -104.5, 73.42 ] ] ], [ [ [ -76.34, 73.102684989953019 ], [ -76.25140380859375, 72.826385498046875 ], [ -77.314437866210909, 72.855545043945284 ], [ -78.39167022705081, 72.876655578613281 ], [ -79.486251831054659, 72.742202758789091 ], [ -79.775833129882841, 72.802902221679744 ], [ -80.876098632812528, 73.333183288574219 ], [ -80.833885192871065, 73.693183898925781 ], [ -80.353057861328125, 73.759719848632784 ], [ -78.064437866210938, 73.651931762695341 ], [ -76.34, 73.102684989953019 ] ] ], [ [ [ -86.562178514334136, 73.157447007938458 ], [ -85.774371304044536, 72.534125881633827 ], [ -84.850112474288238, 73.340278225387124 ], [ -82.315590176100983, 73.750950832810588 ], [ -80.600087653307639, 72.71654368762421 ], [ -80.748941616524405, 72.061906643350767 ], [ -78.770638597310779, 72.352173163534161 ], [ -77.824623989559598, 72.749616604291049 ], [ -75.605844692675731, 72.243678493937409 ], [ -74.228616095664989, 71.767144273557903 ], [ -74.099140794557712, 71.330840155717652 ], [ -72.242225714797655, 71.556924546994509 ], [ -71.200015428335206, 70.920012518997225 ], [ -68.786054246684898, 70.525023708774256 ], [ -67.914970465756937, 70.121947536897608 ], [ -66.969033372654167, 69.186087348091888 ], [ -68.805122850200547, 68.720198472764423 ], [ -66.449866095633865, 68.067163397892017 ], [ -64.862314419195229, 67.847538560651628 ], [ -63.424934454996759, 66.928473212340663 ], [ -61.851981370680591, 66.862120673277843 ], [ -62.163176845942303, 66.160251369889608 ], [ -63.918444383384184, 64.998668524832851 ], [ -65.148860236253626, 65.426032619886684 ], [ -66.721219041598545, 66.388041083432199 ], [ -68.015016038673963, 66.262725735124405 ], [ -68.141287400979166, 65.689789130304376 ], [ -67.089646165623407, 65.108455105236999 ], [ -65.732080451099762, 64.648405666758634 ], [ -65.320167609301279, 64.382737128346065 ], [ -64.669406297449683, 63.392926744227481 ], [ -65.013803880458909, 62.674185085695996 ], [ -66.275044725190469, 62.945098781986076 ], [ -68.783186204692726, 63.745670071051819 ], [ -67.369680752213043, 62.883965562584876 ], [ -66.328297288667216, 62.280074774822054 ], [ -66.165568203380161, 61.930897121825893 ], [ -68.877366502544646, 62.330149237712817 ], [ -71.023437059193839, 62.910708116295837 ], [ -72.235378587518994, 63.397836005295176 ], [ -71.8862784491713, 63.679989325608858 ], [ -73.378306240518384, 64.193963121183828 ], [ -74.834418911422603, 64.679075629323791 ], [ -74.818502570276735, 64.389093329517976 ], [ -77.709979824520047, 64.229542344816792 ], [ -78.555948859354174, 64.572906399180141 ], [ -77.897281053361922, 65.309192206474791 ], [ -76.018274298797195, 65.326968899183157 ], [ -73.959795294882724, 65.454764716240902 ], [ -74.29388342964964, 65.811771348729394 ], [ -73.944912482382648, 66.310578111426736 ], [ -72.651167161739409, 67.284575507263867 ], [ -72.926059943316091, 67.726925767682388 ], [ -73.311617804645749, 68.069437160912912 ], [ -74.843307257776814, 68.554627183701285 ], [ -76.869100918266753, 68.894735622830268 ], [ -76.228649054657353, 69.147769273547425 ], [ -77.287369961237118, 69.769540106883284 ], [ -78.168633999326602, 69.82648753526891 ], [ -78.957242194316734, 70.166880194775416 ], [ -79.492455003563663, 69.871807766388912 ], [ -81.30547095409176, 69.743185126414346 ], [ -84.94470618359847, 69.966634019644403 ], [ -87.060003424817893, 70.26000112576537 ], [ -88.681713223001509, 70.41074127876081 ], [ -89.51341956252304, 70.762037665480989 ], [ -88.467721116880767, 71.218185533321332 ], [ -89.888151211287493, 71.222552191849957 ], [ -90.205160285182018, 72.235074367960806 ], [ -89.436576707704944, 73.129464219852366 ], [ -88.408241543312812, 73.537888902471224 ], [ -85.82615108920092, 73.803815823045227 ], [ -86.562178514334136, 73.157447007938458 ] ] ], [ [ [ -100.35642, 73.84389 ], [ -99.16387, 73.63339 ], [ -97.38, 73.76 ], [ -97.12, 73.47 ], [ -98.05359, 72.99052 ], [ -96.54, 72.56 ], [ -96.72, 71.66 ], [ -98.35966, 71.27285 ], [ -99.32286, 71.35639 ], [ -100.01482, 71.73827 ], [ -102.5, 72.51 ], [ -102.48, 72.83 ], [ -100.43836, 72.70588 ], [ -101.54, 73.36 ], [ -100.35642, 73.84389 ] ] ], [ [ [ -93.19629553910022, 72.771992499473356 ], [ -94.269046597047264, 72.024596259235977 ], [ -95.409855516322665, 72.061880805134592 ], [ -96.033745083382456, 72.940276801231818 ], [ -96.018267991910989, 73.437429918095802 ], [ -95.495793423224029, 73.862416897264183 ], [ -94.503657599652342, 74.13490672473921 ], [ -92.420012173211774, 74.100025132942193 ], [ -90.509792853542592, 73.856732489712044 ], [ -92.003965216829897, 72.966244208458505 ], [ -93.19629553910022, 72.771992499473356 ] ] ], [ [ [ -120.46, 71.383601793087593 ], [ -123.09219, 70.90164 ], [ -123.62, 71.34 ], [ -125.928948737473334, 71.868688463011409 ], [ -125.5, 72.292260811795018 ], [ -124.80729, 73.02256 ], [ -123.939999999999898, 73.680000000000149 ], [ -124.91775, 74.292750000000126 ], [ -121.53788, 74.44893 ], [ -120.10978, 74.24135 ], [ -117.555639999999869, 74.18577 ], [ -116.58442, 73.89607 ], [ -115.51081, 73.47519 ], [ -116.767939999999896, 73.22292 ], [ -119.22, 72.52 ], [ -120.46, 71.82 ], [ -120.46, 71.383601793087593 ] ] ], [ [ [ -93.612755906940492, 74.979997260224451 ], [ -94.15690873897384, 74.592346503386864 ], [ -95.608680589565608, 74.666863918751773 ], [ -96.820932176484575, 74.92762319609659 ], [ -96.28858740922982, 75.377828274223361 ], [ -94.850819871789128, 75.6472175157609 ], [ -93.977746548217937, 75.296489569795966 ], [ -93.612755906940492, 74.979997260224451 ] ] ], [ [ [ -98.5, 76.72 ], [ -97.735585, 76.25656 ], [ -97.704415, 75.74344 ], [ -98.16, 75.0 ], [ -99.80874, 74.89744 ], [ -100.88366, 75.05736 ], [ -100.86292, 75.64075 ], [ -102.50209, 75.5638 ], [ -102.56552, 76.3366 ], [ -101.48973, 76.30537 ], [ -99.98349, 76.64634 ], [ -98.57699, 76.58859 ], [ -98.5, 76.72 ] ] ], [ [ [ -108.21141, 76.20168 ], [ -107.81943, 75.84552 ], [ -106.92893, 76.01282 ], [ -105.881, 75.9694 ], [ -105.70498, 75.47951 ], [ -106.31347, 75.00527 ], [ -109.7, 74.85 ], [ -112.22307, 74.41696 ], [ -113.74381, 74.39427 ], [ -113.87135, 74.72029 ], [ -111.79421, 75.1625 ], [ -116.31221, 75.04343 ], [ -117.7104, 75.2222 ], [ -116.34602, 76.19903 ], [ -115.40487, 76.47887 ], [ -112.59056, 76.14134 ], [ -110.81422, 75.54919 ], [ -109.0671, 75.47321 ], [ -110.49726, 76.42982 ], [ -109.5811, 76.79417 ], [ -108.54859, 76.67832 ], [ -108.21141, 76.20168 ] ] ], [ [ [ -94.684085862999467, 77.097878323058382 ], [ -93.573921068073133, 76.776295884906091 ], [ -91.605023159536614, 76.778517971494608 ], [ -90.741845872749224, 76.449597479956822 ], [ -90.96966142450799, 76.074013170059459 ], [ -89.822237921899273, 75.84777374948564 ], [ -89.18708289259979, 75.61016551380763 ], [ -87.838276333349626, 75.566188869927231 ], [ -86.379192267588678, 75.482421373182177 ], [ -84.789625210290609, 75.699204006646511 ], [ -82.753444586910064, 75.784315090631253 ], [ -81.128530849924374, 75.713983466282031 ], [ -80.057510952459154, 75.336848863415895 ], [ -79.833932868148338, 74.923127346487206 ], [ -80.457770758775837, 74.657303778777788 ], [ -81.948842536125539, 74.442459011524335 ], [ -83.228893602211429, 74.564027818490956 ], [ -86.097452358733307, 74.410032050261151 ], [ -88.150350307960224, 74.392307033984991 ], [ -89.764722052758373, 74.515555325001145 ], [ -92.422440965529432, 74.837757880341002 ], [ -92.768285488642817, 75.386819973442158 ], [ -92.889905972041731, 75.882655341282657 ], [ -93.893824022176005, 76.319243679500545 ], [ -95.962457445035824, 76.441380927222468 ], [ -97.121378953829492, 76.751077785947615 ], [ -96.745122850312356, 77.161388658345146 ], [ -94.684085862999467, 77.097878323058382 ] ] ], [ [ [ -116.198586595507351, 77.645286770326209 ], [ -116.335813361458392, 76.876961575010569 ], [ -117.106050584768795, 76.530031846819128 ], [ -118.040412157038148, 76.481171780087095 ], [ -119.899317586885701, 76.053213406061985 ], [ -121.499995077126499, 75.900018622532798 ], [ -122.854924486158978, 76.116542873835698 ], [ -122.854925293603216, 76.116542873835698 ], [ -121.157535360328254, 76.86450755482835 ], [ -119.103938971821051, 77.512219957174636 ], [ -117.570130784965968, 77.498318996888116 ], [ -116.198586595507351, 77.645286770326209 ] ] ], [ [ [ -93.840003017943985, 77.519997260234504 ], [ -94.295608283245258, 77.491342678528696 ], [ -96.169654100310083, 77.555111395976894 ], [ -96.436304490936124, 77.834629218243634 ], [ -94.422577277386381, 77.820004787904992 ], [ -93.720656297565881, 77.634331366680328 ], [ -93.840003017943985, 77.519997260234504 ] ] ], [ [ [ -110.186938035912974, 77.6970148790503 ], [ -112.051191169058484, 77.409228827616857 ], [ -113.534278937619064, 77.732206529441157 ], [ -112.724586758253849, 78.051050116681949 ], [ -111.26444332563085, 78.152956041161559 ], [ -109.854451870547095, 77.99632477488484 ], [ -110.186938035912974, 77.6970148790503 ] ] ], [ [ [ -109.663145718202585, 78.60197256134569 ], [ -110.881314256618865, 78.406919867660008 ], [ -112.54209143761517, 78.407901719873507 ], [ -112.525890876091594, 78.550554511215239 ], [ -111.500010342233395, 78.849993598130567 ], [ -110.963660651476019, 78.804440823065221 ], [ -109.663145718202585, 78.60197256134569 ] ] ], [ [ [ -95.830294969449341, 78.056941229963257 ], [ -97.309842902398003, 77.850597235821795 ], [ -98.124289313533978, 78.082856960757596 ], [ -98.552867804746654, 78.458105373845115 ], [ -98.631984422585532, 78.871930243638388 ], [ -97.337231411512619, 78.831984361476771 ], [ -96.754398769908789, 78.765812689927003 ], [ -95.559277920294591, 78.418314520980289 ], [ -95.830294969449341, 78.056941229963257 ] ] ], [ [ [ -100.06019182005214, 78.324754340315906 ], [ -99.670939093813615, 77.907544664207421 ], [ -101.303940192453013, 78.018984890444813 ], [ -102.949808722733053, 78.34322866486022 ], [ -105.176132778731542, 78.380332343245755 ], [ -104.210429450277161, 78.677420152491806 ], [ -105.41958045125854, 78.918335679836446 ], [ -105.492289191493157, 79.301593939929205 ], [ -103.529282396237932, 79.165349026191649 ], [ -100.825158047268815, 78.800461737778704 ], [ -100.06019182005214, 78.324754340315906 ] ] ], [ [ [ -87.02, 79.66 ], [ -85.81435, 79.3369 ], [ -87.18756, 79.0393 ], [ -89.03535, 78.28723 ], [ -90.80436, 78.21533 ], [ -92.87669, 78.34333 ], [ -93.95116, 78.75099 ], [ -93.93574, 79.11373 ], [ -93.14524, 79.3801 ], [ -94.974, 79.37248 ], [ -96.07614, 79.70502 ], [ -96.70972, 80.15777 ], [ -96.01644, 80.60233 ], [ -95.32345, 80.90729 ], [ -94.29843, 80.97727 ], [ -94.73542, 81.20646 ], [ -92.40984, 81.25739 ], [ -91.13289, 80.72345 ], [ -89.45, 80.509322033898286 ], [ -87.81, 80.32 ], [ -87.02, 79.66 ] ] ], [ [ [ -68.5, 83.106321516765746 ], [ -65.82735, 83.02801 ], [ -63.68, 82.9 ], [ -61.85, 82.6286 ], [ -61.89388, 82.36165 ], [ -64.334, 81.92775 ], [ -66.75342, 81.72527 ], [ -67.65755, 81.50141 ], [ -65.48031, 81.50657 ], [ -67.84, 80.9 ], [ -69.4697, 80.61683 ], [ -71.18, 79.8 ], [ -73.2428, 79.63415 ], [ -73.88, 79.430162204802087 ], [ -76.90773, 79.32309 ], [ -75.52924, 79.19766 ], [ -76.22046, 79.01907 ], [ -75.39345, 78.52581 ], [ -76.34354, 78.18296 ], [ -77.88851, 77.89991 ], [ -78.36269, 77.50859 ], [ -79.75951, 77.20968 ], [ -79.61965, 76.98336 ], [ -77.91089, 77.022045 ], [ -77.88911, 76.777955 ], [ -80.56125, 76.17812 ], [ -83.17439, 76.45403 ], [ -86.11184, 76.29901 ], [ -87.6, 76.42 ], [ -89.49068, 76.47239 ], [ -89.6161, 76.95213 ], [ -87.76739, 77.17833 ], [ -88.26, 77.9 ], [ -87.65, 77.970222222222219 ], [ -84.97634, 77.53873 ], [ -86.34, 78.18 ], [ -87.96192, 78.37181 ], [ -87.15198, 78.75867 ], [ -85.37868, 78.9969 ], [ -85.09495, 79.34543 ], [ -86.50734, 79.73624 ], [ -86.93179, 80.25145 ], [ -84.19844, 80.20836 ], [ -83.408695652173833, 80.1 ], [ -81.84823, 80.46442 ], [ -84.1, 80.58 ], [ -87.59895, 80.51627 ], [ -89.36663, 80.85569 ], [ -90.2, 81.26 ], [ -91.36786, 81.5531 ], [ -91.58702, 81.89429 ], [ -90.1, 82.085 ], [ -88.93227, 82.11751 ], [ -86.97024, 82.27961 ], [ -85.5, 82.652273458057039 ], [ -84.260005, 82.6 ], [ -83.18, 82.32 ], [ -82.42, 82.86 ], [ -81.1, 83.02 ], [ -79.30664, 83.13056 ], [ -76.25, 83.172058823529397 ], [ -75.71878, 83.06404 ], [ -72.83153, 83.23324 ], [ -70.665765, 83.169780758382842 ], [ -68.5, 83.106321516765746 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0.000000, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0.000000, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0.000000, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "brk_group": null, "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Switzerland", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 2.000000, "mapcolor9": 7.000000, "mapcolor13": 3.000000, "pop_est": 7604467.000000, "gdp_md_est": 316700.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99.000000, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11.000000, "long_len": 11.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.59422610844635, 47.52505809182027 ], [ 9.632931756232978, 47.347601223329988 ], [ 9.479969516649021, 47.102809963563374 ], [ 9.932448357796659, 46.920728054382963 ], [ 10.442701450246631, 46.893546250997431 ], [ 10.363378126678612, 46.483571275409858 ], [ 9.922836541390382, 46.314899400409189 ], [ 9.182881707403055, 46.440214748716983 ], [ 8.966305779667806, 46.036931871111193 ], [ 8.489952426801324, 46.005150865251686 ], [ 8.316629672894379, 46.163642483090861 ], [ 7.755992058959833, 45.824490057959309 ], [ 7.273850945676656, 45.776947740250776 ], [ 6.843592970414505, 45.991146552100609 ], [ 6.500099724970426, 46.429672756529442 ], [ 6.022609490593538, 46.272989813820473 ], [ 6.037388950229001, 46.725778713561866 ], [ 6.768713820023606, 47.287708238303701 ], [ 6.736571079138059, 47.541801255882845 ], [ 7.192202182655507, 47.449765529971017 ], [ 7.466759067422231, 47.620581976911808 ], [ 8.317301466514152, 47.613579820336263 ], [ 8.522611932009767, 47.830827541691292 ], [ 9.59422610844635, 47.52505809182027 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0.000000, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0.000000, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0.000000, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "brk_group": null, "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Chile", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 1.000000, "mapcolor9": 5.000000, "mapcolor13": 9.000000, "pop_est": 16601707.000000, "gdp_md_est": 244500.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99.000000, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.634010227583161, -52.636370458874367 ], [ -68.633349999999893, -54.8695 ], [ -67.56244, -54.87001 ], [ -66.95992, -54.89681 ], [ -67.291029999999893, -55.30124 ], [ -68.148629999999855, -55.61183 ], [ -68.63999081081181, -55.580017999086891 ], [ -69.2321, -55.49906 ], [ -69.95809, -55.19843 ], [ -71.00568, -55.05383 ], [ -72.2639, -54.49514 ], [ -73.2852, -53.957519999999889 ], [ -74.66253, -52.83749 ], [ -73.8381, -53.04743 ], [ -72.43418, -53.7154 ], [ -71.10773, -54.07433 ], [ -70.591779999999801, -53.61583 ], [ -70.26748, -52.93123 ], [ -69.345649999999893, -52.5183 ], [ -68.634010227583161, -52.636370458874367 ] ] ], [ [ [ -68.219913092711238, -21.494346612231837 ], [ -67.828179897722663, -22.872918796482182 ], [ -67.106673550063618, -22.7359245744764 ], [ -66.985233934177643, -22.986348565362832 ], [ -67.328442959244143, -24.025303236590915 ], [ -68.417652960876126, -24.518554782816878 ], [ -68.386001146097357, -26.185016371365236 ], [ -68.594799770772681, -26.506908868111267 ], [ -68.295541551370405, -26.89933969493579 ], [ -69.001234910748281, -27.521213881136134 ], [ -69.656130337183157, -28.459141127233693 ], [ -70.013550381129875, -29.367922865518551 ], [ -69.919008348251936, -30.336339206668313 ], [ -70.535068935819453, -31.365010267870289 ], [ -70.074399380153636, -33.091209812148037 ], [ -69.814776984319224, -33.273886000299854 ], [ -69.817309129501467, -34.193571465798286 ], [ -70.388049485949097, -35.169687595359449 ], [ -70.364769253201672, -36.005088799789945 ], [ -71.121880662709799, -36.658123874662337 ], [ -71.118625047475433, -37.576827487947199 ], [ -70.814664272734717, -38.552995293940739 ], [ -71.413516608349056, -38.916022230791114 ], [ -71.680761277946459, -39.808164157878068 ], [ -71.915734015577556, -40.832339369470731 ], [ -71.746803758415467, -42.051386407235995 ], [ -72.148898078078531, -42.254888197601389 ], [ -71.915423956983915, -43.408564548517418 ], [ -71.464056159130507, -43.787611179378331 ], [ -71.793622606071949, -44.207172133156106 ], [ -71.329800788036209, -44.407521661151691 ], [ -71.222778896759735, -44.784242852559416 ], [ -71.65931555854533, -44.973688653341441 ], [ -71.552009446891248, -45.560732924177131 ], [ -71.917258470330211, -46.8848381487918 ], [ -72.447355312780275, -47.738532810253531 ], [ -72.331160854771952, -48.244238376661826 ], [ -72.648247443314943, -48.878618259476788 ], [ -73.415435757120036, -49.318436374712959 ], [ -73.328050910114484, -50.378785088909872 ], [ -72.975746832964631, -50.741450290734313 ], [ -72.30997351753237, -50.677009779666356 ], [ -72.329403856074038, -51.425956312872408 ], [ -71.914803839796349, -52.009022305865926 ], [ -69.49836218939609, -52.14276091263725 ], [ -68.571545376241346, -52.299443855346262 ], [ -69.461284349226645, -52.291950772663931 ], [ -69.942779507106138, -52.537930590373257 ], [ -70.845101691354529, -52.899200528525725 ], [ -71.006332160105245, -53.833252042201352 ], [ -71.429794684520942, -53.856454760300387 ], [ -72.557942877884869, -53.531410001184462 ], [ -73.702756720662876, -52.835069268607256 ], [ -73.702756720662876, -52.835070076051501 ], [ -74.946763475225168, -52.262753588419031 ], [ -75.260026007778521, -51.629354750373224 ], [ -74.97663245308982, -51.043395684615689 ], [ -75.479754197883494, -50.378371677451561 ], [ -75.608015102831956, -48.673772881871798 ], [ -75.182769741502142, -47.71191944762316 ], [ -74.126580980104706, -46.939253431995098 ], [ -75.644395311165454, -46.64764332457203 ], [ -74.692153693323064, -45.763976332380977 ], [ -74.351709357384266, -44.103044122087894 ], [ -73.240356004515206, -44.454960625995625 ], [ -72.71780392117978, -42.383355808278992 ], [ -73.388899909138246, -42.117532240569574 ], [ -73.701335618774863, -43.365776462579745 ], [ -74.331943122032584, -43.224958184584409 ], [ -74.017957119427166, -41.794812920906836 ], [ -73.677099372029971, -39.942212823243125 ], [ -73.217592536090677, -39.258688653318515 ], [ -73.505559455037059, -38.282882582351078 ], [ -73.58806087919109, -37.156284681956024 ], [ -73.166717088499297, -37.123780206044358 ], [ -72.553136969681731, -35.508840020491036 ], [ -71.861732143832569, -33.909092706031529 ], [ -71.438450486929923, -32.418899428030826 ], [ -71.668720669222438, -30.920644626592519 ], [ -71.370082567007728, -30.095682061485007 ], [ -71.489894375276464, -28.861442152625912 ], [ -70.905123867461583, -27.640379734001201 ], [ -70.724953986275978, -25.705924167587213 ], [ -70.40396582709505, -23.628996677344546 ], [ -70.091245897080682, -21.393319187101227 ], [ -70.164419725205988, -19.756468194256186 ], [ -70.372572394477743, -18.347975355708883 ], [ -69.858443569605811, -18.092693780187034 ], [ -69.590423753523993, -17.58001189541929 ], [ -69.100246955019429, -18.260125420812656 ], [ -68.966818406841838, -18.981683444904093 ], [ -68.442225104430946, -19.405068454671422 ], [ -68.757167121033717, -20.372657972904477 ], [ -68.219913092711238, -21.494346612231837 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0.000000, "geounit": "China", "gu_a3": "CHN", "su_dif": 0.000000, "subunit": "China", "su_a3": "CHN", "brk_diff": 0.000000, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "brk_group": null, "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "China", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 4.000000, "mapcolor9": 4.000000, "mapcolor13": 3.000000, "pop_est": 1338612970.000000, "gdp_md_est": 7973000.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99.000000, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.339187860151554, 18.678395087147607 ], [ 109.475209588663716, 18.197700913968617 ], [ 108.655207961056163, 18.507681993071401 ], [ 108.626217482540454, 19.367887885001977 ], [ 109.119055617308021, 19.821038519769388 ], [ 110.211598748822865, 20.101253973872076 ], [ 110.786550734502242, 20.077534491450081 ], [ 111.010051304164648, 19.695929877190736 ], [ 110.570646600386823, 19.255879218009312 ], [ 110.339187860151554, 18.678395087147607 ] ] ], [ [ [ 127.657407261262421, 49.760270494172943 ], [ 129.397817824420457, 49.440600084015443 ], [ 130.582293328982388, 48.729687404976119 ], [ 130.987281528853856, 47.790132351261406 ], [ 132.506671991099523, 47.788969631534883 ], [ 133.373595819228029, 48.183441677434928 ], [ 135.026311476786731, 48.478229885443909 ], [ 134.500813836810636, 47.578439846377847 ], [ 134.11236209527263, 47.212467352886733 ], [ 133.769643996312908, 46.11692698829907 ], [ 133.097126906466457, 45.144066473972174 ], [ 131.88345421765959, 45.321161607436437 ], [ 131.025212030156098, 44.967953192721581 ], [ 131.288555129115565, 44.111519680348266 ], [ 131.144687941614876, 42.929989732426947 ], [ 130.63386640840983, 42.903014634770557 ], [ 130.640015903852458, 42.395009467125277 ], [ 129.994267205933255, 42.9853868678438 ], [ 129.59666873587949, 42.424981797854599 ], [ 128.052215203972338, 41.994284572917991 ], [ 128.208433058790746, 41.466771552082548 ], [ 127.34378299368305, 41.50315176041596 ], [ 126.869083286649897, 41.816569322266162 ], [ 126.182045119329445, 41.107336127276369 ], [ 125.079941847840615, 40.569823716792456 ], [ 124.265624627785343, 39.928493353834142 ], [ 122.867570428561038, 39.637787583976262 ], [ 122.131387974130945, 39.170451768544638 ], [ 121.054554478032884, 38.897471014962917 ], [ 121.585994907722494, 39.360853583324143 ], [ 121.376757033372684, 39.750261338859531 ], [ 122.168595005381036, 40.422442531896053 ], [ 121.640358514493556, 40.946389878903318 ], [ 120.768628778161968, 40.593388169917603 ], [ 119.63960208544907, 39.898055935214217 ], [ 119.023463983233029, 39.252333075511103 ], [ 118.042748651197911, 39.204273993479688 ], [ 117.532702264477081, 38.737635809884097 ], [ 118.059698520989713, 38.061475531561058 ], [ 118.878149855628379, 37.897325344385905 ], [ 118.911636183753529, 37.448463853498737 ], [ 119.70280236214208, 37.15638865818508 ], [ 120.823457472823662, 37.870427761377982 ], [ 121.711258579597967, 37.48112335870718 ], [ 122.35793745329849, 37.454484157860691 ], [ 122.519994744965828, 36.930614325501836 ], [ 121.104163853033043, 36.65132904718044 ], [ 120.637008905114584, 36.111439520811132 ], [ 119.664561802246084, 35.609790554337735 ], [ 119.151208123858595, 34.909859117160465 ], [ 120.227524855633732, 34.36033193616862 ], [ 120.620369093916594, 33.376722723925127 ], [ 121.229014113450233, 32.460318711877193 ], [ 121.908145786630058, 31.69217438407469 ], [ 121.891919386890351, 30.949351508095106 ], [ 121.264257440273326, 30.676267401648715 ], [ 121.503519321784751, 30.142914943964257 ], [ 122.0921138855891, 29.832520453403163 ], [ 121.938428175953078, 29.01802236583481 ], [ 121.684438511238483, 28.225512600206685 ], [ 121.125661248866464, 28.135673122667185 ], [ 120.395473260582349, 27.053206895449392 ], [ 119.585496860839584, 25.740780544532612 ], [ 118.656871372554548, 24.547390855400238 ], [ 117.281606479970861, 23.624501451099718 ], [ 115.890735304835147, 22.782873236578098 ], [ 114.763827345846238, 22.66807404224167 ], [ 114.152546828265685, 22.223760077396207 ], [ 113.806779819800767, 22.54833974862143 ], [ 113.24107791550162, 22.051367499270469 ], [ 111.843592157032475, 21.550493679281516 ], [ 110.785465529424158, 21.397143866455338 ], [ 110.44403934127169, 20.341032619706397 ], [ 109.889861281373584, 20.282457383703445 ], [ 109.627655063924664, 21.008227037026728 ], [ 109.864488153118344, 21.395050970947523 ], [ 108.52281294152445, 21.715212307211829 ], [ 108.050180291782993, 21.552379869060104 ], [ 107.043420037872664, 21.811898912029903 ], [ 106.56727339073538, 22.218204860924743 ], [ 106.725403273548494, 22.794267889898379 ], [ 105.811247186305224, 22.976892401617903 ], [ 105.32920942588666, 23.352063300056983 ], [ 104.476858351664504, 22.819150092046925 ], [ 103.504514601660532, 22.70375661873922 ], [ 102.706992222100183, 22.708795070887703 ], [ 102.170435825613566, 22.464753119389343 ], [ 101.65201785686159, 22.318198757409561 ], [ 101.803119744882935, 21.174366766845054 ], [ 101.270025669360024, 21.20165192309517 ], [ 101.180005324307587, 21.43657298429406 ], [ 101.150032993578264, 21.849984442629022 ], [ 100.416537713627378, 21.558839423096657 ], [ 99.983489211021578, 21.742936713136459 ], [ 99.240898878987224, 22.118314317304566 ], [ 99.531992222087439, 22.949038804612599 ], [ 98.898749220782832, 23.142722072842588 ], [ 98.660262485755794, 24.063286037690006 ], [ 97.604719679762042, 23.897404690033056 ], [ 97.724609002679159, 25.083637193293043 ], [ 98.67183800658924, 25.918702500913497 ], [ 98.712093947344584, 26.74353587494025 ], [ 98.682690057370536, 27.508812160750665 ], [ 98.246230910233379, 27.747221381129179 ], [ 97.911987746169444, 28.335945136014374 ], [ 97.327113885490036, 28.261582749946342 ], [ 96.248833449287844, 28.411030992134471 ], [ 96.58659061074755, 28.830979519154369 ], [ 96.117678664131034, 29.45280202892252 ], [ 95.404802280664654, 29.03171662039216 ], [ 94.565990431702943, 29.277438055939967 ], [ 93.413347609432691, 28.640629380807241 ], [ 92.503118931043645, 27.896876329046449 ], [ 91.696656528696707, 27.771741848251622 ], [ 91.25885379431989, 28.04061432546635 ], [ 90.730513950567826, 28.064953925075741 ], [ 90.015828891971211, 28.296438503527185 ], [ 89.475810174521172, 28.042758897406372 ], [ 88.814248488320601, 27.299315904239393 ], [ 88.730325962278556, 28.086864732367559 ], [ 88.120440708369955, 27.876541652939579 ], [ 86.954517043000664, 27.974261786403531 ], [ 85.82331994013154, 28.203575954698749 ], [ 85.011638218123068, 28.642773952747376 ], [ 84.234579705750178, 28.839893703724698 ], [ 83.898992954446754, 29.32022614187764 ], [ 83.33711510613719, 29.463731594352197 ], [ 82.327512648450892, 30.115268052688208 ], [ 81.5258044778748, 30.422716986608663 ], [ 81.11125613802929, 30.183480943313413 ], [ 79.721366815107132, 30.882714748654735 ], [ 78.738894484374015, 31.515906073527049 ], [ 78.458446486326039, 32.618164374312727 ], [ 79.176128777995558, 32.483779812137755 ], [ 79.208891636068557, 32.994394639613745 ], [ 78.811086460285736, 33.506198025032404 ], [ 78.912268914713223, 34.321936346975775 ], [ 77.837450799474624, 35.494009507787808 ], [ 76.192848341785719, 35.898403428687857 ], [ 75.896897414050187, 36.666806138651879 ], [ 75.158027785141002, 37.133030910789159 ], [ 74.980002475895418, 37.419990139305895 ], [ 74.829985792952158, 37.990007025701459 ], [ 74.864815708316797, 38.378846340481601 ], [ 74.257514276022704, 38.60650686294349 ], [ 73.928852166646408, 38.505815334622724 ], [ 73.675379266254851, 39.431236884105573 ], [ 73.960013055318456, 39.660008449861721 ], [ 73.82224368682833, 39.893973497063143 ], [ 74.776862420556057, 40.366425279291633 ], [ 75.467827996730733, 40.562072251948678 ], [ 76.526368035797447, 40.427946071935139 ], [ 76.904484490877138, 41.066485907549662 ], [ 78.187196893226059, 41.185315863604814 ], [ 78.543660923175281, 41.58224254003872 ], [ 80.119430373051415, 42.123940741538235 ], [ 80.259990268885332, 42.349999294599087 ], [ 80.180150180994389, 42.920067857426858 ], [ 80.866206496101228, 43.180362046881015 ], [ 79.96610639844144, 44.917516994804629 ], [ 81.947070753918098, 45.317027492853157 ], [ 82.458925815769049, 45.539649563166506 ], [ 83.180483839860557, 47.330031236350749 ], [ 85.164290399113241, 47.000955715516113 ], [ 85.720483839870695, 47.452969468773091 ], [ 85.768232863308384, 48.455750637396903 ], [ 86.598776483103364, 48.549181626980612 ], [ 87.359970330762707, 49.214980780629162 ], [ 87.751264276076682, 49.297197984405472 ], [ 88.013832228551706, 48.599462795600601 ], [ 88.854297723346775, 48.069081732773014 ], [ 90.280825636763922, 47.693549099307916 ], [ 90.970809360724985, 46.888146063822944 ], [ 90.585768263718336, 45.719716091487498 ], [ 90.94553958533433, 45.28607330991025 ], [ 92.13389082231825, 45.115075995456436 ], [ 93.48073367714133, 44.975472113620015 ], [ 94.68892866412537, 44.352331854828464 ], [ 95.306875441471533, 44.241330878265472 ], [ 95.762454868556716, 43.319449164394626 ], [ 96.349395786527822, 42.725635280928657 ], [ 97.451757440178, 42.748889675460077 ], [ 99.515817498780024, 42.524691473961695 ], [ 100.845865513108293, 42.663804429691425 ], [ 101.833040399179964, 42.514872951826277 ], [ 103.312278273534815, 41.907468166667627 ], [ 104.522281935649033, 41.908346666016627 ], [ 104.96499393109346, 41.597409572916348 ], [ 106.129315627061686, 42.134327704428898 ], [ 107.744772576938004, 42.481515814781915 ], [ 109.243595819131457, 42.519446316084156 ], [ 110.412103306115313, 42.871233628911028 ], [ 111.129682244920247, 43.406834011400178 ], [ 111.829587843881399, 43.743118394539493 ], [ 111.66773725794323, 44.073175767587713 ], [ 111.348376906379457, 44.457441718110061 ], [ 111.873306105600278, 45.102079372735119 ], [ 112.43606245325887, 45.011645616224257 ], [ 113.463906691544224, 44.808893134127118 ], [ 114.460331658996068, 45.339816799493889 ], [ 115.985096470200148, 45.727235012386018 ], [ 116.717868280098884, 46.388202419615254 ], [ 117.42170128791426, 46.672732855814218 ], [ 118.87432579963874, 46.805412095723653 ], [ 119.663269891438773, 46.692679958678951 ], [ 119.772823927897576, 47.048058783550147 ], [ 118.86657433479499, 47.74706004494621 ], [ 118.064142694166748, 48.066730455103738 ], [ 117.295507440257467, 47.697709052107399 ], [ 116.308952671373248, 47.853410142602826 ], [ 115.742837355615762, 47.726544501326288 ], [ 115.485282017073047, 48.135382595403456 ], [ 116.191802199367629, 49.134598090199063 ], [ 116.678800897286209, 49.888531399121405 ], [ 117.879244419426385, 49.510983384796958 ], [ 119.288460728025854, 50.142882798862047 ], [ 119.279365675942387, 50.582907619827296 ], [ 120.182049595216967, 51.643566392618027 ], [ 120.738191359542014, 51.964115302124554 ], [ 120.725789015792003, 52.516226304730822 ], [ 120.177088657716894, 52.753886216841209 ], [ 121.003084751470254, 53.251401068731241 ], [ 122.245747918792887, 53.431725979213695 ], [ 123.571506789240885, 53.458804429734641 ], [ 125.068211297710462, 53.161044826868846 ], [ 125.946348911646197, 52.79279857035695 ], [ 126.564399041857001, 51.784255479532703 ], [ 126.939156528837685, 51.35389415140591 ], [ 127.287455682484932, 50.739797268265448 ], [ 127.657407261262421, 49.760270494172943 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0.000000, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0.000000, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0.000000, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "brk_group": null, "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "note_adm0": null, "note_brk": null, "name_sort": "Côte d'Ivoire", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 6.000000, "mapcolor9": 3.000000, "mapcolor13": 3.000000, "pop_est": 20617068.000000, "gdp_md_est": 33850.000000, "pop_year": -99.000000, "lastcensus": 1998.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99.000000, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13.000000, "long_len": 13.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.856125047202397, 4.994475816259509 ], [ -3.311084357100071, 4.984295559098015 ], [ -4.008819545904942, 5.179813340674315 ], [ -4.649917364917911, 5.168263658057086 ], [ -5.834496222344526, 4.993700669775137 ], [ -6.528769090185847, 4.705087795425015 ], [ -7.518941209330436, 4.338288479017308 ], [ -7.71215938966975, 4.364565944837722 ], [ -7.635368211284031, 5.188159084489456 ], [ -7.539715135111763, 5.313345241716519 ], [ -7.570152553731688, 5.707352199725904 ], [ -7.993692592795881, 6.126189683451543 ], [ -8.311347622094019, 6.193033148621083 ], [ -8.60288021486862, 6.46756419517166 ], [ -8.385451626000574, 6.911800645368743 ], [ -8.48544552248535, 7.39520783124307 ], [ -8.439298468448698, 7.686042792181738 ], [ -8.280703497744938, 7.687179673692157 ], [ -8.221792364932199, 8.123328762235573 ], [ -8.299048631208564, 8.316443589710303 ], [ -8.20349890790088, 8.455453192575447 ], [ -7.832100389019188, 8.575704250518626 ], [ -8.079113735374349, 9.376223863152035 ], [ -8.309616461612251, 9.789531968622441 ], [ -8.229337124046822, 10.129020290563901 ], [ -8.029943610048619, 10.206534939001713 ], [ -7.899589809592372, 10.297382106970828 ], [ -7.622759161804809, 10.147236232946796 ], [ -6.850506557635057, 10.138993841996239 ], [ -6.666460944027548, 10.430810655148449 ], [ -6.493965013037268, 10.411302801958271 ], [ -6.205222947606431, 10.524060777219134 ], [ -6.050452032892267, 10.096360785355444 ], [ -5.816926235365287, 10.222554633012194 ], [ -5.404341599946974, 10.370736802609146 ], [ -4.954653286143099, 10.152713934769736 ], [ -4.779883592131966, 9.821984768101743 ], [ -4.330246954760383, 9.610834865757141 ], [ -3.980449184576685, 9.8623440617217 ], [ -3.511898972986273, 9.90032623945622 ], [ -2.827496303712707, 9.642460842319778 ], [ -2.562189500326241, 8.219627793811483 ], [ -2.983584967450327, 7.379704901555513 ], [ -3.244370083011262, 6.250471503113502 ], [ -2.81070146321784, 5.38905121502411 ], [ -2.856125047202397, 4.994475816259509 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0.000000, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0.000000, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0.000000, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "brk_group": null, "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Cameroon", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 3.000000, "pop_est": 18879301.000000, "gdp_md_est": 42750.000000, "pop_year": -99.000000, "lastcensus": 2005.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99.000000, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.075822381246752, 2.267097072759015 ], [ 12.951333855855609, 2.32161570882694 ], [ 12.359380323952221, 2.19281220133945 ], [ 11.75166548019979, 2.326757513839993 ], [ 11.276449008843713, 2.261050930180872 ], [ 9.649158155972628, 2.283866075037736 ], [ 9.795195753629457, 3.073404445809117 ], [ 9.404366896206, 3.734526882335203 ], [ 8.948115675501072, 3.904128933117136 ], [ 8.744923943729418, 4.35221527751996 ], [ 8.48881554529089, 4.495617377129918 ], [ 8.500287713259695, 4.771982937026849 ], [ 8.757532993208628, 5.479665839047911 ], [ 9.233162876023044, 6.444490668153335 ], [ 9.522705926154401, 6.453482367372117 ], [ 10.118276808318257, 7.03876963950988 ], [ 10.497375115611419, 7.055357774275564 ], [ 11.058787876030351, 6.644426784690594 ], [ 11.745774366918511, 6.981382961449754 ], [ 11.839308709366803, 7.397042344589437 ], [ 12.063946160539558, 7.799808457872302 ], [ 12.218872104550599, 8.305824082874324 ], [ 12.753671502339216, 8.717762762888995 ], [ 12.955467970438974, 9.417771714714704 ], [ 13.167599724997103, 9.640626328973411 ], [ 13.308676385153918, 10.160362046748928 ], [ 13.572949659894562, 10.798565985553566 ], [ 14.415378859116684, 11.572368882692075 ], [ 14.468192172918975, 11.904751695193411 ], [ 14.577177768622533, 12.085360826053503 ], [ 14.181336297266794, 12.483656927943116 ], [ 14.213530714584635, 12.802035427293347 ], [ 14.495787387762846, 12.859396267137329 ], [ 14.893385857816526, 12.219047756392584 ], [ 14.960151808337599, 11.555574042197224 ], [ 14.923564894274961, 10.891325181517473 ], [ 15.467872755605271, 9.982336737503431 ], [ 14.909353875394716, 9.992129421422732 ], [ 14.62720055508106, 9.920919297724538 ], [ 14.171466098699028, 10.021378282099931 ], [ 13.954218377344006, 9.549494940626687 ], [ 14.54446658698177, 8.965861314322268 ], [ 14.97999555833769, 8.796104234243472 ], [ 15.120865512765334, 8.382150173369425 ], [ 15.436091749745771, 7.692812404811973 ], [ 15.279460483469109, 7.421924546737969 ], [ 14.776545444404576, 6.408498033062045 ], [ 14.536560092841114, 6.22695872642069 ], [ 14.459407179429348, 5.4517605656103 ], [ 14.558935988023507, 5.03059764243153 ], [ 14.478372430080469, 4.732605495620447 ], [ 14.950953403389661, 4.210389309094921 ], [ 15.036219516671252, 3.851367295747124 ], [ 15.405395948964383, 3.33530060466434 ], [ 15.862732374747482, 3.013537298998983 ], [ 15.907380812247652, 2.557389431158612 ], [ 16.012852410555354, 2.267639675298085 ], [ 15.940918816805066, 1.727672634280296 ], [ 15.146341993885244, 1.964014797367184 ], [ 14.337812534246581, 2.227874660649491 ], [ 13.075822381246752, 2.267097072759015 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0.000000, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0.000000, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0.000000, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "brk_group": null, "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Congo, Dem. Rep.", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 4.000000, "mapcolor9": 4.000000, "mapcolor13": 7.000000, "pop_est": 68692542.000000, "gdp_md_est": 20640.000000, "pop_year": -99.000000, "lastcensus": 1984.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99.000000, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15.000000, "long_len": 32.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.833859897593811, 3.509165961110341 ], [ 30.773346795380039, 2.339883327642127 ], [ 31.174149204235817, 2.204465236821264 ], [ 30.852670118948058, 1.849396470543809 ], [ 30.468507521290295, 1.583805446779721 ], [ 30.086153598762706, 1.062312730306289 ], [ 29.875778842902491, 0.597379868976304 ], [ 29.819503208136638, -0.205310153813372 ], [ 29.587837762172171, -0.587405694179481 ], [ 29.579466180140884, -1.341313164885626 ], [ 29.291886834436614, -1.620055840667987 ], [ 29.254834832483343, -2.215109958508911 ], [ 29.117478875451553, -2.292211195488385 ], [ 29.024926385216787, -2.839257907730158 ], [ 29.276383904749053, -3.293907159034063 ], [ 29.339997592900346, -4.499983412294092 ], [ 29.519986606572928, -5.419978936386315 ], [ 29.419992710088167, -5.939998874539434 ], [ 29.620032179490014, -6.520015150583426 ], [ 30.199996779101696, -7.079980970898163 ], [ 30.740015496551791, -8.340007419470915 ], [ 30.346086053190817, -8.238256524288218 ], [ 29.00291222506047, -8.407031752153472 ], [ 28.734866570762502, -8.526559340044578 ], [ 28.449871046672826, -9.164918308146085 ], [ 28.673681674928929, -9.605924981324932 ], [ 28.49606977714177, -10.789883721564046 ], [ 28.372253045370428, -11.793646742401393 ], [ 28.642417433392353, -11.971568698782315 ], [ 29.34154788586909, -12.360743910372413 ], [ 29.61600141777123, -12.178894545137311 ], [ 29.699613885219492, -13.257226657771831 ], [ 28.934285922976837, -13.248958428605135 ], [ 28.523561639121027, -12.698604424696683 ], [ 28.155108676879987, -12.272480564017897 ], [ 27.388798862423783, -12.132747491100666 ], [ 27.164419793412463, -11.608748467661075 ], [ 26.553087599399618, -11.924439792532127 ], [ 25.752309604604733, -11.784965101776358 ], [ 25.418118116973204, -11.330935967659961 ], [ 24.783169793402951, -11.238693536018964 ], [ 24.314516228947952, -11.26282642989927 ], [ 24.257155389103989, -10.951992689663657 ], [ 23.912215203555718, -10.926826267137514 ], [ 23.45679080576744, -10.867863457892483 ], [ 22.837345411884741, -11.017621758674331 ], [ 22.402798292742375, -10.993075453335692 ], [ 22.155268182064308, -11.084801120653772 ], [ 22.208753289486395, -9.894796237836509 ], [ 21.875181919042348, -9.523707777548566 ], [ 21.8018013851879, -8.908706556842979 ], [ 21.949130893652043, -8.305900974158277 ], [ 21.746455926203311, -7.920084730667149 ], [ 21.728110792739699, -7.290872491081302 ], [ 20.514748162526502, -7.299605808138629 ], [ 20.601822950938299, -6.939317722199682 ], [ 20.091621534920648, -6.943090101756994 ], [ 20.037723016040218, -7.116361179231646 ], [ 19.41750247567316, -7.155428562044299 ], [ 19.166613396896111, -7.738183688999754 ], [ 19.016751743249671, -7.988245944860132 ], [ 18.464175652752687, -7.847014255406443 ], [ 18.134221632569052, -7.987677504104923 ], [ 17.472970004962235, -8.0685511206417 ], [ 17.089995965247169, -7.545688978712526 ], [ 16.860190870845202, -7.222297865429987 ], [ 16.573179965896145, -6.622644545115087 ], [ 16.326528354567046, -5.877470391466268 ], [ 13.375597364971895, -5.864241224799549 ], [ 13.024869419006961, -5.984388929878158 ], [ 12.735171339578699, -5.965682061388499 ], [ 12.322431674863511, -6.10009246177966 ], [ 12.182336866920252, -5.789930515163839 ], [ 12.436688266660868, -5.684303887559246 ], [ 12.468004184629736, -5.248361504745005 ], [ 12.63161176926579, -4.991271254092936 ], [ 12.995517205465177, -4.781103203961884 ], [ 13.258240187237048, -4.882957452009165 ], [ 13.600234816144678, -4.50013844159097 ], [ 14.144956088933299, -4.510008640158716 ], [ 14.209034864975223, -4.793092136253598 ], [ 14.582603794013181, -4.97023894615014 ], [ 15.170991652088444, -4.343507175314301 ], [ 15.753540073314753, -3.855164890156097 ], [ 16.006289503654301, -3.535132744972529 ], [ 15.972803175529151, -2.712392266453612 ], [ 16.407091912510054, -1.740927015798682 ], [ 16.865306837642123, -1.225816338713287 ], [ 17.523716261472856, -0.743830254726987 ], [ 17.638644646889986, -0.424831638189247 ], [ 17.663552687254679, -0.058083998213817 ], [ 17.826540154703252, 0.288923244626105 ], [ 17.774191928791566, 0.855658677571085 ], [ 17.898835483479587, 1.741831976728278 ], [ 18.094275750407434, 2.365721543788055 ], [ 18.393792351971143, 2.90044342692822 ], [ 18.453065219809929, 3.504385891123349 ], [ 18.542982211997781, 4.201785183118318 ], [ 18.932312452884759, 4.709506130385975 ], [ 19.467783644293149, 5.03152781821278 ], [ 20.290679152108936, 4.691677761245288 ], [ 20.927591180106276, 4.322785549329737 ], [ 21.659122755630023, 4.22434194581372 ], [ 22.405123732195538, 4.029160061047321 ], [ 22.704123569436291, 4.633050848810157 ], [ 22.841479526468106, 4.710126247573484 ], [ 23.297213982850138, 4.609693101414223 ], [ 24.410531040146253, 5.10878408448913 ], [ 24.805028924262416, 4.89724660890235 ], [ 25.128833449003281, 4.92724477784779 ], [ 25.278798455514305, 5.170408229997192 ], [ 25.650455356557472, 5.256087754737123 ], [ 26.402760857862543, 5.150874538590871 ], [ 27.04406538260471, 5.127852688004836 ], [ 27.37422610851749, 5.233944403500061 ], [ 27.979977247842811, 4.408413397637375 ], [ 28.428993768026913, 4.287154649264494 ], [ 28.696677687298802, 4.455077215996937 ], [ 29.1590784034465, 4.389267279473231 ], [ 29.71599531425602, 4.600804755060025 ], [ 29.953500197069474, 4.173699042167684 ], [ 30.833859897593811, 3.509165961110341 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0.000000, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0.000000, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0.000000, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "brk_group": null, "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Congo, Rep.", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 1.000000, "mapcolor9": 3.000000, "mapcolor13": 10.000000, "pop_est": 4012809.000000, "gdp_md_est": 15350.000000, "pop_year": -99.000000, "lastcensus": 2007.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99.000000, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5.000000, "long_len": 17.000000, "abbrev_len": 10.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.995517205465177, -4.781103203961884 ], [ 12.620759718484493, -4.438023369976136 ], [ 12.318607618873926, -4.606230157086188 ], [ 11.91496300624209, -5.037986748884791 ], [ 11.093772820691925, -3.978826592630547 ], [ 11.855121697648116, -3.426870619321051 ], [ 11.478038771214303, -2.765618991714241 ], [ 11.820963575903193, -2.514161472181982 ], [ 12.495702752338161, -2.391688327650243 ], [ 12.575284458067642, -1.948511244315135 ], [ 13.109618767965628, -2.428740329603514 ], [ 13.99240726080771, -2.4708049454891 ], [ 14.299210239324566, -1.998275648612214 ], [ 14.425455763413595, -1.333406670744971 ], [ 14.316418491277744, -0.552627455247048 ], [ 13.843320753645656, 0.038757635901149 ], [ 14.276265903386957, 1.196929836426619 ], [ 14.026668735417218, 1.395677395021153 ], [ 13.282631463278818, 1.31418366129688 ], [ 13.003113641012078, 1.83089630778332 ], [ 13.075822381246752, 2.267097072759015 ], [ 14.337812534246581, 2.227874660649491 ], [ 15.146341993885244, 1.964014797367184 ], [ 15.940918816805066, 1.727672634280296 ], [ 16.012852410555354, 2.267639675298085 ], [ 16.537058139724138, 3.198254706226279 ], [ 17.133042433346304, 3.728196519379452 ], [ 17.809900343505262, 3.56019643799857 ], [ 18.453065219809929, 3.504385891123349 ], [ 18.393792351971143, 2.90044342692822 ], [ 18.094275750407434, 2.365721543788055 ], [ 17.898835483479587, 1.741831976728278 ], [ 17.774191928791566, 0.855658677571085 ], [ 17.826540154703252, 0.288923244626105 ], [ 17.663552687254679, -0.058083998213817 ], [ 17.638644646889986, -0.424831638189247 ], [ 17.523716261472856, -0.743830254726987 ], [ 16.865306837642123, -1.225816338713287 ], [ 16.407091912510054, -1.740927015798682 ], [ 15.972803175529151, -2.712392266453612 ], [ 16.006289503654301, -3.535132744972529 ], [ 15.753540073314753, -3.855164890156097 ], [ 15.170991652088444, -4.343507175314301 ], [ 14.582603794013181, -4.97023894615014 ], [ 14.209034864975223, -4.793092136253598 ], [ 14.144956088933299, -4.510008640158716 ], [ 13.600234816144678, -4.50013844159097 ], [ 13.258240187237048, -4.882957452009165 ], [ 12.995517205465177, -4.781103203961884 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0.000000, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0.000000, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0.000000, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "brk_group": null, "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Colombia", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 1.000000, "mapcolor9": 3.000000, "mapcolor13": 1.000000, "pop_est": 45644023.000000, "gdp_md_est": 395400.000000, "pop_year": -99.000000, "lastcensus": 2006.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99.000000, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.373223232713855, -0.15203175212045 ], [ -75.801465827116601, 0.084801337073202 ], [ -76.292314419240967, 0.416047268064119 ], [ -76.576379767549398, 0.256935533037435 ], [ -77.424984300430395, 0.395686753741117 ], [ -77.668612840470445, 0.825893052570962 ], [ -77.855061408179523, 0.809925034992773 ], [ -78.855258755188714, 1.380923773601822 ], [ -78.99093522817104, 1.691369940595251 ], [ -78.617831387023713, 1.766404120283056 ], [ -78.662118089497852, 2.267355454920477 ], [ -78.427610439757331, 2.629555568854215 ], [ -77.931542527971487, 2.696605739752926 ], [ -77.51043128122501, 3.325016994638247 ], [ -77.12768978545526, 3.849636135265357 ], [ -77.496271938777028, 4.087606105969428 ], [ -77.307601284479404, 4.667984117039452 ], [ -77.533220587865728, 5.582811997902497 ], [ -77.318815070286746, 5.84535411216136 ], [ -77.47666073272228, 6.691116441266303 ], [ -77.881571417945253, 7.223771267114785 ], [ -77.753413865861404, 7.709839789252143 ], [ -77.431107957656991, 7.638061224798734 ], [ -77.242566494440084, 7.935278225125444 ], [ -77.474722866511328, 8.524286200388218 ], [ -77.353360765273862, 8.67050466555807 ], [ -76.836673957003569, 8.638749497914716 ], [ -76.086383836557857, 9.336820583529487 ], [ -75.674600185840063, 9.443248195834599 ], [ -75.664704149056178, 9.774003200718738 ], [ -75.480425991503353, 10.618990383339309 ], [ -74.906895107711989, 11.083044745320322 ], [ -74.276752692344886, 11.102035834187587 ], [ -74.197222663047697, 11.310472723836867 ], [ -73.414763963500292, 11.22701528568548 ], [ -72.627835252559635, 11.731971543825523 ], [ -72.238194953078917, 11.955549628136326 ], [ -71.754090135368642, 12.437303168177309 ], [ -71.399822353791706, 12.376040757695293 ], [ -71.13746110704588, 12.112981879113505 ], [ -71.331583624950298, 11.776284084515808 ], [ -71.973921678338286, 11.60867157637712 ], [ -72.227575446242938, 11.108702093953241 ], [ -72.614657762325209, 10.821975409381778 ], [ -72.905286017534706, 10.450344346554772 ], [ -73.027604132769568, 9.736770331252444 ], [ -73.304951544880055, 9.151999823437606 ], [ -72.788729824500393, 9.085027167187334 ], [ -72.660494757768106, 8.625287787302682 ], [ -72.439862230097958, 8.405275376820029 ], [ -72.360900641555972, 8.002638454617895 ], [ -72.479678921178845, 7.632506008327354 ], [ -72.444487270788073, 7.423784898300482 ], [ -72.198352423781884, 7.340430813013683 ], [ -71.960175747348643, 6.991614895043539 ], [ -70.674233567981517, 7.087784735538719 ], [ -70.093312954372422, 6.96037649172311 ], [ -69.389479946557117, 6.099860541198836 ], [ -68.985318569602356, 6.206804917826858 ], [ -68.26505245631823, 6.153268133972475 ], [ -67.695087246355016, 6.267318020040647 ], [ -67.341439581965574, 6.095468044454023 ], [ -67.521531948502755, 5.556870428891969 ], [ -67.744696621355217, 5.221128648291668 ], [ -67.823012254493548, 4.503937282728899 ], [ -67.621835903581285, 3.839481716319995 ], [ -67.337563849543685, 3.542342230641722 ], [ -67.303173183853445, 3.31845408773718 ], [ -67.809938117123707, 2.820655015469569 ], [ -67.447092047786313, 2.600280869960869 ], [ -67.18129431829307, 2.250638129074062 ], [ -66.87632585312258, 1.253360500489336 ], [ -67.065048183852497, 1.130112209473225 ], [ -67.259997524673594, 1.719998684084956 ], [ -67.537810024674698, 2.03716278727633 ], [ -67.868565029558837, 1.692455145673392 ], [ -69.816973232691623, 1.714805202639624 ], [ -69.80459672715773, 1.089081122233466 ], [ -69.21863766140018, 0.985676581217433 ], [ -69.252434048119056, 0.602650865070075 ], [ -69.452396002872462, 0.706158758950693 ], [ -70.015565761989308, 0.541414292804205 ], [ -70.020655890570055, -0.185156345219539 ], [ -69.5770653957766, -0.549991957200163 ], [ -69.420485805932231, -1.122618503426409 ], [ -69.444101935489613, -1.556287123219818 ], [ -69.893635219996625, -4.298186944194327 ], [ -70.394043952094989, -3.766591485207825 ], [ -70.692682054309714, -3.742872002785859 ], [ -70.047708502874855, -2.725156345229699 ], [ -70.813475714791963, -2.256864515800743 ], [ -71.413645799429787, -2.342802422702128 ], [ -71.774760708285399, -2.169789727388938 ], [ -72.325786505813653, -2.434218031426454 ], [ -73.070392218707241, -2.308954359550953 ], [ -73.6595035468346, -1.260491224781134 ], [ -74.122395189089062, -1.002832533373848 ], [ -74.441600511355972, -0.530820000819887 ], [ -75.106624518520078, -0.05720549886486 ], [ -75.373223232713855, -0.15203175212045 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0.000000, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0.000000, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0.000000, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "brk_group": null, "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Costa Rica", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 2.000000, "mapcolor9": 4.000000, "mapcolor13": 2.000000, "pop_est": 4253877.000000, "gdp_md_est": 48320.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99.000000, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.965783047197363, 8.225027980985985 ], [ -83.508437262694315, 8.446926581247283 ], [ -83.711473965169077, 8.656836249216866 ], [ -83.596313035806645, 8.830443223501419 ], [ -83.632641567707836, 9.051385809765321 ], [ -83.909885626953738, 9.290802720573581 ], [ -84.303401658856359, 9.487354030795714 ], [ -84.647644212568665, 9.615537421095709 ], [ -84.713350796227772, 9.908051866083852 ], [ -84.975660366541334, 10.086723130733006 ], [ -84.91137488477024, 9.795991522658923 ], [ -85.11092342806532, 9.55703969974131 ], [ -85.339488288092269, 9.83454214114866 ], [ -85.66078650586698, 9.933347479690724 ], [ -85.797444831062847, 10.134885565629034 ], [ -85.791708747078431, 10.439337266476613 ], [ -85.659313727546674, 10.754330959511719 ], [ -85.941725430021762, 10.895278428587801 ], [ -85.712540452807303, 11.088444932494824 ], [ -85.561851976244199, 11.217119248901597 ], [ -84.903003302738952, 10.952303371621896 ], [ -84.673069017256267, 11.082657172078143 ], [ -84.35593075228104, 10.999225572142905 ], [ -84.19017859570485, 10.793450018756674 ], [ -83.895054490885954, 10.726839097532446 ], [ -83.655611741861577, 10.938764146361422 ], [ -83.402319708982958, 10.395438137244653 ], [ -83.015676642575173, 9.992982082555557 ], [ -82.546196255203483, 9.566134751824677 ], [ -82.932890998043575, 9.476812038608173 ], [ -82.927154914059159, 9.074330145702916 ], [ -82.719183112300527, 8.925708726431495 ], [ -82.868657192704774, 8.807266343618522 ], [ -82.829770677405165, 8.62629547773237 ], [ -82.913176439124214, 8.42351715741907 ], [ -82.965783047197363, 8.225027980985985 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0.000000, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0.000000, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0.000000, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "brk_group": null, "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Cuba", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 5.000000, "mapcolor9": 3.000000, "mapcolor13": 4.000000, "pop_est": 11451652.000000, "gdp_md_est": 108200.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99.000000, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4.000000, "long_len": 4.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.268151211257063, 23.188610744717707 ], [ -81.404457160146833, 23.117271429938782 ], [ -80.618768683581195, 23.105980129483001 ], [ -79.67952368846025, 22.76530324959883 ], [ -79.281485968732085, 22.399201565027056 ], [ -78.347434455056487, 22.512166246017088 ], [ -77.993295864560281, 22.277193508385935 ], [ -77.146422492161051, 21.657851467367834 ], [ -76.523824835908556, 21.206819566324373 ], [ -76.19462012399319, 21.220565497314013 ], [ -75.59822241891267, 21.016624457274133 ], [ -75.671060350228061, 20.735091254148003 ], [ -74.933896043584497, 20.693905137611385 ], [ -74.17802486845126, 20.284627793859741 ], [ -74.296648118777256, 20.050378526280682 ], [ -74.961594611292938, 19.923435370355691 ], [ -75.634680141894592, 19.873774318923196 ], [ -76.323656175425995, 19.95289093676206 ], [ -77.755480923153073, 19.855480861891877 ], [ -77.085108405246743, 20.413353786698792 ], [ -77.492654588516615, 20.673105373613893 ], [ -78.137292243141587, 20.739948838783434 ], [ -78.482826707661189, 21.028613389565852 ], [ -78.719866502584011, 21.598113511638434 ], [ -79.284999966127941, 21.559175319906501 ], [ -80.217475348618649, 21.827324327069036 ], [ -80.517534552721415, 22.03707896574176 ], [ -81.820943366203181, 22.192056586185071 ], [ -82.16999182811864, 22.387109279870753 ], [ -81.795001797192668, 22.636964830001958 ], [ -82.775897996740852, 22.688150336187064 ], [ -83.494458787759356, 22.168517971276131 ], [ -83.908800421875625, 22.154565334557333 ], [ -84.052150845053262, 21.910575059491254 ], [ -84.54703019889638, 21.801227728761646 ], [ -84.974911058273108, 21.89602814380109 ], [ -84.447062140627764, 22.204949856041907 ], [ -84.230357021811784, 22.565754706303764 ], [ -83.778239915690193, 22.788118394455694 ], [ -83.26754757356575, 22.983041897060644 ], [ -82.510436164057509, 23.078746649665188 ], [ -82.268151211257063, 23.188610744717707 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0.000000, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0.000000, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1.000000, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "brk_group": null, "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "formal_fr": null, "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 1.000000, "mapcolor9": 4.000000, "mapcolor13": 8.000000, "pop_est": 265100.000000, "gdp_md_est": 3600.000000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99.000000, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9.000000, "long_len": 15.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.731780226377452, 35.140025946588437 ], [ 32.80247358575275, 35.145503648411378 ], [ 32.946960890440806, 35.386703396133697 ], [ 33.667227003724946, 35.373215847305516 ], [ 34.576473829900465, 35.671595567358793 ], [ 33.900804477684204, 35.245755927057616 ], [ 33.973616570783463, 35.058506374648005 ], [ 33.866439650210111, 35.093594672174191 ], [ 33.675391880027064, 35.017862860650453 ], [ 33.525685255677502, 35.038688462864073 ], [ 33.475817498515852, 35.000344550103506 ], [ 33.455922072083467, 35.101423651666408 ], [ 33.383833449036302, 35.16271190036457 ], [ 33.190977003723049, 35.17312470147138 ], [ 32.919572381326134, 35.087832749973643 ], [ 32.731780226377452, 35.140025946588437 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0.000000, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0.000000, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0.000000, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "brk_group": null, "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Cyprus", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 2.000000, "mapcolor9": 3.000000, "mapcolor13": 7.000000, "pop_est": 531640.000000, "gdp_md_est": 22700.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99.000000, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.973616570783463, 35.058506374648005 ], [ 34.004880812320039, 34.978097846001859 ], [ 32.979827101378447, 34.571869411755443 ], [ 32.490296258277539, 34.701654771456475 ], [ 32.25666710788596, 35.103232326796629 ], [ 32.731780226377452, 35.140025946588437 ], [ 32.919572381326134, 35.087832749973643 ], [ 33.190977003723049, 35.17312470147138 ], [ 33.383833449036302, 35.16271190036457 ], [ 33.455922072083467, 35.101423651666408 ], [ 33.475817498515852, 35.000344550103506 ], [ 33.525685255677502, 35.038688462864073 ], [ 33.675391880027064, 35.017862860650453 ], [ 33.866439650210111, 35.093594672174191 ], [ 33.973616570783463, 35.058506374648005 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0.000000, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0.000000, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0.000000, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "brk_group": null, "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Czech Republic", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 1.000000, "mapcolor9": 2.000000, "mapcolor13": 6.000000, "pop_est": 10211904.000000, "gdp_md_est": 265200.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99.000000, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10.000000, "long_len": 14.000000, "abbrev_len": 8.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.960288120194576, 48.5969823268506 ], [ 16.499282667718774, 48.785808010445109 ], [ 16.029647251050221, 48.73389903420793 ], [ 15.253415561593982, 49.039074205107582 ], [ 14.901447381254057, 48.964401760445824 ], [ 14.338897739324722, 48.555305284207208 ], [ 13.595945672264437, 48.877171942737149 ], [ 13.031328973043431, 49.307068182973239 ], [ 12.521024204161193, 49.547415269562734 ], [ 12.415190870827445, 49.969120795280567 ], [ 12.240111118222558, 50.266337795607285 ], [ 12.966836785543194, 50.484076443069085 ], [ 13.338131951560285, 50.733234361364353 ], [ 14.056227654688172, 50.9269176295943 ], [ 14.307013380600637, 51.117267767941414 ], [ 14.570718214586066, 51.002339382524276 ], [ 15.016995883858669, 51.10667409932158 ], [ 15.490972120839729, 50.784729926143207 ], [ 16.238626743238569, 50.697732652379841 ], [ 16.176253289462267, 50.422607326857907 ], [ 16.719475945714436, 50.215746568393541 ], [ 16.868769158605659, 50.47397370055603 ], [ 17.554567091551121, 50.362145901076417 ], [ 17.649445021238989, 50.049038397819956 ], [ 18.392913852622172, 49.988628648470751 ], [ 18.853144158613617, 49.496229763377642 ], [ 18.554971144289482, 49.495015367218784 ], [ 18.399993523846177, 49.315000515330041 ], [ 18.170498488037964, 49.271514797556435 ], [ 18.104972771891852, 49.043983466175312 ], [ 17.913511590250465, 48.996492824899086 ], [ 17.886484816161811, 48.903475246773709 ], [ 17.545006951577108, 48.80001902932537 ], [ 17.101984897538898, 48.816968899117114 ], [ 16.960288120194576, 48.5969823268506 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0.000000, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0.000000, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0.000000, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "brk_group": null, "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Germany", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 5.000000, "mapcolor9": 5.000000, "mapcolor13": 1.000000, "pop_est": 82329758.000000, "gdp_md_est": 2918000.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99.000000, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.921906365609232, 54.983104153048032 ], [ 9.9395797054529, 54.596641954153256 ], [ 10.950112338920519, 54.363607082733154 ], [ 10.93946699386845, 54.00869334575259 ], [ 11.956252475643282, 54.196485500701158 ], [ 12.518440382546714, 54.470370591847995 ], [ 13.647467075259499, 54.075510972705899 ], [ 14.119686313542559, 53.75702912049104 ], [ 14.353315463934166, 53.248171291713106 ], [ 14.074521111719434, 52.981262518925348 ], [ 14.437599725002201, 52.624850165408304 ], [ 14.685026482815715, 52.089947414755216 ], [ 14.607098422919648, 51.745188096719971 ], [ 15.016995883858783, 51.106674099321708 ], [ 14.570718214586122, 51.002339382524383 ], [ 14.307013380600665, 51.117267767941371 ], [ 14.056227654688314, 50.926917629594357 ], [ 13.338131951560399, 50.733234361364282 ], [ 12.966836785543251, 50.484076443069171 ], [ 12.240111118222671, 50.266337795607228 ], [ 12.415190870827473, 49.969120795280617 ], [ 12.521024204161336, 49.547415269562748 ], [ 13.031328973043514, 49.307068182973239 ], [ 13.595945672264577, 48.877171942737164 ], [ 13.243357374737116, 48.41611481382904 ], [ 12.884102817443875, 48.28914581968786 ], [ 13.025851271220517, 47.637583523135959 ], [ 12.932626987366064, 47.467645575543997 ], [ 12.620759718484521, 47.672387600284424 ], [ 12.141357456112871, 47.703083401065783 ], [ 11.426414015354851, 47.523766181013059 ], [ 10.544504021861599, 47.566399237653798 ], [ 10.402083774465325, 47.302487697939171 ], [ 9.89606814946319, 47.580196845075704 ], [ 9.594226108446378, 47.525058091820199 ], [ 8.522611932009795, 47.830827541691349 ], [ 8.317301466514095, 47.61357982033627 ], [ 7.466759067422288, 47.620581976911922 ], [ 7.593676385131062, 48.333019110703731 ], [ 8.099278598674857, 49.01778351500343 ], [ 6.65822960778371, 49.201958319691641 ], [ 6.186320428094177, 49.463802802114515 ], [ 6.242751092156993, 49.902225653678727 ], [ 6.043073357781111, 50.128051662794235 ], [ 6.15665815595878, 50.803721015010581 ], [ 5.988658074577813, 51.851615709025054 ], [ 6.589396599970826, 51.852029120483394 ], [ 6.842869500362383, 52.228440253297549 ], [ 7.092053256873896, 53.144043280644894 ], [ 6.905139601274129, 53.482162177130647 ], [ 7.100424838905269, 53.693932196662672 ], [ 7.936239454793963, 53.748295803433791 ], [ 8.121706170289485, 53.527792466844289 ], [ 8.800734490604668, 54.020785630908904 ], [ 8.572117954145369, 54.395646470754059 ], [ 8.526229282270208, 54.962743638725158 ], [ 9.282048780971138, 54.830865383516311 ], [ 9.921906365609232, 54.983104153048032 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0.000000, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0.000000, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0.000000, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "brk_group": null, "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Djibouti", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 2.000000, "mapcolor9": 4.000000, "mapcolor13": 8.000000, "pop_est": 516055.000000, "gdp_md_est": 1885.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99.000000, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.081226027200159, 12.699638576707116 ], [ 43.317852410664671, 12.390148423711025 ], [ 43.286381463398925, 11.974928290245884 ], [ 42.715873650896526, 11.735640570518342 ], [ 43.145304803242141, 11.462039699748857 ], [ 42.776851841000962, 10.92687856693442 ], [ 42.554930000000127, 11.105110000000195 ], [ 42.314140000000123, 11.0342 ], [ 41.755570000000205, 11.050910000000101 ], [ 41.739590000000192, 11.355110000000138 ], [ 41.661760000000129, 11.6312 ], [ 42.000000000000114, 12.100000000000136 ], [ 42.35156000000012, 12.542230000000131 ], [ 42.779642368344753, 12.455415757695675 ], [ 43.081226027200159, 12.699638576707116 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0.000000, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0.000000, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0.000000, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "brk_group": null, "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Denmark", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 1.000000, "mapcolor9": 3.000000, "mapcolor13": 12.000000, "pop_est": 5500510.000000, "gdp_md_est": 203600.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99.000000, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.690006137755631, 55.609990953180784 ], [ 12.089991082414741, 54.800014553437933 ], [ 11.043543328504228, 55.364863796604254 ], [ 10.903913608451631, 55.779954738988749 ], [ 12.370904168353292, 56.111407375708836 ], [ 12.690006137755631, 55.609990953180784 ] ] ], [ [ [ 10.912181837618363, 56.458621324277914 ], [ 10.667803989309988, 56.081383368547222 ], [ 10.369992710011985, 56.190007229224733 ], [ 9.649984978889307, 55.469999498102055 ], [ 9.921906365609175, 54.98310415304806 ], [ 9.282048780971138, 54.830865383516169 ], [ 8.526229282270236, 54.962743638724987 ], [ 8.12031090661759, 55.517722683323626 ], [ 8.089976840862249, 56.540011705137601 ], [ 8.256581658571264, 56.8099693874303 ], [ 8.543437534223386, 57.110002753316905 ], [ 9.424469028367611, 57.172066148499482 ], [ 9.775558709358563, 57.447940782289663 ], [ 10.580005730846153, 57.73001658795485 ], [ 10.546105991262692, 57.215732733786155 ], [ 10.250000034230226, 56.89001618105047 ], [ 10.369992710011985, 56.609981594460834 ], [ 10.912181837618363, 56.458621324277914 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0.000000, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0.000000, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0.000000, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "brk_group": null, "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Dominican Republic", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 2.000000, "mapcolor9": 5.000000, "mapcolor13": 7.000000, "pop_est": 9650054.000000, "gdp_md_est": 78000.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99.000000, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14.000000, "long_len": 18.000000, "abbrev_len": 9.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.712361416292964, 19.714455878167357 ], [ -71.587304450146632, 19.8849105900821 ], [ -70.806706102161741, 19.880285549391985 ], [ -70.214364997016133, 19.622885240146161 ], [ -69.950815192327582, 19.647999986240009 ], [ -69.769250047470081, 19.293267116772441 ], [ -69.222125820579876, 19.313214219637103 ], [ -69.254346076113848, 19.015196234609874 ], [ -68.809411994080833, 18.979074408437853 ], [ -68.317943284768972, 18.612197577381693 ], [ -68.689315965434517, 18.205142320218613 ], [ -69.164945848248919, 18.422648423735112 ], [ -69.623987596297638, 18.38071299893025 ], [ -69.952933926051543, 18.428306993071061 ], [ -70.133232998317894, 18.245915025296895 ], [ -70.517137213814223, 18.184290879788833 ], [ -70.669298468697633, 18.426885891183034 ], [ -70.999950120717187, 18.283328762276213 ], [ -71.400209927033899, 17.598564357976599 ], [ -71.657661912712015, 17.757572740138698 ], [ -71.708304816358051, 18.044997056546094 ], [ -71.68773759630588, 18.316660061104471 ], [ -71.945112067335558, 18.616900132720261 ], [ -71.701302659782499, 18.785416978424053 ], [ -71.624873216422827, 19.169837958243306 ], [ -71.712361416292964, 19.714455878167357 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0.000000, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0.000000, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0.000000, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "brk_group": null, "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Algeria", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 1.000000, "mapcolor9": 6.000000, "mapcolor13": 3.000000, "pop_est": 34178188.000000, "gdp_md_est": 232900.000000, "pop_year": -99.000000, "lastcensus": 2008.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99.000000, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.999505649471613, 23.47166840259645 ], [ 8.572893100629784, 21.565660712159143 ], [ 5.677565952180686, 19.601206976799716 ], [ 4.267419467800039, 19.155265204336999 ], [ 3.158133172222705, 19.057364203360038 ], [ 3.1466610042539, 19.693578599521445 ], [ 2.683588494486429, 19.856230170160117 ], [ 2.06099083823392, 20.142233384679486 ], [ 1.823227573259032, 20.610809434486043 ], [ -1.550054897457613, 22.792665920497384 ], [ -4.923337368174231, 24.974574082941 ], [ -8.684399786809053, 27.395744126896005 ], [ -8.665124477564191, 27.589479071558227 ], [ -8.665589565454809, 27.656425889592356 ], [ -8.674116176782974, 28.841288967396579 ], [ -7.059227667661929, 29.579228420524529 ], [ -6.060632290053774, 29.731699734001694 ], [ -5.242129278982787, 30.000443020135592 ], [ -4.859646165374471, 30.501187649043846 ], [ -3.690441046554696, 30.896951605751156 ], [ -3.647497931320146, 31.637294012980675 ], [ -3.068980271812648, 31.724497992473218 ], [ -2.616604783529567, 32.09434621838615 ], [ -1.30789913573787, 32.262888902306102 ], [ -1.124551153966308, 32.651521511357132 ], [ -1.388049282222568, 32.864015000941308 ], [ -1.733454555661467, 33.919712836231994 ], [ -1.792985805661687, 34.527918606091205 ], [ -2.169913702798624, 35.16839630791668 ], [ -1.208602871089056, 35.714848741187097 ], [ -0.127454392894606, 35.888662421200806 ], [ 0.503876580415209, 36.301272894835279 ], [ 1.466918572606545, 36.605647081034405 ], [ 3.161698846050825, 36.78390493422522 ], [ 4.81575809084913, 36.865036932923459 ], [ 5.320120070017794, 36.716518866516623 ], [ 6.261819695672613, 37.110655015606739 ], [ 7.330384962603971, 37.118380642234371 ], [ 7.737078484741005, 36.885707505840216 ], [ 8.420964389691676, 36.946427313783161 ], [ 8.217824334352315, 36.433176988260286 ], [ 8.376367628623768, 35.479876003555944 ], [ 8.140981479534304, 34.65514598239379 ], [ 7.524481642292244, 34.09737641045146 ], [ 7.612641635782182, 33.344114895148962 ], [ 8.430472853233368, 32.748337307255952 ], [ 8.439102817426118, 32.506284898400821 ], [ 9.055602654668149, 32.102691962201291 ], [ 9.482139926805274, 30.307556057246188 ], [ 9.805634392952413, 29.42463837332339 ], [ 9.859997999723447, 28.959989732371014 ], [ 9.683884718472768, 28.1441738957792 ], [ 9.756128370816782, 27.688258571884148 ], [ 9.629056023811074, 27.14095347748092 ], [ 9.716285841519749, 26.512206325785698 ], [ 9.319410841518163, 26.094324856057455 ], [ 9.910692579801776, 25.36545461679674 ], [ 9.94826134607797, 24.936953640232517 ], [ 10.303846876678362, 24.379313259370917 ], [ 10.771363559622927, 24.562532050061751 ], [ 11.560669386449005, 24.097909247325518 ], [ 11.999505649471613, 23.47166840259645 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0.000000, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0.000000, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0.000000, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "brk_group": null, "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ecuador", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 5.000000, "mapcolor9": 2.000000, "mapcolor13": 12.000000, "pop_est": 14573101.000000, "gdp_md_est": 107700.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99.000000, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.302560594387216, -3.404856459164713 ], [ -79.770293341780928, -2.65751189535964 ], [ -79.986559210922422, -2.220794366061014 ], [ -80.368783942369248, -2.685158786635788 ], [ -80.967765469064361, -2.246942640800704 ], [ -80.764806281238037, -1.965047702648533 ], [ -80.933659023751716, -1.057454522306358 ], [ -80.583370327461267, -0.906662692878683 ], [ -80.399324713853758, -0.283703301600141 ], [ -80.020898200180369, 0.360340074053468 ], [ -80.090609707342111, 0.768428859862397 ], [ -79.542762010399798, 0.982937730305963 ], [ -78.855258755188714, 1.380923773601822 ], [ -77.855061408179523, 0.809925034992773 ], [ -77.668612840470445, 0.825893052570962 ], [ -77.424984300430395, 0.395686753741117 ], [ -76.576379767549398, 0.256935533037435 ], [ -76.292314419240967, 0.416047268064119 ], [ -75.801465827116601, 0.084801337073202 ], [ -75.373223232713855, -0.15203175212045 ], [ -75.233722703741947, -0.911416924649529 ], [ -75.544995693652041, -1.56160979574588 ], [ -76.635394253226721, -2.608677666843818 ], [ -77.837904832658609, -3.003020521663103 ], [ -78.450683966775642, -3.873096612161376 ], [ -78.639897223612337, -4.547784112164074 ], [ -79.205289069317729, -4.959128513207389 ], [ -79.624979214176179, -4.454198093283495 ], [ -80.02890804718561, -4.346090996928893 ], [ -80.442241990872162, -4.425724379090674 ], [ -80.469294603176948, -4.059286797708999 ], [ -80.184014858709673, -3.821161797708044 ], [ -80.302560594387216, -3.404856459164713 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0.000000, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0.000000, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0.000000, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "brk_group": null, "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Egypt, Arab Rep.", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 6.000000, "mapcolor9": 7.000000, "mapcolor13": 2.000000, "pop_est": 83082869.000000, "gdp_md_est": 443700.000000, "pop_year": -99.000000, "lastcensus": 2006.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99.000000, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.9226, 29.50133 ], [ 34.64174, 29.09942 ], [ 34.42655, 28.34399 ], [ 34.15451, 27.8233 ], [ 33.92136, 27.6487 ], [ 33.58811, 27.97136 ], [ 33.13676, 28.41765 ], [ 32.42323, 29.85108 ], [ 32.32046, 29.76043 ], [ 32.73482, 28.70523 ], [ 33.34876, 27.69989 ], [ 34.10455, 26.14227 ], [ 34.47387, 25.59856 ], [ 34.79507, 25.03375 ], [ 35.69241, 23.92671 ], [ 35.49372, 23.75237 ], [ 35.52598, 23.10244 ], [ 36.69069, 22.20485 ], [ 36.86623, 22.0 ], [ 32.9, 22.0 ], [ 29.02, 22.0 ], [ 25.0, 22.0 ], [ 25.0, 25.682499996360999 ], [ 25.0, 29.238654529533459 ], [ 24.70007, 30.04419 ], [ 24.95762, 30.6616 ], [ 24.80287, 31.08929 ], [ 25.16482, 31.56915 ], [ 26.49533, 31.58568 ], [ 27.45762, 31.32126 ], [ 28.45048, 31.02577 ], [ 28.91353, 30.87005 ], [ 29.68342, 31.18686 ], [ 30.09503, 31.4734 ], [ 30.97693, 31.55586 ], [ 31.68796, 31.4296 ], [ 31.96041, 30.9336 ], [ 32.19247, 31.26034 ], [ 32.99392, 31.02407 ], [ 33.7734, 30.96746 ], [ 34.26544, 31.21936 ], [ 34.9226, 29.50133 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0.000000, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0.000000, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0.000000, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "brk_group": null, "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Eritrea", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 1.000000, "mapcolor9": 2.000000, "mapcolor13": 12.000000, "pop_est": 5647168.000000, "gdp_md_est": 3945.000000, "pop_year": -99.000000, "lastcensus": 1984.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99.000000, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.35156000000012, 12.542230000000131 ], [ 42.00975, 12.86582 ], [ 41.59856, 13.452090000000112 ], [ 41.155193719249837, 13.773319810435225 ], [ 40.8966, 14.118640000000141 ], [ 40.026218702969175, 14.519579169162284 ], [ 39.34061, 14.53155 ], [ 39.0994, 14.74064 ], [ 38.51295, 14.50547 ], [ 37.906070000000113, 14.959430000000168 ], [ 37.59377, 14.2131 ], [ 36.42951, 14.42211 ], [ 36.32318891779812, 14.822480577041063 ], [ 36.753860304518582, 16.291874091044292 ], [ 36.852530000000115, 16.95655 ], [ 37.16747, 17.263140000000135 ], [ 37.90400000000011, 17.42754 ], [ 38.410089959473225, 17.998307399970315 ], [ 38.990622999840014, 16.840626125551694 ], [ 39.26611006038803, 15.922723496967251 ], [ 39.814293654140215, 15.435647284400318 ], [ 41.179274936697652, 14.491079616753211 ], [ 41.734951613132353, 13.921036892141558 ], [ 42.276830682144862, 13.343992010954423 ], [ 42.589576450375262, 13.000421250861905 ], [ 43.081226027200159, 12.699638576707116 ], [ 42.779642368344753, 12.455415757695675 ], [ 42.35156000000012, 12.542230000000131 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0.000000, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0.000000, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0.000000, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "brk_group": null, "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Spain", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 5.000000, "mapcolor9": 5.000000, "mapcolor13": 5.000000, "pop_est": 40525002.000000, "gdp_md_est": 1403000.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99.000000, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 3.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.034817674180246, 41.880570583659676 ], [ -8.984433152695672, 42.592775173506269 ], [ -9.392883673530648, 43.026624660812701 ], [ -7.97818966310831, 43.748337714200993 ], [ -6.754491746436756, 43.567909450853925 ], [ -5.411886359061597, 43.574239813809683 ], [ -4.347842779955783, 43.403449205085039 ], [ -3.517531704106091, 43.455900783861303 ], [ -1.901351284177764, 43.422802028978339 ], [ -1.502770961910528, 43.034014390630432 ], [ 0.338046909190581, 42.57954600683955 ], [ 0.701590610363894, 42.795734361332606 ], [ 1.826793247087153, 42.343384711265692 ], [ 2.985998976258458, 42.473015041669861 ], [ 3.039484083680549, 41.892120266276905 ], [ 2.091841668312185, 41.226088568683096 ], [ 0.810524529635188, 41.014731960609339 ], [ 0.721331007499401, 40.678318386389236 ], [ 0.106691521819869, 40.123933620762017 ], [ -0.278711310212941, 39.30997813573272 ], [ 0.111290724293838, 38.73851430923304 ], [ -0.467123582349103, 38.292365831041153 ], [ -0.683389451490598, 37.642353827457825 ], [ -1.438382127274849, 37.443063666324221 ], [ -2.146452602538119, 36.674144192037289 ], [ -3.415780808923387, 36.65889964451118 ], [ -4.368900926114719, 36.677839056946155 ], [ -4.995219285492212, 36.324708156879637 ], [ -5.377159796561457, 35.946850083961465 ], [ -5.866432257500904, 36.029816596006057 ], [ -6.236693894872175, 36.367677110330334 ], [ -6.520190802425404, 36.942913316387319 ], [ -7.453725551778092, 37.097787583966067 ], [ -7.537105475281024, 37.428904323876239 ], [ -7.166507941099865, 37.803894354802225 ], [ -7.029281175148796, 38.075764065089771 ], [ -7.374092169616318, 38.373058580064921 ], [ -7.098036668313128, 39.030072740223787 ], [ -7.498632371439726, 39.629571031241809 ], [ -7.066591559263529, 39.711891587882775 ], [ -7.026413133156595, 40.184524237624245 ], [ -6.864019944679385, 40.330871893874829 ], [ -6.851126674822552, 41.111082668617527 ], [ -6.389087693700915, 41.381815497394655 ], [ -6.668605515967656, 41.883386949219584 ], [ -7.251308966490824, 41.918346055665047 ], [ -7.422512986673795, 41.792074693359837 ], [ -8.013174607769912, 41.790886135417125 ], [ -8.263856980817792, 42.28046865495034 ], [ -8.67194576662672, 42.134689439454959 ], [ -9.034817674180246, 41.880570583659676 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0.000000, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0.000000, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0.000000, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "brk_group": null, "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Estonia", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 2.000000, "mapcolor9": 1.000000, "mapcolor13": 10.000000, "pop_est": 1299371.000000, "gdp_md_est": 27410.000000, "pop_year": -99.000000, "lastcensus": 2000.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99.000000, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.312862583114622, 57.793423570376973 ], [ 24.428927850042161, 58.383413397853289 ], [ 24.061198357853186, 58.257374579493408 ], [ 23.426560092876684, 58.612753404364625 ], [ 23.339795363058645, 59.187240302153384 ], [ 24.604214308376186, 59.465853786855021 ], [ 25.864189080516638, 59.611090399811332 ], [ 26.949135776484525, 59.445803331125774 ], [ 27.981114129353244, 59.475388088612874 ], [ 28.13169925305175, 59.300825100330925 ], [ 27.420166456824944, 58.724581203844238 ], [ 27.716685825315722, 57.791899115624361 ], [ 27.288184848751513, 57.474528306703832 ], [ 26.463532342237787, 57.47638865826633 ], [ 25.602809685984369, 57.847528794986573 ], [ 25.164593540149269, 57.970156968815189 ], [ 24.312862583114622, 57.793423570376973 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0.000000, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0.000000, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0.000000, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "brk_group": null, "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ethiopia", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 13.000000, "pop_est": 85237338.000000, "gdp_md_est": 68770.000000, "pop_year": -99.000000, "lastcensus": 2007.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99.000000, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.906070000000113, 14.959430000000168 ], [ 38.51295, 14.50547 ], [ 39.0994, 14.74064 ], [ 39.34061, 14.53155 ], [ 40.026250000000118, 14.51959 ], [ 40.8966, 14.118640000000141 ], [ 41.1552, 13.77333 ], [ 41.59856, 13.452090000000112 ], [ 42.00975, 12.86582 ], [ 42.35156000000012, 12.542230000000131 ], [ 42.000000000000114, 12.100000000000136 ], [ 41.661760000000129, 11.6312 ], [ 41.739590000000192, 11.355110000000138 ], [ 41.755570000000205, 11.050910000000101 ], [ 42.314140000000123, 11.0342 ], [ 42.554930000000127, 11.105110000000195 ], [ 42.776851841000962, 10.92687856693442 ], [ 42.55876, 10.57258000000013 ], [ 42.92812, 10.021940000000143 ], [ 43.296990000000108, 9.540480000000173 ], [ 43.67875, 9.18358000000012 ], [ 46.94834, 7.99688 ], [ 47.78942, 8.003 ], [ 44.9636, 5.001620000000116 ], [ 43.66087, 4.95755 ], [ 42.769670000000133, 4.252590000000225 ], [ 42.12861, 4.234130000000164 ], [ 41.855083092644122, 3.918911920483765 ], [ 41.171800000000133, 3.91909 ], [ 40.768480000000125, 4.257020000000125 ], [ 39.854940000000113, 3.838790000000131 ], [ 39.559384258765931, 3.422060000000215 ], [ 38.89251, 3.50074 ], [ 38.67114, 3.61607 ], [ 38.436970000000144, 3.58851 ], [ 38.120915000000139, 3.598605 ], [ 36.855093238008237, 4.447864127672858 ], [ 36.159078632855653, 4.447864127672858 ], [ 35.817447662353629, 4.776965663462022 ], [ 35.817447662353629, 5.338232082790853 ], [ 35.298007118233102, 5.506 ], [ 34.70702, 6.594220000000121 ], [ 34.25032, 6.82607 ], [ 34.075100000000191, 7.22595 ], [ 33.568290000000104, 7.71334 ], [ 32.954180000000235, 7.784970000000101 ], [ 33.294800000000123, 8.35458 ], [ 33.825500000000147, 8.37916 ], [ 33.97498, 8.684560000000147 ], [ 33.96162, 9.58358 ], [ 34.25745, 10.63009 ], [ 34.731150000000127, 10.910170000000107 ], [ 34.831630000000132, 11.318960000000118 ], [ 35.26049, 12.08286 ], [ 35.863630000000171, 12.57828 ], [ 36.27022, 13.563330000000121 ], [ 36.42951, 14.42211 ], [ 37.59377, 14.2131 ], [ 37.906070000000113, 14.959430000000168 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0.000000, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0.000000, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0.000000, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "brk_group": null, "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Finland", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 1.000000, "mapcolor9": 4.000000, "mapcolor13": 6.000000, "pop_est": 5250275.000000, "gdp_md_est": 193500.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99.000000, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.591929559043194, 69.064776923286658 ], [ 28.445943637818658, 68.364612942164044 ], [ 29.97742638522061, 67.698297024192655 ], [ 29.054588657352326, 66.944286200621931 ], [ 30.21765, 65.80598 ], [ 29.544429559046989, 64.948671576590485 ], [ 30.444684686003711, 64.20445343693909 ], [ 30.035872430142717, 63.552813625738551 ], [ 31.516092156711125, 62.867687486412891 ], [ 31.139991082490894, 62.357692776124409 ], [ 30.21110721204445, 61.780027777749694 ], [ 28.069997592895277, 60.503516547275837 ], [ 26.255172967236973, 60.423960679762502 ], [ 24.496623976344523, 60.057316392651657 ], [ 22.869694858499457, 59.846373196036225 ], [ 22.290763787533592, 60.391921291741539 ], [ 21.322244093519316, 60.720169989659524 ], [ 21.544866163832694, 61.705329494871791 ], [ 21.059211053153689, 62.60739329695874 ], [ 21.536029493910803, 63.18973501245587 ], [ 22.442744174903993, 63.817810370531291 ], [ 24.730511508897536, 64.902343655040838 ], [ 25.398067661243942, 65.111426500093742 ], [ 25.294043003040404, 65.534346421970454 ], [ 23.903378533633802, 66.006927395279618 ], [ 23.565879754335583, 66.396050930437426 ], [ 23.539473097434438, 67.93600861273525 ], [ 21.978534783626117, 68.616845608180697 ], [ 20.645592889089528, 69.106247260200874 ], [ 21.244936150810673, 69.370443020293081 ], [ 22.356237827247412, 68.841741441514912 ], [ 23.662049594830759, 68.891247463650544 ], [ 24.735679152126725, 68.64955678982146 ], [ 25.689212680776365, 69.092113755969038 ], [ 26.179622023226244, 69.825298977326142 ], [ 27.732292107867863, 70.164193020296253 ], [ 29.015572950971972, 69.766491197377988 ], [ 28.591929559043194, 69.064776923286658 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0.000000, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0.000000, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0.000000, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "brk_group": null, "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Fiji", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 1.000000, "mapcolor9": 2.000000, "mapcolor13": 2.000000, "pop_est": 944720.000000, "gdp_md_est": 3579.000000, "pop_year": -99.000000, "lastcensus": 2007.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99.000000, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4.000000, "long_len": 4.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.3736, -17.33992 ], [ 178.71806, -17.62846 ], [ 178.55271, -18.15059 ], [ 177.93266, -18.28799 ], [ 177.38146, -18.16432 ], [ 177.28504, -17.72465 ], [ 177.670870000000122, -17.38114 ], [ 178.12557, -17.50481 ], [ 178.3736, -17.33992 ] ] ], [ [ [ 179.36414266196428, -16.801354076946851 ], [ 178.725059362997087, -17.012041674368021 ], [ 178.596838595117077, -16.63915 ], [ 179.096609362997157, -16.433984277547424 ], [ 179.413509362997132, -16.379054277547397 ], [ 180.000000000000142, -16.06713266364244 ], [ 180.000000000000142, -16.55521656663916 ], [ 179.36414266196428, -16.801354076946851 ] ] ], [ [ [ -179.917369384765266, -16.501783135649362 ], [ -179.999999999, -16.55521656663916 ], [ -179.999999999, -16.06713266364244 ], [ -179.793320109048608, -16.020882256741231 ], [ -179.917369384765266, -16.501783135649362 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0.000000, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0.000000, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1.000000, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "brk_group": null, "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "formal_fr": null, "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6.000000, "mapcolor8": 6.000000, "mapcolor9": 6.000000, "mapcolor13": 3.000000, "pop_est": 3140.000000, "gdp_md_est": 105.100000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99.000000, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12.000000, "long_len": 16.000000, "abbrev_len": 8.000000, "tiny": -99.000000, "homepart": -99.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.2, -51.85 ], [ -60.0, -51.25 ], [ -59.15, -51.5 ], [ -58.55, -51.1 ], [ -57.75, -51.55 ], [ -58.05, -51.9 ], [ -59.4, -52.2 ], [ -59.85, -51.85 ], [ -60.7, -52.3 ], [ -61.2, -51.85 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0.000000, "geounit": "France", "gu_a3": "FRA", "su_dif": 0.000000, "subunit": "France", "su_a3": "FRA", "brk_diff": 0.000000, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "brk_group": null, "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "France", "name_alt": null, "mapcolor7": 7.000000, "mapcolor8": 5.000000, "mapcolor9": 9.000000, "mapcolor13": 11.000000, "pop_est": 64057792.000000, "gdp_md_est": 2128000.000000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99.000000, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 3.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.556424730018392, 2.504705308437053 ], [ -52.939657151894977, 2.124857692875622 ], [ -53.418465135295264, 2.053389187016037 ], [ -53.554839240113495, 2.334896551925965 ], [ -53.778520677288896, 2.376702785650053 ], [ -54.088062506717279, 2.105556545414629 ], [ -54.524754197799751, 2.311848863123785 ], [ -54.271229620975788, 2.738747870286943 ], [ -54.18428402364475, 3.194172268075235 ], [ -54.011503872276819, 3.622569891774859 ], [ -54.399542202356514, 4.212611395683481 ], [ -54.478632981979217, 4.896755682795643 ], [ -53.958044603070931, 5.756548163267809 ], [ -53.618452928264844, 5.646529038918402 ], [ -52.882141282754077, 5.409850979021599 ], [ -51.82334286152593, 4.565768133966145 ], [ -51.657797410678882, 4.156232408053029 ], [ -52.249337531123984, 3.241094468596287 ], [ -52.556424730018392, 2.504705308437053 ] ] ], [ [ [ 9.560016310269134, 42.152491970379572 ], [ 9.229752231491773, 41.380006822264448 ], [ 8.775723097375362, 41.583611965494441 ], [ 8.54421268070783, 42.256516628583086 ], [ 8.746009148807588, 42.62812185319396 ], [ 9.390000848028905, 43.009984849614739 ], [ 9.560016310269134, 42.152491970379572 ] ] ], [ [ [ 3.588184441755715, 50.378992418003577 ], [ 4.286022983425141, 49.907496649772554 ], [ 4.799221632515753, 49.985373033236328 ], [ 5.674051954784886, 49.529483547557447 ], [ 5.897759230176376, 49.442667141307169 ], [ 6.186320428094206, 49.463802802114458 ], [ 6.658229607783539, 49.201958319691556 ], [ 8.099278598674772, 49.017783515003373 ], [ 7.593676385131062, 48.333019110703731 ], [ 7.466759067422231, 47.620581976911865 ], [ 7.192202182655535, 47.449765529970989 ], [ 6.736571079138088, 47.541801255882888 ], [ 6.768713820023635, 47.287708238303679 ], [ 6.037388950228973, 46.725778713561908 ], [ 6.022609490593567, 46.272989813820516 ], [ 6.500099724970454, 46.429672756529442 ], [ 6.843592970414562, 45.991146552100673 ], [ 6.802355177445662, 45.70857982032868 ], [ 7.096652459347837, 45.333098863295874 ], [ 6.749955275101712, 45.028517971367592 ], [ 7.007562290076663, 44.254766750661389 ], [ 7.549596388386163, 44.127901109384823 ], [ 7.435184767291844, 43.693844916349178 ], [ 6.529245232783069, 43.128892320318357 ], [ 4.556962517931396, 43.399650987311588 ], [ 3.10041059735272, 43.075200507167125 ], [ 2.985998976258486, 42.473015041669896 ], [ 1.826793247087181, 42.343384711265657 ], [ 0.701590610363922, 42.795734361332649 ], [ 0.338046909190581, 42.579546006839564 ], [ -1.502770961910471, 43.034014390630489 ], [ -1.901351284177736, 43.422802028978339 ], [ -1.384225226232957, 44.022610378590173 ], [ -1.193797573237362, 46.014917710954876 ], [ -2.225724249673789, 47.064362697938208 ], [ -2.963276129559574, 47.570326646507965 ], [ -4.491554938159481, 47.954954332056417 ], [ -4.592349819344747, 48.684160468126947 ], [ -3.295813971357745, 48.901692409859635 ], [ -1.616510789384932, 48.644421291694584 ], [ -1.933494025063254, 49.776341864615773 ], [ -0.98946895995536, 49.347375800160876 ], [ 1.338761020522753, 50.127173163445264 ], [ 1.6390010921385, 50.946606350297515 ], [ 2.513573032246171, 51.148506171261857 ], [ 2.658422071960331, 50.79684804951566 ], [ 3.123251580425716, 50.780363267614518 ], [ 3.588184441755715, 50.378992418003577 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0.000000, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0.000000, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0.000000, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "brk_group": null, "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Gabon", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 2.000000, "mapcolor9": 5.000000, "mapcolor13": 5.000000, "pop_est": 1514993.000000, "gdp_md_est": 21110.000000, "pop_year": -99.000000, "lastcensus": 2003.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99.000000, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": 3.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.093772820691925, -3.978826592630547 ], [ 10.06613528813574, -2.969482517105682 ], [ 9.405245395554971, -2.144313246269043 ], [ 8.79799563969317, -1.111301364754496 ], [ 8.830086704146424, -0.779073581550037 ], [ 9.048419630579588, -0.459351494960217 ], [ 9.291350538783689, 0.268666083167687 ], [ 9.492888624721985, 1.010119533691494 ], [ 9.830284051155644, 1.067893784993799 ], [ 11.285078973036462, 1.057661851400013 ], [ 11.276449008843713, 2.261050930180872 ], [ 11.75166548019979, 2.326757513839993 ], [ 12.359380323952221, 2.19281220133945 ], [ 12.951333855855609, 2.32161570882694 ], [ 13.075822381246752, 2.267097072759015 ], [ 13.003113641012078, 1.83089630778332 ], [ 13.282631463278818, 1.31418366129688 ], [ 14.026668735417218, 1.395677395021153 ], [ 14.276265903386957, 1.196929836426619 ], [ 13.843320753645656, 0.038757635901149 ], [ 14.316418491277744, -0.552627455247048 ], [ 14.425455763413595, -1.333406670744971 ], [ 14.299210239324566, -1.998275648612214 ], [ 13.99240726080771, -2.4708049454891 ], [ 13.109618767965628, -2.428740329603514 ], [ 12.575284458067642, -1.948511244315135 ], [ 12.495702752338161, -2.391688327650243 ], [ 11.820963575903193, -2.514161472181982 ], [ 11.478038771214303, -2.765618991714241 ], [ 11.855121697648116, -3.426870619321051 ], [ 11.093772820691925, -3.978826592630547 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0.000000, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0.000000, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0.000000, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "brk_group": null, "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United Kingdom", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 6.000000, "mapcolor9": 6.000000, "mapcolor13": 3.000000, "pop_est": 62262000.000000, "gdp_md_est": 1977704.000000, "pop_year": 0.000000, "lastcensus": 2011.000000, "gdp_year": 2009.000000, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99.000000, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14.000000, "long_len": 14.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.661948614921897, 54.554603176483852 ], [ -6.197884894220977, 53.867565009163343 ], [ -6.953730231137996, 54.073702297575636 ], [ -7.572167934591079, 54.059956366585993 ], [ -7.366030646178785, 54.595840969452695 ], [ -7.572167934591079, 55.131622219454897 ], [ -6.733847011736145, 55.172860012423797 ], [ -5.661948614921897, 54.554603176483852 ] ] ], [ [ [ -3.005004848635281, 58.635000108466329 ], [ -4.073828497728016, 57.553024807355257 ], [ -3.055001796877661, 57.69001902936094 ], [ -1.959280564776918, 57.684799709699519 ], [ -2.219988165689301, 56.870017401753529 ], [ -3.119003058271119, 55.973793036515474 ], [ -2.085009324543023, 55.909998480851272 ], [ -2.005675679673857, 55.804902850350231 ], [ -1.11499101399221, 54.624986477265395 ], [ -0.4304849918542, 54.464376125702159 ], [ 0.184981316742039, 53.325014146531032 ], [ 0.469976840831777, 52.929999498091973 ], [ 1.681530795914739, 52.739520168664001 ], [ 1.559987827164377, 52.099998480836007 ], [ 1.050561557630914, 51.806760565795685 ], [ 1.449865349950301, 51.289427802121963 ], [ 0.550333693045502, 50.765738837275876 ], [ -0.78751746255864, 50.77498891865622 ], [ -2.489997524414377, 50.500018622431242 ], [ -2.956273972984036, 50.696879991247016 ], [ -3.617448085942328, 50.228355617872722 ], [ -4.542507900399244, 50.341837063185665 ], [ -5.245023159191135, 49.959999904981089 ], [ -5.776566941745301, 50.159677639356829 ], [ -4.309989793301838, 51.210001125689161 ], [ -3.414850633142123, 51.42600861266925 ], [ -3.422719467108323, 51.426848167406092 ], [ -4.984367234710874, 51.593466091510976 ], [ -5.267295701508885, 51.991400458374585 ], [ -4.222346564134853, 52.301355699261364 ], [ -4.770013393564113, 52.840004991255626 ], [ -4.579999152026915, 53.495003770555172 ], [ -3.093830673788659, 53.404547400669685 ], [ -3.092079637047107, 53.404440822963551 ], [ -2.945008510744344, 53.984999701546684 ], [ -3.614700825433033, 54.600936773292574 ], [ -3.630005458989331, 54.615012925833014 ], [ -4.844169073903004, 54.790971177786844 ], [ -5.082526617849226, 55.061600653699372 ], [ -4.719112107756644, 55.508472601943481 ], [ -5.047980922862109, 55.78398550070753 ], [ -5.58639767091114, 55.311146145236819 ], [ -5.644998745130181, 56.275014960344805 ], [ -6.149980841486354, 56.785009670633542 ], [ -5.786824713555291, 57.818848375064647 ], [ -5.009998745127575, 58.630013332750053 ], [ -4.211494513353557, 58.550845038479167 ], [ -3.005004848635281, 58.635000108466329 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0.000000, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0.000000, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0.000000, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "brk_group": null, "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Georgia", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 1.000000, "mapcolor9": 3.000000, "mapcolor13": 2.000000, "pop_est": 4615807.000000, "gdp_md_est": 21510.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99.000000, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.554084100110657, 41.535656236327569 ], [ 41.70317060727271, 41.962942816732919 ], [ 41.453470086438386, 42.64512339941794 ], [ 40.875469191253792, 43.013628038091284 ], [ 40.32139448422032, 43.128633938156845 ], [ 39.955008579270924, 43.434997666999223 ], [ 40.076964959479767, 43.553104153002316 ], [ 40.922184686045625, 43.382158514980787 ], [ 42.39439456560882, 43.220307929042633 ], [ 43.756016880067392, 42.740828152022488 ], [ 43.931199985536836, 42.554973863284772 ], [ 44.537622918481986, 42.711992702803627 ], [ 45.470279168485717, 42.502780666669977 ], [ 45.776410353382772, 42.092443956056357 ], [ 46.404950799348825, 41.860675157227305 ], [ 46.145431756379018, 41.72280243587258 ], [ 46.637908156120581, 41.181672675128226 ], [ 46.501637404166928, 41.064444688474111 ], [ 45.962600538930388, 41.123872585609774 ], [ 45.217426385281584, 41.411451931314048 ], [ 44.972480096218078, 41.248128567055595 ], [ 43.582745802592733, 41.092143256182567 ], [ 42.619548781104491, 41.583172715819941 ], [ 41.554084100110657, 41.535656236327569 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0.000000, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0.000000, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0.000000, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "brk_group": null, "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ghana", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 3.000000, "mapcolor9": 1.000000, "mapcolor13": 4.000000, "pop_est": 23832495.000000, "gdp_md_est": 34200.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99.000000, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.060121697604927, 5.928837388528876 ], [ -0.507637905265938, 5.343472601742675 ], [ -1.063624640294194, 5.000547797053812 ], [ -1.964706590167594, 4.710462144383371 ], [ -2.856125047202397, 4.994475816259509 ], [ -2.81070146321784, 5.38905121502411 ], [ -3.244370083011262, 6.250471503113502 ], [ -2.983584967450327, 7.379704901555513 ], [ -2.562189500326241, 8.219627793811483 ], [ -2.827496303712707, 9.642460842319778 ], [ -2.963896246747112, 10.395334784380083 ], [ -2.940409308270461, 10.962690334512558 ], [ -1.203357713211432, 11.009819240762738 ], [ -0.761575893548183, 10.936929633015055 ], [ -0.438701544588582, 11.098340969278722 ], [ 0.023802524423701, 11.018681748900804 ], [ -0.049784715159944, 10.706917832883931 ], [ 0.367579990245389, 10.19121287682718 ], [ 0.365900506195885, 9.465003973829482 ], [ 0.461191847342121, 8.677222601756014 ], [ 0.712029249686879, 8.312464504423829 ], [ 0.490957472342245, 7.411744289576475 ], [ 0.570384148774849, 6.914358628767189 ], [ 0.836931186536333, 6.279978745952149 ], [ 1.060121697604927, 5.928837388528876 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0.000000, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0.000000, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0.000000, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "brk_group": null, "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Guinea", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 3.000000, "mapcolor9": 7.000000, "mapcolor13": 2.000000, "pop_est": 10057975.000000, "gdp_md_est": 10600.000000, "pop_year": -99.000000, "lastcensus": 1996.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99.000000, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.439298468448698, 7.686042792181738 ], [ -8.722123582382125, 7.71167430259851 ], [ -8.926064622422004, 7.309037380396376 ], [ -9.208786383490846, 7.313920803247953 ], [ -9.40334815106975, 7.526905218938907 ], [ -9.337279832384581, 7.928534450711354 ], [ -9.755342169625834, 8.541055202666925 ], [ -10.016566534861255, 8.428503933135232 ], [ -10.23009355309128, 8.406205552601293 ], [ -10.505477260774668, 8.348896389189605 ], [ -10.494315151399633, 8.715540676300435 ], [ -10.654770473665891, 8.977178452994195 ], [ -10.622395188835041, 9.267910061068278 ], [ -10.839151984083301, 9.688246161330369 ], [ -11.11748124840733, 10.045872911006285 ], [ -11.917277390988659, 10.046983954300558 ], [ -12.150338100625005, 9.858571682164381 ], [ -12.425928514037565, 9.835834051955956 ], [ -12.59671912276221, 9.620188300001971 ], [ -12.71195756677308, 9.342711696810767 ], [ -13.246550258832515, 8.903048610871508 ], [ -13.685153977909792, 9.49474376061346 ], [ -14.074044969122282, 9.886166897008252 ], [ -14.330075852912371, 10.015719712763968 ], [ -14.579698859098258, 10.214467271358515 ], [ -14.693231980843505, 10.656300767454042 ], [ -14.839553798877944, 10.876571560098141 ], [ -15.130311245168173, 11.040411688679526 ], [ -14.685687221728898, 11.527823798056488 ], [ -14.382191534878729, 11.509271958863692 ], [ -14.121406419317779, 11.677117010947697 ], [ -13.900799729863776, 11.678718980348748 ], [ -13.743160773157413, 11.811269029177412 ], [ -13.828271857142125, 12.142644151249044 ], [ -13.718743658899513, 12.247185573775511 ], [ -13.700476040084325, 12.586182969610194 ], [ -13.217818162478238, 12.575873521367967 ], [ -12.499050665730564, 12.332089952031057 ], [ -12.27859900557344, 12.354440008997287 ], [ -12.203564825885634, 12.465647691289405 ], [ -11.658300950557932, 12.386582749882836 ], [ -11.513942836950591, 12.442987575729418 ], [ -11.456168585648271, 12.076834214725338 ], [ -11.297573614944511, 12.077971096235771 ], [ -11.03655595543826, 12.211244615116515 ], [ -10.870829637078215, 12.17788747807211 ], [ -10.593223842806282, 11.92397532800598 ], [ -10.165213792348837, 11.844083563682744 ], [ -9.890992804392013, 12.060478623904972 ], [ -9.567911749703214, 12.194243068892476 ], [ -9.327616339546012, 12.334286200403454 ], [ -9.127473517279583, 12.308060411015333 ], [ -8.90526485842453, 12.088358059126437 ], [ -8.786099005559464, 11.812560939984706 ], [ -8.376304897484914, 11.393645941610629 ], [ -8.581305304386774, 11.136245632364805 ], [ -8.620321010767128, 10.810890814655183 ], [ -8.407310756860028, 10.909256903522762 ], [ -8.282357143578281, 10.792597357623846 ], [ -8.33537716310974, 10.494811916541934 ], [ -8.029943610048619, 10.206534939001713 ], [ -8.229337124046822, 10.129020290563901 ], [ -8.309616461612251, 9.789531968622441 ], [ -8.079113735374349, 9.376223863152035 ], [ -7.832100389019188, 8.575704250518626 ], [ -8.20349890790088, 8.455453192575447 ], [ -8.299048631208564, 8.316443589710303 ], [ -8.221792364932199, 8.123328762235573 ], [ -8.280703497744938, 7.687179673692157 ], [ -8.439298468448698, 7.686042792181738 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0.000000, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0.000000, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0.000000, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "brk_group": null, "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Gambia, The", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 8.000000, "pop_est": 1782893.000000, "gdp_md_est": 2272.000000, "pop_year": -99.000000, "lastcensus": 2003.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99.000000, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6.000000, "long_len": 10.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.841524624081273, 13.151393947802561 ], [ -16.713728807023472, 13.594958604379855 ], [ -15.624596320039942, 13.623587347869559 ], [ -15.39877031092446, 13.860368760630919 ], [ -15.081735398813819, 13.876491807505985 ], [ -14.687030808968487, 13.630356960499784 ], [ -14.376713833055788, 13.625680243377374 ], [ -14.046992356817482, 13.794067898000449 ], [ -13.844963344772408, 13.505041612192002 ], [ -14.277701788784555, 13.280585028532244 ], [ -14.712197231494628, 13.298206691943777 ], [ -15.141163295949468, 13.509511623585238 ], [ -15.511812506562933, 13.278569647672867 ], [ -15.691000535534995, 13.270353094938457 ], [ -15.931295945692211, 13.130284125211332 ], [ -16.841524624081273, 13.151393947802561 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0.000000, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0.000000, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0.000000, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "brk_group": null, "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Guinea-Bissau", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 5.000000, "mapcolor9": 3.000000, "mapcolor13": 4.000000, "pop_est": 1533964.000000, "gdp_md_est": 904.200000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99.000000, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13.000000, "long_len": 13.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.130311245168173, 11.040411688679526 ], [ -15.664180467175527, 11.458474025920795 ], [ -16.085214199273565, 11.52459402103824 ], [ -16.314786749730203, 11.80651479740655 ], [ -16.30894731288123, 11.95870189050612 ], [ -16.613838263403281, 12.170911159712702 ], [ -16.677451951554573, 12.384851589401052 ], [ -16.147716844130585, 12.547761542201187 ], [ -15.816574266004254, 12.515567124883347 ], [ -15.54847693527401, 12.628170070847347 ], [ -13.700476040084325, 12.586182969610194 ], [ -13.718743658899513, 12.247185573775511 ], [ -13.828271857142125, 12.142644151249044 ], [ -13.743160773157413, 11.811269029177412 ], [ -13.900799729863776, 11.678718980348748 ], [ -14.121406419317779, 11.677117010947697 ], [ -14.382191534878729, 11.509271958863692 ], [ -14.685687221728898, 11.527823798056488 ], [ -15.130311245168173, 11.040411688679526 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0.000000, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0.000000, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0.000000, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "brk_group": null, "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Equatorial Guinea", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 1.000000, "mapcolor9": 4.000000, "mapcolor13": 8.000000, "pop_est": 650702.000000, "gdp_md_est": 14060.000000, "pop_year": 0.000000, "lastcensus": 2002.000000, "gdp_year": 0.000000, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99.000000, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10.000000, "long_len": 17.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492888624721985, 1.010119533691494 ], [ 9.305613234096256, 1.160911363119183 ], [ 9.649158155972628, 2.283866075037736 ], [ 11.276449008843713, 2.261050930180872 ], [ 11.285078973036462, 1.057661851400013 ], [ 9.830284051155644, 1.067893784993799 ], [ 9.492888624721985, 1.010119533691494 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0.000000, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0.000000, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0.000000, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "brk_group": null, "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Greece", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 2.000000, "mapcolor13": 9.000000, "pop_est": 10737428.000000, "gdp_md_est": 343000.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99.000000, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.699980096133004, 35.705004380835533 ], [ 24.24666507334868, 35.368022365860156 ], [ 25.02501549652888, 35.424995632461986 ], [ 25.769207797964185, 35.35401805270908 ], [ 25.745023227651586, 35.179997666966216 ], [ 26.290002882601726, 35.299990342747918 ], [ 26.164997592887659, 35.004995429009796 ], [ 24.724982130642303, 34.91998769788961 ], [ 24.735007358506948, 35.084990546197588 ], [ 23.514978468528113, 35.279991563450977 ], [ 23.699980096133004, 35.705004380835533 ] ] ], [ [ [ 26.604195590936285, 41.562114569661105 ], [ 26.29460208507578, 40.936261298174259 ], [ 26.056942172965506, 40.824123440100834 ], [ 25.447677036244187, 40.852545477861469 ], [ 24.925848422960939, 40.947061672523233 ], [ 23.714811232200816, 40.687129218095123 ], [ 24.407998894964066, 40.124992987624097 ], [ 23.899967889102584, 39.96200552017558 ], [ 23.3429993018608, 39.960997829745793 ], [ 22.813987664488963, 40.476005153966554 ], [ 22.626298862404781, 40.256561184239189 ], [ 22.849747755634809, 39.659310818025773 ], [ 23.350027296652598, 39.190011298167263 ], [ 22.973099399515547, 38.970903225249657 ], [ 23.530016310324953, 38.510001125638468 ], [ 24.025024855248944, 38.21999298761645 ], [ 24.040011020613605, 37.655014553369426 ], [ 23.115002882589152, 37.920011298162223 ], [ 23.409971958111072, 37.409990749657396 ], [ 22.774971958108637, 37.305010077456558 ], [ 23.15422529469862, 36.422505804992056 ], [ 22.490028110451107, 36.41000010837746 ], [ 21.670026482843696, 36.844986477194198 ], [ 21.295010613701578, 37.644989325504696 ], [ 21.120034213961333, 38.310323391262727 ], [ 20.730032179454582, 38.769985256498785 ], [ 20.217712029712857, 39.340234686839636 ], [ 20.15001590341052, 39.624997666984029 ], [ 20.615000441172782, 40.110006822259436 ], [ 20.674996779063633, 40.434999904943055 ], [ 20.999989861747281, 40.580003973953978 ], [ 21.020040317476429, 40.84272695572588 ], [ 21.674160597426976, 40.931274522457983 ], [ 22.05537763844427, 41.149865831052693 ], [ 22.597308383889015, 41.130487168943205 ], [ 22.76177, 41.3048 ], [ 22.952377150166569, 41.337993882811219 ], [ 23.692073601992462, 41.309080918943863 ], [ 24.492644891058035, 41.58389618587205 ], [ 25.197201368925533, 41.234485988930658 ], [ 26.106138136507184, 41.328898830727837 ], [ 26.117041863720914, 41.826904608724732 ], [ 26.604195590936285, 41.562114569661105 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0.000000, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0.000000, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0.000000, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "brk_group": null, "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "formal_fr": null, "note_adm0": "Den.", "note_brk": null, "name_sort": "Greenland", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 1.000000, "mapcolor9": 3.000000, "mapcolor13": 12.000000, "pop_est": 57600.000000, "gdp_md_est": 1100.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99.000000, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": -99.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.76379, 82.62796 ], [ -43.40644, 83.22516 ], [ -39.89753, 83.18018 ], [ -38.62214, 83.54905 ], [ -35.08787, 83.64513 ], [ -27.10046, 83.51966 ], [ -20.84539, 82.72669 ], [ -22.69182, 82.34165 ], [ -26.51753, 82.29765 ], [ -31.9, 82.2 ], [ -31.39646, 82.02154 ], [ -27.85666, 82.13178 ], [ -24.84448, 81.78697 ], [ -22.90328, 82.09317 ], [ -22.07175, 81.73449 ], [ -23.16961, 81.15271 ], [ -20.62363, 81.52462 ], [ -15.76818, 81.91245 ], [ -12.77018, 81.71885 ], [ -12.20855, 81.29154 ], [ -16.28533, 80.58004 ], [ -16.85, 80.35 ], [ -20.04624, 80.17708 ], [ -17.73035, 80.12912 ], [ -18.9, 79.4 ], [ -19.70499, 78.75128 ], [ -19.67353, 77.63859 ], [ -18.47285, 76.98565 ], [ -20.03503, 76.94434 ], [ -21.67944, 76.62795 ], [ -19.83407, 76.09808 ], [ -19.59896, 75.24838 ], [ -20.66818, 75.15585 ], [ -19.37281, 74.29561 ], [ -21.59422, 74.22382 ], [ -20.43454, 73.81713 ], [ -20.76234, 73.46436 ], [ -22.17221, 73.30955 ], [ -23.56593, 73.30663 ], [ -22.31311, 72.62928 ], [ -22.29954, 72.18409 ], [ -24.27834, 72.59788 ], [ -24.79296, 72.3302 ], [ -23.44296, 72.08016 ], [ -22.13281, 71.46898 ], [ -21.75356, 70.66369 ], [ -23.53603, 70.471 ], [ -24.30702, 70.85649 ], [ -25.54341, 71.43094 ], [ -25.20135, 70.75226 ], [ -26.36276, 70.22646 ], [ -23.72742, 70.18401 ], [ -22.34902, 70.12946 ], [ -25.02927, 69.2588 ], [ -27.74737, 68.47046 ], [ -30.67371, 68.12503 ], [ -31.77665, 68.12078 ], [ -32.81105, 67.73547 ], [ -34.20196, 66.67974 ], [ -36.35284, 65.9789 ], [ -37.04378, 65.93768 ], [ -38.37505, 65.69213 ], [ -39.81222, 65.45848 ], [ -40.66899, 64.83997 ], [ -40.68281, 64.13902 ], [ -41.1887, 63.48246 ], [ -42.81938, 62.68233 ], [ -42.41666, 61.90093 ], [ -42.86619, 61.07404 ], [ -43.3784, 60.09772 ], [ -44.7875, 60.03676 ], [ -46.26364, 60.85328 ], [ -48.26294, 60.85843 ], [ -49.23308, 61.40681 ], [ -49.90039, 62.38336 ], [ -51.63325, 63.62691 ], [ -52.14014, 64.27842 ], [ -52.27659, 65.1767 ], [ -53.66166, 66.09957 ], [ -53.30161, 66.8365 ], [ -53.96911, 67.18899 ], [ -52.9804, 68.35759 ], [ -51.47536, 68.72958 ], [ -51.08041, 69.14781 ], [ -50.87122, 69.9291 ], [ -52.013585, 69.574925 ], [ -52.55792, 69.42616 ], [ -53.45629, 69.283625 ], [ -54.68336, 69.61003 ], [ -54.75001, 70.28932 ], [ -54.35884, 70.821315 ], [ -53.431315, 70.835755 ], [ -51.39014, 70.56978 ], [ -53.10937, 71.20485 ], [ -54.00422, 71.54719 ], [ -55.0, 71.406536967272572 ], [ -55.83468, 71.65444 ], [ -54.71819, 72.58625 ], [ -55.32634, 72.95861 ], [ -56.12003, 73.64977 ], [ -57.32363, 74.71026 ], [ -58.59679, 75.09861 ], [ -58.58516, 75.51727 ], [ -61.26861, 76.10238 ], [ -63.39165, 76.1752 ], [ -66.06427, 76.13486 ], [ -68.50438, 76.06141 ], [ -69.66485, 76.37975 ], [ -71.40257, 77.00857 ], [ -68.77671, 77.32312 ], [ -66.76397, 77.37595 ], [ -71.04293, 77.63595 ], [ -73.297, 78.04419 ], [ -73.15938, 78.43271 ], [ -69.37345, 78.91388 ], [ -65.7107, 79.39436 ], [ -65.3239, 79.75814 ], [ -68.02298, 80.11721 ], [ -67.15129, 80.51582 ], [ -63.68925, 81.21396 ], [ -62.23444, 81.3211 ], [ -62.65116, 81.77042 ], [ -60.28249, 82.03363 ], [ -57.20744, 82.19074 ], [ -54.13442, 82.19962 ], [ -53.04328, 81.88833 ], [ -50.39061, 82.43883 ], [ -48.00386, 82.06481 ], [ -46.59984, 81.985945 ], [ -44.523, 81.6607 ], [ -46.9007, 82.19979 ], [ -46.76379, 82.62796 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0.000000, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0.000000, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0.000000, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "brk_group": null, "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Guatemala", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 3.000000, "mapcolor9": 3.000000, "mapcolor13": 6.000000, "pop_est": 13276517.000000, "gdp_md_est": 68580.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99.000000, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 5.000000, "tiny": 4.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.095554572290979, 13.735337632700734 ], [ -90.608624030300845, 13.909771429901951 ], [ -91.232410244496052, 13.927832342987957 ], [ -91.689746670279135, 14.126218166556455 ], [ -92.227750006869826, 14.538828640190928 ], [ -92.203229539747326, 14.830102850804069 ], [ -92.087215949252069, 15.064584662328441 ], [ -92.229248623406278, 15.25144664149586 ], [ -91.747960171255926, 16.066564846251723 ], [ -90.464472622422662, 16.069562079324655 ], [ -90.438866950222035, 16.410109768128095 ], [ -90.600846727240921, 16.470777899638762 ], [ -90.711821865587723, 16.687483018454728 ], [ -91.081670091500655, 16.918476670799407 ], [ -91.453921271515156, 17.252177232324172 ], [ -91.002269253284211, 17.25465770107418 ], [ -91.001519945015957, 17.81759491624571 ], [ -90.067933519230976, 17.819326076727478 ], [ -89.143080410503316, 17.808318996649319 ], [ -89.150806037130948, 17.015576687075836 ], [ -89.229121670269279, 15.886937567605171 ], [ -88.930612759135272, 15.887273464415076 ], [ -88.604586147805847, 15.70638011317736 ], [ -88.51836402052686, 15.855389105690975 ], [ -88.225022752622024, 15.727722479713904 ], [ -88.680679694355632, 15.346247056535304 ], [ -89.154810960633569, 15.06641917567481 ], [ -89.225220099631272, 14.874286200413621 ], [ -89.145535041037178, 14.678019110569082 ], [ -89.3533259752828, 14.424132798719114 ], [ -89.587342698916558, 14.36258616785949 ], [ -89.534219326520514, 14.244815578666305 ], [ -89.721933966820728, 14.134228013561696 ], [ -90.064677903996596, 13.881969509328925 ], [ -90.095554572290979, 13.735337632700734 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0.000000, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0.000000, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0.000000, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "brk_group": null, "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Guyana", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 1.000000, "mapcolor9": 4.000000, "mapcolor13": 8.000000, "pop_est": 772298.000000, "gdp_md_est": 2966.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99.000000, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.758284878159195, 8.367034816924047 ], [ -59.101684129458661, 7.999201971870492 ], [ -58.482962205628063, 7.347691351750697 ], [ -58.454876064677421, 6.832787380394464 ], [ -58.078103196837375, 6.809093736188643 ], [ -57.542218593970645, 6.321268215353356 ], [ -57.147436489476888, 5.973149929219161 ], [ -57.307245856339506, 5.073566595882227 ], [ -57.914288906472137, 4.812626451024414 ], [ -57.860209520078698, 4.57680105226045 ], [ -58.044694383360678, 4.060863552258382 ], [ -57.60156897645787, 3.334654649260685 ], [ -57.28143347840971, 3.333491929534119 ], [ -57.150097825739913, 2.768926906745406 ], [ -56.539385748914555, 1.899522609866921 ], [ -56.782704230360828, 1.863710842288654 ], [ -57.335822923396904, 1.948537705895759 ], [ -57.660971035377372, 1.682584947105639 ], [ -58.113449876525017, 1.507195135907025 ], [ -58.429477098205965, 1.463941962078721 ], [ -58.540012986878295, 1.268088283692521 ], [ -59.030861579002647, 1.317697658692722 ], [ -59.646043667221257, 1.786893825686789 ], [ -59.718545701726747, 2.24963043864436 ], [ -59.974524909084558, 2.755232652188056 ], [ -59.815413174057866, 3.606498521332085 ], [ -59.538039923731233, 3.958802598481938 ], [ -59.767405768458715, 4.423502915866607 ], [ -60.11100236676738, 4.574966538914083 ], [ -59.980958624904886, 5.014061184098139 ], [ -60.213683437731333, 5.244486395687602 ], [ -60.733574184803722, 5.200277207861901 ], [ -61.410302903881956, 5.959068101419618 ], [ -61.139415045807951, 6.234296779806144 ], [ -61.159336310456482, 6.696077378766319 ], [ -60.543999192940987, 6.856584377464883 ], [ -60.295668097562398, 7.043911444522919 ], [ -60.637972785063766, 7.414999904810855 ], [ -60.5505879380582, 7.779602972846178 ], [ -59.758284878159195, 8.367034816924047 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0.000000, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0.000000, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0.000000, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "brk_group": null, "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Honduras", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 5.000000, "mapcolor9": 2.000000, "mapcolor13": 5.000000, "pop_est": 7792854.000000, "gdp_md_est": 33720.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99.000000, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.316654425795491, 12.984685777229004 ], [ -87.489408738947134, 13.297534898323931 ], [ -87.79311113152653, 13.384480495655168 ], [ -87.723502977229316, 13.785050360565606 ], [ -87.859515347021613, 13.893312486217098 ], [ -88.065342576840123, 13.964625962779792 ], [ -88.503997972349623, 13.845485948130943 ], [ -88.541230841815945, 13.980154730683523 ], [ -88.843072882832757, 14.140506700085211 ], [ -89.058511929057659, 14.340029405164216 ], [ -89.353325975282814, 14.424132798719086 ], [ -89.145535041037192, 14.678019110569153 ], [ -89.225220099631258, 14.874286200413678 ], [ -89.15481096063354, 15.066419175674866 ], [ -88.680679694355604, 15.34624705653539 ], [ -88.225022752621953, 15.727722479714032 ], [ -88.121153123715374, 15.688655096901357 ], [ -87.901812506852423, 15.864458319558196 ], [ -87.615680101252337, 15.878798529519202 ], [ -87.522920905288458, 15.797278957578783 ], [ -87.367762417332131, 15.846940009011291 ], [ -86.903191291028179, 15.756712958229571 ], [ -86.440945604177386, 15.782835394753192 ], [ -86.119233974944336, 15.893448798073962 ], [ -86.001954311857844, 16.005405788634391 ], [ -85.683317430346278, 15.953651841693954 ], [ -85.444003872402561, 15.885749009662447 ], [ -85.182443610357211, 15.909158433490632 ], [ -84.983721889978824, 15.995923163308703 ], [ -84.526979743167146, 15.857223619037427 ], [ -84.368255581382584, 15.835157782448732 ], [ -84.063054572266822, 15.648244126849136 ], [ -83.773976610026125, 15.424071763566872 ], [ -83.410381232420377, 15.270902818253774 ], [ -83.147219000974133, 14.99582916916421 ], [ -83.489988776366033, 15.016267198135665 ], [ -83.628584967772895, 14.880073960830373 ], [ -83.97572140169359, 14.749435939996488 ], [ -84.228341640952408, 14.748764146376629 ], [ -84.449335903648603, 14.621614284722511 ], [ -84.649582078779645, 14.666805324761867 ], [ -84.820036790694303, 14.81958669683263 ], [ -84.924500698572331, 14.790492865452336 ], [ -85.052787441736882, 14.551541042534723 ], [ -85.148750576502891, 14.560196844943619 ], [ -85.165364549484821, 14.354369615125051 ], [ -85.514413011400279, 14.079011745657908 ], [ -85.698665330736958, 13.960078436738002 ], [ -85.801294725268519, 13.836054999237604 ], [ -86.096263800790609, 14.038187364147234 ], [ -86.312142096689854, 13.771356106008227 ], [ -86.52070817741992, 13.778487453664468 ], [ -86.755086636079625, 13.754845485890939 ], [ -86.733821784191491, 13.2630925562014 ], [ -86.880557013684381, 13.254204209847217 ], [ -87.005769009127448, 13.025794379117258 ], [ -87.316654425795491, 12.984685777229004 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0.000000, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0.000000, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0.000000, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "brk_group": null, "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Croatia", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 4.000000, "mapcolor9": 5.000000, "mapcolor13": 1.000000, "pop_est": 4489409.000000, "gdp_md_est": 82390.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99.000000, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.829838087650046, 45.908877671891844 ], [ 19.072768995854176, 45.521511135432092 ], [ 19.390475701584592, 45.236515611342384 ], [ 19.005486281010121, 44.860233669609158 ], [ 18.553214145591653, 45.081589667331457 ], [ 17.861783481526402, 45.067740383477144 ], [ 17.002146030351014, 45.233776760430942 ], [ 16.534939406000206, 45.211607570977719 ], [ 16.318156772535872, 45.004126695325908 ], [ 15.959367303133376, 45.233776760430942 ], [ 15.750026075918981, 44.818711656262565 ], [ 16.239660271884532, 44.351143296885709 ], [ 16.456442905348865, 44.041239732431279 ], [ 16.916156447017329, 43.66772247982567 ], [ 17.297373488034452, 43.446340643887368 ], [ 17.674921502358984, 43.02856252702361 ], [ 18.56, 42.65 ], [ 18.450016310304818, 42.479991360029317 ], [ 17.509970330483327, 42.849994615239154 ], [ 16.930005730871642, 43.20999848080038 ], [ 16.015384555737683, 43.507215481127218 ], [ 15.174453973052096, 44.243191229827914 ], [ 15.376250441151797, 44.317915350922078 ], [ 14.920309279040509, 44.738483995129457 ], [ 14.901602410550879, 45.076060289076111 ], [ 14.258747592839995, 45.233776760430942 ], [ 13.952254672917036, 44.802123521496867 ], [ 13.656975538801191, 45.136935126315961 ], [ 13.679403110415819, 45.484149074885011 ], [ 13.715059848697251, 45.500323798192426 ], [ 14.411968214585499, 45.466165676447417 ], [ 14.59510949062792, 45.634940904312828 ], [ 14.935243767972963, 45.471695054702764 ], [ 15.327674594797429, 45.452316392593332 ], [ 15.323953891672431, 45.731782538427694 ], [ 15.671529575267641, 45.834153550797907 ], [ 15.768732944408612, 46.238108222023527 ], [ 16.564808383864943, 46.503750922219808 ], [ 16.882515089595415, 46.380631822284442 ], [ 17.630066359129557, 45.951769110694102 ], [ 18.456062452882861, 45.75948110613615 ], [ 18.829838087650046, 45.908877671891844 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0.000000, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0.000000, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0.000000, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "brk_group": null, "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Haiti", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 1.000000, "mapcolor9": 7.000000, "mapcolor13": 2.000000, "pop_est": 9035536.000000, "gdp_md_est": 11500.000000, "pop_year": -99.000000, "lastcensus": 2003.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99.000000, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.189790615517623, 19.915683905511912 ], [ -72.579672817663621, 19.871500555902358 ], [ -71.712361416292964, 19.714455878167357 ], [ -71.624873216422827, 19.169837958243306 ], [ -71.701302659782499, 18.785416978424053 ], [ -71.945112067335558, 18.616900132720261 ], [ -71.68773759630588, 18.316660061104471 ], [ -71.708304816358051, 18.044997056546094 ], [ -72.372476162389347, 18.21496084235406 ], [ -72.844411180294884, 18.145611070218365 ], [ -73.454554816365032, 18.2179063989947 ], [ -73.922433234335656, 18.030992743395004 ], [ -74.458033616824778, 18.342549953682706 ], [ -74.369925299767132, 18.664907538319412 ], [ -73.449542202432724, 18.526052964751145 ], [ -72.694937099890637, 18.445799465401862 ], [ -72.334881557897006, 18.668421535715254 ], [ -72.791649542924887, 19.101625067618031 ], [ -72.784104783810278, 19.483591416903408 ], [ -73.415022345661754, 19.639550889560283 ], [ -73.189790615517623, 19.915683905511912 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0.000000, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0.000000, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0.000000, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "brk_group": null, "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Hungary", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 6.000000, "mapcolor9": 1.000000, "mapcolor13": 5.000000, "pop_est": 9905596.000000, "gdp_md_est": 196600.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99.000000, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202298211337364, 46.852385972676963 ], [ 16.534267612380376, 47.496170966169117 ], [ 16.340584344150415, 47.71290192320123 ], [ 16.903754103267261, 47.714865627628328 ], [ 16.979666782304037, 48.123497015976305 ], [ 17.48847293464982, 47.867466132186216 ], [ 17.857132602620027, 47.758428860050373 ], [ 18.696512892336926, 47.880953681014404 ], [ 18.777024773847671, 48.081768296900634 ], [ 19.174364861739889, 48.111378892603867 ], [ 19.661363559658497, 48.266614895208662 ], [ 19.769470656013112, 48.202691148463614 ], [ 20.239054396249347, 48.327567247096923 ], [ 20.473562045989866, 48.562850043321816 ], [ 20.801293979584926, 48.623854071642384 ], [ 21.872236362401736, 48.319970811550021 ], [ 22.085608351334855, 48.422264309271789 ], [ 22.640819939878753, 48.150239569687358 ], [ 22.710531447040495, 47.882193915389408 ], [ 22.099767693782837, 47.672439276716702 ], [ 21.626514926853872, 46.994237779318162 ], [ 21.021952345471249, 46.316087958351901 ], [ 20.220192498462836, 46.127468980486555 ], [ 19.596044549241583, 46.17172984474454 ], [ 18.829838087649961, 45.908877671891929 ], [ 18.456062452882861, 45.759481106136136 ], [ 17.630066359129557, 45.951769110694187 ], [ 16.882515089595302, 46.380631822284442 ], [ 16.564808383864857, 46.50375092221983 ], [ 16.370504998447416, 46.841327216166505 ], [ 16.202298211337364, 46.852385972676963 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0.000000, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0.000000, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0.000000, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "brk_group": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 6.000000, "mapcolor9": 6.000000, "mapcolor13": 11.000000, "pop_est": 240271522.000000, "gdp_md_est": 914600.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99.000000, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.715608758630452, -10.239581394087864 ], [ 120.295014276206899, -10.258649997603527 ], [ 118.967808465654713, -9.557969252158031 ], [ 119.900309686361624, -9.361340427287516 ], [ 120.425755649905426, -9.665921319215798 ], [ 120.775501743656747, -9.969675388227458 ], [ 120.715608758630452, -10.239581394087864 ] ] ], [ [ [ 124.435950148619412, -10.140000909061442 ], [ 123.579981724136729, -10.359987481327963 ], [ 123.459989048355027, -10.239994805546175 ], [ 123.550009393407464, -9.90001555749798 ], [ 123.980008986508125, -9.290026950724695 ], [ 124.968682489116219, -8.892790215697048 ], [ 125.07001997284064, -9.089987481322837 ], [ 125.088520135601101, -9.393173109579322 ], [ 124.435950148619412, -10.140000909061442 ] ] ], [ [ [ 117.900018345207769, -8.095681247594925 ], [ 118.260616489740499, -8.362383314653329 ], [ 118.878459914222134, -8.28068287519983 ], [ 119.1265067892231, -8.705824883665073 ], [ 117.970401645989313, -8.906639499551261 ], [ 117.277730747549043, -9.040894870645559 ], [ 116.740140822416635, -9.032936700072639 ], [ 117.083737420725328, -8.457157891476541 ], [ 117.632024367342154, -8.449303073768192 ], [ 117.900018345207769, -8.095681247594925 ] ] ], [ [ [ 122.903537225436111, -8.094234307490737 ], [ 122.756982863456329, -8.649807631060639 ], [ 121.254490594570115, -8.933666273639943 ], [ 119.924390903809609, -8.810417982623875 ], [ 119.92092858284613, -8.444858900591072 ], [ 120.715091994307585, -8.236964613480865 ], [ 121.341668735846582, -8.536739597206022 ], [ 122.007364536630433, -8.460620212440162 ], [ 122.903537225436111, -8.094234307490737 ] ] ], [ [ [ 108.623478631628956, -6.777673841990676 ], [ 110.539227329553313, -6.877357679881683 ], [ 110.759575636845938, -6.465186455921753 ], [ 112.614811232556377, -6.946035658397591 ], [ 112.978768345188115, -7.59421314863458 ], [ 114.478935174621171, -7.776527601760279 ], [ 115.705526971501087, -8.370806573116866 ], [ 114.564511346496516, -8.751816908404834 ], [ 113.464733514460903, -8.348947442257426 ], [ 112.559672479301042, -8.376180922075164 ], [ 111.522061395312477, -8.302128594600958 ], [ 110.586149530074323, -8.122604668819022 ], [ 109.427667270955197, -7.740664157749762 ], [ 108.693655226681329, -7.641600437046222 ], [ 108.27776329959633, -7.766657403192582 ], [ 106.454102004016164, -7.354899590690948 ], [ 106.280624220812314, -6.924899997590202 ], [ 105.365486281355544, -6.85141611087117 ], [ 106.051645949327082, -5.8959188777945 ], [ 107.265008579540194, -5.954985039904059 ], [ 108.072091099074697, -6.345762220895239 ], [ 108.486846144649263, -6.421984958525769 ], [ 108.623478631628956, -6.777673841990676 ] ] ], [ [ [ 134.724624465066682, -6.214400730009288 ], [ 134.210133905168931, -6.895237725454706 ], [ 134.112775506731026, -6.142467136259015 ], [ 134.290335728085807, -5.783057549669039 ], [ 134.49962527886791, -5.445042006047899 ], [ 134.727001580952134, -5.73758228925216 ], [ 134.724624465066682, -6.214400730009288 ] ] ], [ [ [ 127.249215122588936, -3.45906503663889 ], [ 126.874922723498884, -3.79098276124958 ], [ 126.18380211802733, -3.607376397316557 ], [ 125.989033644719285, -3.177273451351326 ], [ 127.000651483264988, -3.12931772218441 ], [ 127.249215122588936, -3.45906503663889 ] ] ], [ [ [ 130.471344028851803, -3.09376433676762 ], [ 130.834836053592795, -3.858472181822762 ], [ 129.990546502808144, -3.446300957862817 ], [ 129.155248651242431, -3.362636813982249 ], [ 128.590683628453661, -3.428679294451257 ], [ 127.898891229362363, -3.393435967628193 ], [ 128.135879347852807, -2.843650404474914 ], [ 129.370997756060916, -2.802154229344552 ], [ 130.471344028851803, -3.09376433676762 ] ] ], [ [ [ 134.1433679546478, -1.151867364103595 ], [ 134.42262739475305, -2.769184665542383 ], [ 135.457602980694702, -3.367752780779114 ], [ 136.293314243718811, -2.30704233155609 ], [ 137.440737746327528, -1.703513278819372 ], [ 138.329727411044786, -1.702686455902651 ], [ 139.184920689042968, -2.051295668143638 ], [ 139.926684198160416, -2.409051608900285 ], [ 141.000210402591875, -2.600151055515624 ], [ 141.017056919519035, -5.859021905138022 ], [ 141.033851760013903, -9.117892754760419 ], [ 140.143415155192571, -8.297167657100957 ], [ 139.127766554928115, -8.096042982620943 ], [ 138.881476678624978, -8.380935153846096 ], [ 137.614473911692841, -8.411682631059762 ], [ 138.039099155835203, -7.597882175327356 ], [ 138.668621454014811, -7.320224704623072 ], [ 138.407913853102372, -6.232849216337485 ], [ 137.927839797110863, -5.393365573756 ], [ 135.989250116113482, -4.546543877789048 ], [ 135.164597609599724, -4.462931410340772 ], [ 133.662880487197896, -3.538853448097527 ], [ 133.367704705946807, -4.024818617370315 ], [ 132.983955519747354, -4.112978610860281 ], [ 132.756940952689007, -3.74628264731713 ], [ 132.753788690319226, -3.311787204607072 ], [ 131.989804315316206, -2.820551039240456 ], [ 133.066844517143494, -2.460417982598443 ], [ 133.780030959203515, -2.47984832114021 ], [ 133.696211786026169, -2.214541517753688 ], [ 132.232373488494233, -2.212526136894326 ], [ 131.836221958544712, -1.617161960459597 ], [ 130.942839797082826, -1.432522067880797 ], [ 130.519558140180067, -0.937720228686075 ], [ 131.867537876513637, -0.695461114101818 ], [ 132.380116408416797, -0.369537855636977 ], [ 133.985548130428441, -0.780210463060442 ], [ 134.1433679546478, -1.151867364103595 ] ] ], [ [ [ 125.240500522971587, 1.419836127117605 ], [ 124.437035353697382, 0.427881171058971 ], [ 123.685504998876723, 0.235593166500877 ], [ 122.723083123872897, 0.431136786293337 ], [ 121.056724888189109, 0.381217352699451 ], [ 120.183083123862758, 0.23724681233422 ], [ 120.040869582195484, -0.519657891444851 ], [ 120.935905389490728, -1.408905938323372 ], [ 121.475820754076182, -0.955962009285116 ], [ 123.340564813328484, -0.615672702643081 ], [ 123.258399285984495, -1.076213067228338 ], [ 122.822715285331611, -0.930950616055881 ], [ 122.388529901215378, -1.516858005381124 ], [ 121.508273553555483, -1.904482924002423 ], [ 122.454572381684301, -3.186058444840882 ], [ 122.271896193532569, -3.529500013852697 ], [ 123.170962762546566, -4.683693129091708 ], [ 123.162332798353788, -5.340603936385961 ], [ 122.628515252778726, -5.634591159694494 ], [ 122.236394484548072, -5.282933037948283 ], [ 122.719569126477069, -4.46417164471579 ], [ 121.738233677254385, -4.8513314754465 ], [ 121.489463332201268, -4.574552504091216 ], [ 121.619171177253889, -4.188477878438675 ], [ 120.898181593917712, -3.602105401222829 ], [ 120.972388950688782, -2.62764291749491 ], [ 120.305452915529912, -2.931603692235726 ], [ 120.390047235191759, -4.097579034037224 ], [ 120.430716587405385, -5.528241062037779 ], [ 119.796543410319515, -5.673400160345651 ], [ 119.366905552244958, -5.379878024927805 ], [ 119.653606398600147, -4.459417412944958 ], [ 119.498835483885983, -3.49441171632651 ], [ 119.078344354327015, -3.487021986508765 ], [ 118.767768996252897, -2.801999200047689 ], [ 119.18097374885869, -2.147103773612798 ], [ 119.323393996255078, -1.353147067880471 ], [ 119.825998976725856, 0.154254462073496 ], [ 120.035701938966355, 0.566477362465804 ], [ 120.885779250167701, 1.309222723796836 ], [ 121.666816847826993, 1.013943589681077 ], [ 122.927566766451861, 0.875192368977466 ], [ 124.07752241424285, 0.917101955566139 ], [ 125.065989211121831, 1.643259182131558 ], [ 125.240500522971587, 1.419836127117605 ] ] ], [ [ [ 128.688248732620735, 1.132385972494106 ], [ 128.63595218314137, 0.258485826006179 ], [ 128.120169712436194, 0.356412665199286 ], [ 127.968034295768888, -0.252077325037533 ], [ 128.37999881399972, -0.780003757331286 ], [ 128.100015903842319, -0.899996433112975 ], [ 127.696474644075039, -0.266598402511505 ], [ 127.399490187693772, 1.011721503092573 ], [ 127.600511509309086, 1.810690822757181 ], [ 127.932377557487513, 2.174596258956555 ], [ 128.004156121940838, 1.628531398928331 ], [ 128.594559360875479, 1.540810655112864 ], [ 128.688248732620735, 1.132385972494106 ] ] ], [ [ [ 117.875627069166029, 1.827640692548911 ], [ 118.996747267738186, 0.902219143066048 ], [ 117.811858351717802, 0.784241848143722 ], [ 117.478338657706075, 0.102474676917026 ], [ 117.521643507966616, -0.803723239753211 ], [ 116.560048455879524, -1.487660821136231 ], [ 116.5337968282752, -2.483517347832901 ], [ 116.148083937648636, -4.012726332214015 ], [ 116.00085778204911, -3.657037448749008 ], [ 114.864803094544556, -4.106984144714417 ], [ 114.468651564595092, -3.495703627133821 ], [ 113.755671828264127, -3.43916961020652 ], [ 113.256994256647573, -3.118775729996855 ], [ 112.068126255340673, -3.478392022316072 ], [ 111.70329064336002, -2.994442233902632 ], [ 111.048240187628238, -3.049425957861189 ], [ 110.223846063276, -2.934032484553484 ], [ 110.070935500124364, -1.592874037282414 ], [ 109.571947869914055, -1.314906507984489 ], [ 109.091873813922547, -0.459506524257051 ], [ 108.952657505328176, 0.415375474444346 ], [ 109.069136183714051, 1.341933905437642 ], [ 109.663260125773746, 2.006466986494985 ], [ 109.830226678508865, 1.338135687664192 ], [ 110.51406090702713, 0.773131415200993 ], [ 111.159137811326588, 0.976478176269509 ], [ 111.797548455860436, 0.904441229654651 ], [ 112.380251906383677, 1.410120957846758 ], [ 112.859809198052204, 1.497790025229946 ], [ 113.80584964401956, 1.217548732911041 ], [ 114.621355422017501, 1.430688177898887 ], [ 115.134037306785245, 2.821481838386219 ], [ 115.519078403792008, 3.169238389494396 ], [ 115.865517205876785, 4.306559149590157 ], [ 117.015214471506368, 4.306094061699469 ], [ 117.882034946770176, 4.137551377779488 ], [ 117.313232456533541, 3.234428208830579 ], [ 118.048329705885379, 2.287690131027361 ], [ 117.875627069166029, 1.827640692548911 ] ] ], [ [ [ 105.81765506390937, -5.852355645372413 ], [ 104.710384149191526, -5.873284600450646 ], [ 103.86821333213075, -5.037314955264975 ], [ 102.584260695406925, -4.220258884298204 ], [ 102.156173130301028, -3.614146009946765 ], [ 101.399113397225079, -2.799777113459172 ], [ 100.902502882900166, -2.05026213949786 ], [ 100.141980828860625, -0.650347588710957 ], [ 99.263739862060248, 0.183141587724663 ], [ 98.970011020913347, 1.042882391764536 ], [ 98.601351352943112, 1.823506577965617 ], [ 97.69959760944991, 2.453183905442117 ], [ 97.176942173249898, 3.30879059489861 ], [ 96.424016554757344, 3.868859768077911 ], [ 95.380876092513489, 4.970782172053674 ], [ 95.293026157617334, 5.479820868344817 ], [ 95.936862827541773, 5.439513251157109 ], [ 97.484882033277103, 5.246320909034011 ], [ 98.369169142655693, 4.268370266126368 ], [ 99.14255862833582, 3.590349636240916 ], [ 99.693997837322428, 3.174328518075157 ], [ 100.641433546961679, 2.099381211755798 ], [ 101.658012323007341, 2.083697414555189 ], [ 102.49827111207324, 1.398700466310217 ], [ 103.07684044801303, 0.561361395668854 ], [ 103.838396030698362, 0.104541734208667 ], [ 103.437645298274987, -0.711945896002845 ], [ 104.010788608824015, -1.059211521004229 ], [ 104.369991489684907, -1.084843031421016 ], [ 104.539490187602183, -1.782371514496717 ], [ 104.887892694114015, -2.340425306816655 ], [ 105.622111444116996, -2.42884368246807 ], [ 106.108593377712708, -3.06177662517895 ], [ 105.85744591677414, -4.305524997579724 ], [ 105.81765506390937, -5.852355645372413 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0.000000, "geounit": "India", "gu_a3": "IND", "su_dif": 0.000000, "subunit": "India", "su_a3": "IND", "brk_diff": 0.000000, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "brk_group": null, "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "India", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 3.000000, "mapcolor9": 2.000000, "mapcolor13": 2.000000, "pop_est": 1166079220.000000, "gdp_md_est": 3297000.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99.000000, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.837450799474567, 35.494009507787766 ], [ 78.912268914713223, 34.321936346975789 ], [ 78.811086460285736, 33.506198025032418 ], [ 79.208891636068586, 32.994394639613716 ], [ 79.17612877799553, 32.483779812137712 ], [ 78.458446486326011, 32.618164374312727 ], [ 78.738894484374015, 31.515906073527063 ], [ 79.721366815107103, 30.882714748654731 ], [ 81.111256138029319, 30.183480943313402 ], [ 80.476721225917402, 29.729865220655341 ], [ 80.088424513676273, 28.79447011974014 ], [ 81.057202589852025, 28.416095282499043 ], [ 81.999987420584972, 27.925479234319994 ], [ 83.304248895199549, 27.364505723575562 ], [ 84.675017938173795, 27.234901231387536 ], [ 85.251778598983378, 26.726198431906344 ], [ 86.024392938179176, 26.630984605408571 ], [ 87.227471958366294, 26.397898057556077 ], [ 88.06023766474982, 26.414615383402491 ], [ 88.174804315140918, 26.810405178325951 ], [ 88.043132765661227, 27.445818589786825 ], [ 88.12044070836987, 27.876541652939594 ], [ 88.730325962278556, 28.086864732367516 ], [ 88.814248488320558, 27.299315904239364 ], [ 88.83564253128938, 27.098966376243762 ], [ 89.744527622438852, 26.719402981059957 ], [ 90.373274774134075, 26.875724188742879 ], [ 91.217512648486434, 26.808648179628022 ], [ 92.033483514375092, 26.838310451763562 ], [ 92.103711785859744, 27.452614040633208 ], [ 91.696656528696678, 27.771741848251665 ], [ 92.503118931043645, 27.896876329046449 ], [ 93.413347609432691, 28.640629380807226 ], [ 94.565990431702943, 29.277438055939985 ], [ 95.40480228066464, 29.031716620392132 ], [ 96.117678664131034, 29.452802028922466 ], [ 96.586590610747493, 28.83097951915434 ], [ 96.248833449287787, 28.411030992134442 ], [ 97.327113885490036, 28.261582749946339 ], [ 97.402561476636137, 27.882536119085444 ], [ 97.051988559968095, 27.699058946233151 ], [ 97.133999058015306, 27.083773505149964 ], [ 96.419365675850969, 27.264589341739224 ], [ 95.124767694074961, 26.573572089132298 ], [ 95.155153436262594, 26.001307277932085 ], [ 94.603249139385383, 25.162495428970402 ], [ 94.55265791217164, 24.675238348890336 ], [ 94.106741977925068, 23.85074087167348 ], [ 93.325187615942795, 24.078556423432204 ], [ 93.286326938859276, 23.043658352139005 ], [ 93.060294224014626, 22.703110663335568 ], [ 93.166127557348375, 22.278459580977103 ], [ 92.672720981825563, 22.041238918541254 ], [ 92.146034783906813, 23.627498684172593 ], [ 91.869927606171316, 23.624346421802784 ], [ 91.706475050832111, 22.985263983649187 ], [ 91.158963250699728, 23.503526923104388 ], [ 91.467729933643682, 24.072639471934792 ], [ 91.915092807994426, 24.130413723237112 ], [ 92.376201613334814, 24.976692816664965 ], [ 91.79959598182208, 25.147431748957317 ], [ 90.872210727912119, 25.132600612889547 ], [ 89.920692580121852, 25.269749864192178 ], [ 89.832480910199621, 25.965082098895479 ], [ 89.35509402868729, 26.014407253518073 ], [ 88.563049350949768, 26.446525580342723 ], [ 88.209789259802506, 25.768065700782714 ], [ 88.931553989623083, 25.238692328384776 ], [ 88.306372511756024, 24.866079413344206 ], [ 88.084422235062419, 24.501657212821925 ], [ 88.699940220090923, 24.23371491138856 ], [ 88.529769728553788, 23.631141872649167 ], [ 88.876311883503092, 22.87914642993783 ], [ 89.031961297566227, 22.055708319582976 ], [ 88.888765903685425, 21.690588487224748 ], [ 88.208497348995223, 21.703171698487807 ], [ 86.975704380240273, 21.495561631755209 ], [ 87.033168572948867, 20.743307806882413 ], [ 86.499351027373791, 20.151638495356607 ], [ 85.060265740909699, 19.4785788029711 ], [ 83.941005893900012, 18.302009792549725 ], [ 83.189217156917849, 17.671221421778981 ], [ 82.192792189465919, 17.016636053937816 ], [ 82.191241896497189, 16.556664130107848 ], [ 81.692719354177484, 16.310219224507904 ], [ 80.791999139330144, 15.951972357644493 ], [ 80.324895867843878, 15.89918488205835 ], [ 80.025069207686442, 15.136414903214147 ], [ 80.233273553390404, 13.835770778859981 ], [ 80.286293572921863, 13.006260687710835 ], [ 79.862546828128501, 12.056215318240888 ], [ 79.857999302086824, 10.35727509199711 ], [ 79.340511509115998, 10.30885427493962 ], [ 78.885345493489183, 9.546135972527722 ], [ 79.189719679688295, 9.216543687370148 ], [ 78.277940708330505, 8.933046779816934 ], [ 77.941165399084355, 8.252959092639742 ], [ 77.539897902337941, 7.965534776232332 ], [ 76.592978957021671, 8.89927623131419 ], [ 76.130061476551077, 10.299630031775521 ], [ 75.746467319648502, 11.308250637248307 ], [ 75.396101108709587, 11.781245022015824 ], [ 74.864815708316826, 12.741935736537897 ], [ 74.616717156883539, 13.992582912649681 ], [ 74.443859490867226, 14.617221787977698 ], [ 73.534199253233396, 15.990652167214961 ], [ 73.119909295549434, 17.928570054592498 ], [ 72.820909458308648, 19.208233547436166 ], [ 72.824475132136797, 20.419503282141534 ], [ 72.630533481745402, 21.356009426351008 ], [ 71.175273471973952, 20.757441311114235 ], [ 70.470458611945105, 20.877330634031384 ], [ 69.164130080038831, 22.0892980005727 ], [ 69.644927606082405, 22.450774644454338 ], [ 69.349596795534353, 22.84317963306269 ], [ 68.176645135373406, 23.691965033456711 ], [ 68.842599318318776, 24.359133612560939 ], [ 71.043240187468228, 24.3565239527302 ], [ 70.844699334602836, 25.215102037043518 ], [ 70.282873162725593, 25.72222870533983 ], [ 70.168926629522019, 26.491871649678842 ], [ 69.514392938113133, 26.940965684511372 ], [ 70.616496209601934, 27.989196275335868 ], [ 71.777665643200322, 27.913180243434525 ], [ 72.823751662084703, 28.961591701772054 ], [ 73.450638462217427, 29.97641347911987 ], [ 74.421380242820277, 30.979814764931177 ], [ 74.405928989565012, 31.692639471965279 ], [ 75.258641798813215, 32.271105455040498 ], [ 74.451559279278712, 32.764899603805503 ], [ 74.104293654277342, 33.441473293586853 ], [ 73.749948358051967, 34.317698879527853 ], [ 74.240202671204969, 34.748887030571254 ], [ 75.757060988268336, 34.504922593721318 ], [ 76.871721632804025, 34.653544012992739 ], [ 77.837450799474567, 35.494009507787766 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0.000000, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0.000000, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0.000000, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "brk_group": null, "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ireland", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 3.000000, "mapcolor9": 2.000000, "mapcolor13": 2.000000, "pop_est": 4203200.000000, "gdp_md_est": 188400.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99.000000, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.197884894220991, 53.867565009163364 ], [ -6.032985398777611, 53.153164170944351 ], [ -6.788856573910849, 52.260117906292336 ], [ -8.561616583683559, 51.669301255899356 ], [ -9.977085740590269, 51.820454820353078 ], [ -9.166282517930782, 52.864628811242682 ], [ -9.688524542672454, 53.881362616585299 ], [ -8.327987433292009, 54.664518947968631 ], [ -7.572167934591064, 55.131622219454869 ], [ -7.366030646178785, 54.595840969452723 ], [ -7.572167934591064, 54.059956366586 ], [ -6.953730231138067, 54.073702297575636 ], [ -6.197884894220991, 53.867565009163364 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0.000000, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0.000000, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0.000000, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "brk_group": null, "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Iran, Islamic Rep.", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 3.000000, "mapcolor9": 4.000000, "mapcolor13": 13.000000, "pop_est": 66429284.000000, "gdp_md_est": 841700.000000, "pop_year": -99.000000, "lastcensus": 2006.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99.000000, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4.000000, "long_len": 4.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.921597934795557, 37.198918361961262 ], [ 54.800303989486565, 37.392420762678185 ], [ 55.511578403551908, 37.964117133123167 ], [ 56.180374790273333, 37.93512665460743 ], [ 56.619366082592819, 38.121394354803485 ], [ 57.330433790928986, 38.02922943781094 ], [ 58.436154412678206, 37.522309475243802 ], [ 59.234761997316809, 37.412987982730343 ], [ 60.377637973883878, 36.527383124328367 ], [ 61.123070509694145, 36.491597194966246 ], [ 61.210817091725744, 35.650072333309225 ], [ 60.803193393807447, 34.404101874319863 ], [ 60.528429803311582, 33.676446031218006 ], [ 60.963700392506006, 33.528832302376259 ], [ 60.536077915290775, 32.981268825811568 ], [ 60.863654819588966, 32.182919623334428 ], [ 60.941944614511129, 31.548074652628753 ], [ 61.699314406180832, 31.379506130492672 ], [ 61.781221551363444, 30.735850328081238 ], [ 60.874248488208792, 29.829238999952608 ], [ 61.36930870956494, 29.303276272085924 ], [ 61.771868117118629, 28.699333807890799 ], [ 62.727830438085988, 28.25964488373539 ], [ 62.755425652929858, 27.378923448184988 ], [ 63.233897739520302, 27.217047024030709 ], [ 63.316631707619592, 26.756532497661667 ], [ 61.87418745305655, 26.239974880472104 ], [ 61.49736290878419, 25.078237006118499 ], [ 59.616134067630846, 25.380156561783778 ], [ 58.525761346272304, 25.609961656185732 ], [ 57.397251417882387, 25.739902045183641 ], [ 56.970765822177555, 26.966106268821363 ], [ 56.492138706290206, 27.143304755150197 ], [ 55.723710158110066, 26.964633490501043 ], [ 54.715089552637266, 26.480657863871514 ], [ 53.493096958231348, 26.812368882753049 ], [ 52.483597853409613, 27.580849107365495 ], [ 51.520762566947418, 27.865689602158298 ], [ 50.852948032439542, 28.814520575469388 ], [ 50.115008579311585, 30.147772528599717 ], [ 49.576850213423995, 29.985715236932407 ], [ 48.941333449098551, 30.317090359004037 ], [ 48.567971225789755, 29.926778265903522 ], [ 48.014568312376099, 30.452456773392598 ], [ 48.004698113808324, 30.985137437457244 ], [ 47.685286085812272, 30.984853217079632 ], [ 47.849203729042102, 31.70917593029867 ], [ 47.334661492711909, 32.469155381799112 ], [ 46.109361606639318, 33.017287299119005 ], [ 45.416690708199042, 33.967797756479584 ], [ 45.648459507028093, 34.748137722303014 ], [ 46.151787957550937, 35.093258775364291 ], [ 46.0763403664048, 35.677383327775487 ], [ 45.420618117053209, 35.977545884742824 ], [ 44.77267, 37.17045 ], [ 44.225755649600529, 37.971584377589352 ], [ 44.421402622257546, 38.281281236314541 ], [ 44.109225294782341, 39.428136298168099 ], [ 44.793989699081948, 39.713002631177048 ], [ 44.952688022650307, 39.33576467544637 ], [ 45.457721795438772, 38.874139105783058 ], [ 46.143623081248819, 38.741201483712217 ], [ 46.505719842317973, 38.770605373686294 ], [ 47.685079380083096, 39.508363959301221 ], [ 48.060095249225242, 39.58223541926246 ], [ 48.355529412637878, 39.288764960276907 ], [ 48.010744256386481, 38.794014797514521 ], [ 48.634375441284817, 38.270377509100967 ], [ 48.883249139202491, 38.320245266262617 ], [ 49.199612257693339, 37.582874253889884 ], [ 50.14777143738462, 37.374566555321337 ], [ 50.842354363819709, 36.872814235983398 ], [ 52.264024692601424, 36.700421657857703 ], [ 53.825789829326418, 36.965030829408235 ], [ 53.921597934795557, 37.198918361961262 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0.000000, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0.000000, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0.000000, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "brk_group": null, "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Iraq", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 3.000000, "mapcolor13": 1.000000, "pop_est": 31129225.000000, "gdp_md_est": 103900.000000, "pop_year": -99.000000, "lastcensus": 1997.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99.000000, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4.000000, "long_len": 4.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.420618117053209, 35.977545884742824 ], [ 46.0763403664048, 35.677383327775487 ], [ 46.151787957550937, 35.093258775364291 ], [ 45.648459507028093, 34.748137722303014 ], [ 45.416690708199042, 33.967797756479584 ], [ 46.109361606639318, 33.017287299119005 ], [ 47.334661492711909, 32.469155381799112 ], [ 47.849203729042102, 31.70917593029867 ], [ 47.685286085812272, 30.984853217079632 ], [ 48.004698113808324, 30.985137437457244 ], [ 48.014568312376099, 30.452456773392598 ], [ 48.567971225789755, 29.926778265903522 ], [ 47.974519077349896, 29.975819200148504 ], [ 47.302622104690961, 30.059069932570722 ], [ 46.568713413281756, 29.09902517345229 ], [ 44.709498732284743, 29.178891099559383 ], [ 41.889980910007836, 31.190008653278369 ], [ 40.399994337736246, 31.889991766887935 ], [ 39.195468377444968, 32.161008816042667 ], [ 38.792340529136084, 33.378686428352225 ], [ 41.006158888519934, 34.419372260062119 ], [ 41.383965285005814, 35.628316555314356 ], [ 41.289707472505455, 36.358814602192268 ], [ 41.837064243340961, 36.605853786763575 ], [ 42.349591098811771, 37.229872544904097 ], [ 42.779125604021829, 37.385263576805755 ], [ 43.942258742047301, 37.25622752537295 ], [ 44.293451775902867, 37.001514390606303 ], [ 44.772699008977696, 37.170444647768434 ], [ 45.420618117053209, 35.977545884742824 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0.000000, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0.000000, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0.000000, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "brk_group": null, "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Iceland", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 4.000000, "mapcolor13": 9.000000, "pop_est": 306694.000000, "gdp_md_est": 12710.000000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99.000000, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 7.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.508695441129234, 66.455892239031428 ], [ -14.739637417041607, 65.808748277440301 ], [ -13.60973222497981, 65.126671047619865 ], [ -14.909833746794902, 64.364081936288684 ], [ -17.794438035543422, 63.678749091233854 ], [ -18.656245896874992, 63.49638296167582 ], [ -19.97275468594276, 63.643634955491528 ], [ -22.762971971110158, 63.960178941495386 ], [ -21.778484259517683, 64.402115790455511 ], [ -23.955043911219111, 64.891129869233495 ], [ -22.184402635170358, 65.084968166760305 ], [ -22.227423265053332, 65.378593655042735 ], [ -24.326184047939336, 65.611189276788465 ], [ -23.650514695723089, 66.262519029395222 ], [ -22.134922451250887, 66.41046865504687 ], [ -20.57628373867955, 65.732112128351432 ], [ -19.05684160000159, 66.276600857194765 ], [ -17.798623826559052, 65.993853257909777 ], [ -16.167818976292125, 66.526792304135867 ], [ -14.508695441129234, 66.455892239031428 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0.000000, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0.000000, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0.000000, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "brk_group": null, "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Israel", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 2.000000, "mapcolor9": 5.000000, "mapcolor13": 9.000000, "pop_est": 7233701.000000, "gdp_md_est": 201400.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99.000000, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.719918247222751, 32.709192409794866 ], [ 35.545665317534542, 32.393992011030576 ], [ 35.183930291491436, 32.532510687788943 ], [ 34.974640740709333, 31.866582343059722 ], [ 35.22589155451243, 31.754341132121766 ], [ 34.970506626125996, 31.61677846936081 ], [ 34.927408481594568, 31.353435370401414 ], [ 35.397560662586045, 31.489086005167582 ], [ 35.420918409981965, 31.100065822874356 ], [ 34.92260257339143, 29.501326198844524 ], [ 34.265433383935687, 31.219360866820153 ], [ 34.556371697738911, 31.548823960896996 ], [ 34.488107130681357, 31.605538845337321 ], [ 34.752587111151172, 32.072926337201167 ], [ 34.955417107896778, 32.827376410446377 ], [ 35.098457472480675, 33.080539252244265 ], [ 35.126052687324545, 33.090900376918782 ], [ 35.460709262846706, 33.089040025356283 ], [ 35.552796665190812, 33.264274807258019 ], [ 35.821100701650238, 33.277426459276299 ], [ 35.836396925608625, 32.868123277308513 ], [ 35.700797967274752, 32.716013698857381 ], [ 35.719918247222751, 32.709192409794866 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0.000000, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0.000000, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0.000000, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "brk_group": null, "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Italy", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 7.000000, "mapcolor9": 8.000000, "mapcolor13": 7.000000, "pop_est": 58126212.000000, "gdp_md_est": 1823000.000000, "pop_year": -99.000000, "lastcensus": 2012.000000, "gdp_year": -99.000000, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99.000000, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.520376010813834, 38.231155096991472 ], [ 15.160242954171736, 37.44404551853782 ], [ 15.309897902089006, 37.1342194687318 ], [ 15.099988234119451, 36.619987290995397 ], [ 14.335228712632016, 36.996630967754754 ], [ 13.82673261887993, 37.1045313583802 ], [ 12.431003859108813, 37.612949937483819 ], [ 12.570943637755136, 38.12638113051969 ], [ 13.741156447004585, 38.034965521795357 ], [ 14.76124922044616, 38.143873602850505 ], [ 15.520376010813834, 38.231155096991472 ] ] ], [ [ [ 9.210011834356266, 41.209991360024219 ], [ 9.809975213264977, 40.500008856766101 ], [ 9.669518670295673, 39.177376410471794 ], [ 9.214817742559489, 39.240473334300134 ], [ 8.806935662479731, 38.906617743478478 ], [ 8.428302443077115, 39.171847032216618 ], [ 8.388253208050941, 40.378310858718805 ], [ 8.15999840661766, 40.950007229163788 ], [ 8.709990675500109, 40.899984442705232 ], [ 9.210011834356266, 41.209991360024219 ] ] ], [ [ [ 12.376485223040845, 46.767559109069879 ], [ 13.806475457421556, 46.509306138691187 ], [ 13.698109978905478, 46.016778062517375 ], [ 13.937630242578336, 45.591015936864665 ], [ 13.141606479554298, 45.736691799495418 ], [ 12.328581170306308, 45.381778062514854 ], [ 12.383874952858605, 44.885374253919082 ], [ 12.261453484759159, 44.600482082694015 ], [ 12.589237094786483, 44.091365871754476 ], [ 13.526905958722494, 43.587727362637906 ], [ 14.029820997787027, 42.76100779883248 ], [ 15.142569614327954, 41.955139675456905 ], [ 15.926191033601896, 41.961315009115737 ], [ 16.169897088290412, 41.740294908203424 ], [ 15.889345737377795, 41.541082261718202 ], [ 16.785001661860576, 41.179605617836586 ], [ 17.519168735431208, 40.877143459632236 ], [ 18.376687452882578, 40.355624904942658 ], [ 18.480247023195403, 40.168866278639825 ], [ 18.293385044028099, 39.810774441073249 ], [ 17.738380161213286, 40.277671006830303 ], [ 16.869595981522338, 40.442234605463852 ], [ 16.448743116937322, 39.79540070246648 ], [ 17.171489698971499, 39.424699815420723 ], [ 17.052840610429342, 38.902871202137305 ], [ 16.635088331781844, 38.843572496082402 ], [ 16.100960727613057, 37.985898749334183 ], [ 15.684086948314501, 37.90884918878703 ], [ 15.687962680736319, 38.214592800441864 ], [ 15.891981235424709, 38.750942491199226 ], [ 16.109332309644316, 38.964547024077689 ], [ 15.718813510814641, 39.544072374014945 ], [ 15.413612501698822, 40.04835683853517 ], [ 14.998495721098237, 40.172948716790927 ], [ 14.70326826341477, 40.604550279292624 ], [ 14.060671827865264, 40.786347968095441 ], [ 13.627985060285397, 41.188287258461656 ], [ 12.88808190273042, 41.253089504555618 ], [ 12.10668257004491, 41.704534817057407 ], [ 11.191906365614187, 42.355425319989678 ], [ 10.511947869517797, 42.931462510747224 ], [ 10.200028924204048, 43.920006822274615 ], [ 9.702488234097814, 44.03627879493132 ], [ 8.888946160526871, 44.36633616797954 ], [ 8.428560825238577, 44.231228135752417 ], [ 7.850766635783202, 43.767147935555244 ], [ 7.435184767291844, 43.693844916349178 ], [ 7.549596388386163, 44.127901109384823 ], [ 7.007562290076663, 44.254766750661389 ], [ 6.749955275101712, 45.028517971367592 ], [ 7.096652459347837, 45.333098863295874 ], [ 6.802355177445662, 45.70857982032868 ], [ 6.843592970414562, 45.991146552100673 ], [ 7.273850945676685, 45.776947740250762 ], [ 7.755992058959833, 45.824490057959281 ], [ 8.316629672894379, 46.163642483090854 ], [ 8.489952426801295, 46.00515086525175 ], [ 8.966305779667834, 46.036931871111165 ], [ 9.182881707403112, 46.440214748716983 ], [ 9.922836541390353, 46.314899400409189 ], [ 10.363378126678668, 46.483571275409844 ], [ 10.442701450246602, 46.893546250997446 ], [ 11.048555942436508, 46.751358547546403 ], [ 11.164827915093326, 46.941579494812743 ], [ 12.153088006243081, 47.115393174826437 ], [ 12.376485223040845, 46.767559109069879 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0.000000, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0.000000, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0.000000, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "brk_group": null, "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Jamaica", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 2.000000, "mapcolor9": 4.000000, "mapcolor13": 10.000000, "pop_est": 2825928.000000, "gdp_md_est": 20910.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99.000000, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.569600796199211, 18.490525417550487 ], [ -76.896618618462128, 18.400866807524082 ], [ -76.365359056285541, 18.160700588447597 ], [ -76.199658576141644, 17.886867173732966 ], [ -76.9025614081757, 17.868237819891746 ], [ -77.206341315403478, 17.701116237859821 ], [ -77.766022915340614, 17.861597398342241 ], [ -78.33771928578561, 18.225967922432233 ], [ -78.217726610003879, 18.454532782459196 ], [ -77.797364671525628, 18.524218451404778 ], [ -77.569600796199211, 18.490525417550487 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0.000000, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0.000000, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0.000000, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "brk_group": null, "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Jordan", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 3.000000, "mapcolor9": 4.000000, "mapcolor13": 4.000000, "pop_est": 6342948.000000, "gdp_md_est": 31610.000000, "pop_year": -99.000000, "lastcensus": 2004.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99.000000, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.545665317534542, 32.393992011030576 ], [ 35.719918247222751, 32.709192409794866 ], [ 36.834062127435544, 32.312937526980775 ], [ 38.792340529136084, 33.378686428352225 ], [ 39.195468377444968, 32.161008816042667 ], [ 39.004885695152552, 32.010216986614978 ], [ 37.002165561681011, 31.508412990844747 ], [ 37.998848911294374, 30.508499864213135 ], [ 37.668119744626381, 30.338665269485901 ], [ 37.503581984209035, 30.003776150018407 ], [ 36.74052778498725, 29.86528331147619 ], [ 36.50121422704359, 29.505253607698705 ], [ 36.068940870922063, 29.197494615184453 ], [ 34.956037225084259, 29.356554673778845 ], [ 34.92260257339143, 29.501326198844524 ], [ 35.420918409981965, 31.100065822874356 ], [ 35.397560662586045, 31.489086005167582 ], [ 35.545251906076203, 31.782504787720839 ], [ 35.545665317534542, 32.393992011030576 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0.000000, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0.000000, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0.000000, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "brk_group": null, "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Japan", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 3.000000, "mapcolor9": 5.000000, "mapcolor13": 4.000000, "pop_est": 127078679.000000, "gdp_md_est": 4329000.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99.000000, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.638428176003885, 34.149233710256425 ], [ 134.766379022358507, 33.80633474378368 ], [ 134.203415968970859, 33.201177883429636 ], [ 133.792950067276507, 33.521985175097598 ], [ 133.280268182508877, 33.289570420864948 ], [ 133.014858026257883, 32.70456736910478 ], [ 132.363114862192703, 32.98938202568138 ], [ 132.371176385630207, 33.463642483040076 ], [ 132.924372593314814, 34.060298570282043 ], [ 133.492968377822223, 33.944620876596701 ], [ 133.904106073136376, 34.364931138642618 ], [ 134.638428176003885, 34.149233710256425 ] ] ], [ [ [ 140.976387567305295, 37.142074286440163 ], [ 140.599769728762141, 36.343983466124541 ], [ 140.77407433488267, 35.842877102190243 ], [ 140.253279250245129, 35.13811391859366 ], [ 138.975527785396224, 34.667600002576108 ], [ 137.217598911691226, 34.606285915661857 ], [ 135.792983026268899, 33.464805202766627 ], [ 135.120982700745429, 33.84907115328906 ], [ 135.079434849182718, 34.59654490817482 ], [ 133.340316196831992, 34.375938218720762 ], [ 132.156770868051325, 33.904933376596517 ], [ 130.98614464734348, 33.885761420216284 ], [ 132.00003624891005, 33.149992377244615 ], [ 131.332790155157369, 31.450354519164847 ], [ 130.686317987185959, 31.029579169228242 ], [ 130.202419875204981, 31.418237616495418 ], [ 130.447676222862157, 32.319474595665724 ], [ 129.814691603718899, 32.610309556604392 ], [ 129.408463169472583, 33.29605581311759 ], [ 130.353935174684665, 33.6041507024417 ], [ 130.878450962447147, 34.232742824840045 ], [ 131.88422936414392, 34.749713853487918 ], [ 132.617672967662514, 35.43339305270942 ], [ 134.608300815977799, 35.731617743465819 ], [ 135.67753787652893, 35.527134100886826 ], [ 136.723830601142453, 37.304984239240383 ], [ 137.390611607004502, 36.827390651998826 ], [ 138.857602166906275, 37.827484646143461 ], [ 139.426404657142911, 38.215962225897641 ], [ 140.054790073812086, 39.438807481436385 ], [ 139.883379347899876, 40.563312486323696 ], [ 140.30578250545372, 41.195005194659558 ], [ 141.368973423426695, 41.378559882160289 ], [ 141.914263136970504, 39.991616115878685 ], [ 141.884600864834994, 39.180864569651504 ], [ 140.959489373945786, 38.17400096287659 ], [ 140.976387567305295, 37.142074286440163 ] ] ], [ [ [ 143.910161981379503, 44.174099839853739 ], [ 144.613426548439662, 43.960882880217525 ], [ 145.320825230083102, 44.384732977875444 ], [ 145.543137241802782, 43.262088324550604 ], [ 144.059661899999895, 42.988358262700558 ], [ 143.183849725517319, 41.995214748699198 ], [ 141.611490920172486, 42.678790595056086 ], [ 141.067286411706647, 41.584593817707997 ], [ 139.955106235921079, 41.569555975911044 ], [ 139.817543573159952, 42.563758856774399 ], [ 140.312087030193226, 43.333272610032651 ], [ 141.380548944260028, 43.388824774746496 ], [ 141.67195234595394, 44.772125352551484 ], [ 141.96764489152801, 45.551483466161358 ], [ 143.142870314709825, 44.510358384776964 ], [ 143.910161981379503, 44.174099839853739 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0.000000, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0.000000, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0.000000, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "brk_group": null, "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Kazakhstan", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 1.000000, "mapcolor9": 6.000000, "mapcolor13": 1.000000, "pop_est": 15399437.000000, "gdp_md_est": 175800.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99.000000, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.962314894499286, 42.266154283205537 ], [ 70.388964878220804, 42.081307684897524 ], [ 69.070027296835235, 41.384244289712342 ], [ 68.632482944620051, 40.668680731766869 ], [ 68.259895867795649, 40.662324530594901 ], [ 67.98585574735182, 41.135990708982206 ], [ 66.714047072216601, 41.168443508461564 ], [ 66.510648634715722, 41.987644151368556 ], [ 66.023391554635623, 41.994646307944038 ], [ 66.098012322865202, 42.997660020513081 ], [ 64.900824415959335, 43.728080552742654 ], [ 63.185786981056594, 43.650074978198006 ], [ 62.013300408786279, 43.504476630215663 ], [ 61.058319940032504, 44.405816962250583 ], [ 60.239971958258479, 44.784036770194746 ], [ 58.689989048095811, 45.500013739598728 ], [ 58.50312706892845, 45.586804307632974 ], [ 55.928917270741181, 44.995858466159177 ], [ 55.968191359283026, 41.308641669269377 ], [ 55.455251092353819, 41.25985911718584 ], [ 54.755345493392667, 42.043971462566617 ], [ 54.079417759014973, 42.324109402020838 ], [ 52.944293247291739, 42.116034247397579 ], [ 52.502459751196284, 41.78331553808647 ], [ 52.446339145727222, 42.027150783855575 ], [ 52.692112257707265, 42.443895372073371 ], [ 52.501426222550322, 42.792297878585202 ], [ 51.342427199108215, 43.132974758469345 ], [ 50.891291945200237, 44.031033637053781 ], [ 50.339129266161365, 44.284015611338475 ], [ 50.305642938036272, 44.609835516938915 ], [ 51.278503452363225, 44.514854234386462 ], [ 51.316899041556042, 45.245998236667901 ], [ 52.167389764215727, 45.408391425145112 ], [ 53.040876499245201, 45.259046535821767 ], [ 53.220865512917726, 46.234645901059935 ], [ 53.042736850807785, 46.853006089864493 ], [ 52.042022739475613, 46.804636949239239 ], [ 51.191945428274266, 47.048704738953916 ], [ 50.034083286342479, 46.608989976582222 ], [ 49.101160000000107, 46.399330000000134 ], [ 48.593241001180502, 46.561034247415478 ], [ 48.694733514201744, 47.075628160177928 ], [ 48.057253045449272, 47.743752753279523 ], [ 47.315231154170249, 47.715847479841955 ], [ 46.46644575377627, 48.39415233010493 ], [ 47.043671502476514, 49.152038886097614 ], [ 46.751596307162743, 49.356005764353768 ], [ 47.549480421749308, 50.454698391311126 ], [ 48.57784142435753, 49.874759629915673 ], [ 48.702381626181023, 50.605128485712839 ], [ 50.766648390512159, 51.692762356159903 ], [ 52.328723585830971, 51.718652248738124 ], [ 54.532878452376224, 51.026239732459317 ], [ 55.716940545479815, 50.621716620478537 ], [ 56.777961053296565, 51.043551337277052 ], [ 58.36329064314674, 51.063653469438577 ], [ 59.642282342370606, 50.545442206415714 ], [ 59.932807244715491, 50.842194118851864 ], [ 61.337424350840934, 50.799070136104262 ], [ 61.588003371024172, 51.272658799843214 ], [ 59.967533807215545, 51.960420437215703 ], [ 60.92726850774028, 52.447548326215042 ], [ 60.739993117114579, 52.719986477257748 ], [ 61.699986199800605, 52.979996446334269 ], [ 60.978066440683165, 53.664993394579142 ], [ 61.436591424409073, 54.006264553434789 ], [ 65.178533563095925, 54.354227810272107 ], [ 65.666875848253994, 54.601266994843456 ], [ 68.169100376258825, 54.970391750704323 ], [ 69.068166945272878, 55.385250149143531 ], [ 70.865266554655136, 55.169733588270105 ], [ 71.180131056609412, 54.133285224008262 ], [ 72.224150018202181, 54.376655381886735 ], [ 73.508516066384402, 54.035616766976602 ], [ 73.425678745420441, 53.489810289109755 ], [ 74.384845005190073, 53.54686107036008 ], [ 76.891100294913429, 54.490524400441927 ], [ 76.525179477854749, 54.177003485727141 ], [ 77.800915561844249, 53.404414984747575 ], [ 80.035559523441691, 50.864750881547252 ], [ 80.568446893235489, 51.38833649352847 ], [ 81.945985548839928, 50.812195949906368 ], [ 83.38300377801238, 51.069182847693924 ], [ 83.935114780618846, 50.889245510453577 ], [ 84.416377394553081, 50.311399644565824 ], [ 85.115559523462025, 50.117302964877638 ], [ 85.541269972682471, 49.692858588248157 ], [ 86.829356723989633, 49.826674709668168 ], [ 87.359970330762678, 49.214980780629162 ], [ 86.598776483103393, 48.549181626980612 ], [ 85.768232863308299, 48.455750637396989 ], [ 85.720483839870724, 47.452969468773119 ], [ 85.164290399113384, 47.000955715516113 ], [ 83.180483839860472, 47.330031236350862 ], [ 82.458925815769135, 45.539649563166506 ], [ 81.947070753918126, 45.317027492853242 ], [ 79.966106398441411, 44.917516994804657 ], [ 80.86620649610137, 43.180362046881044 ], [ 80.180150180994303, 42.920067857426943 ], [ 80.25999026888536, 42.349999294599115 ], [ 79.643645460940149, 42.496682847659656 ], [ 79.142177361979805, 42.856092434249604 ], [ 77.65839196158322, 42.960685533208334 ], [ 76.000353631498569, 42.988022365890629 ], [ 75.636964959622105, 42.877899888676779 ], [ 74.212865838522589, 43.298339341803512 ], [ 73.645303582660915, 43.09127187760987 ], [ 73.489757521462366, 42.50089447689129 ], [ 71.844638299450651, 42.845395412765185 ], [ 71.186280552052267, 42.704292914392227 ], [ 70.962314894499286, 42.266154283205537 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0.000000, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0.000000, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0.000000, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "brk_group": null, "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Kenya", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 2.000000, "mapcolor9": 7.000000, "mapcolor13": 3.000000, "pop_est": 39002772.000000, "gdp_md_est": 61510.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99.000000, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.993, -0.85829 ], [ 41.58513, -1.68325 ], [ 40.88477, -2.08255 ], [ 40.63785, -2.49979 ], [ 40.26304, -2.57309 ], [ 40.12119, -3.27768 ], [ 39.80006, -3.68116 ], [ 39.60489, -4.34653 ], [ 39.20222, -4.67677 ], [ 37.7669, -3.67712 ], [ 37.69869, -3.09699 ], [ 34.07262, -1.05982 ], [ 33.903711197104528, -0.95 ], [ 33.893568969666944, 0.109813537861896 ], [ 34.18, 0.515 ], [ 34.6721, 1.17694 ], [ 35.03599, 1.90584 ], [ 34.59607, 3.05374 ], [ 34.47913, 3.5556 ], [ 34.005, 4.249884947362048 ], [ 34.620196267853878, 4.847122742081988 ], [ 35.298007118232981, 5.506 ], [ 35.817447662353516, 5.338232082790797 ], [ 35.817447662353516, 4.77696566346189 ], [ 36.159078632855646, 4.447864127672769 ], [ 36.855093238008124, 4.447864127672769 ], [ 38.120915, 3.598605 ], [ 38.43697, 3.58851 ], [ 38.67114, 3.61607 ], [ 38.89251, 3.50074 ], [ 39.559384258765853, 3.42206 ], [ 39.85494, 3.83879 ], [ 40.76848, 4.25702 ], [ 41.1718, 3.91909 ], [ 41.855083092643973, 3.918911920483727 ], [ 40.98105, 2.78452 ], [ 40.993, -0.85829 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0.000000, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0.000000, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0.000000, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "brk_group": null, "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Kyrgyz Republic", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 7.000000, "mapcolor9": 7.000000, "mapcolor13": 6.000000, "pop_est": 5431747.000000, "gdp_md_est": 11610.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99.000000, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.962314894499144, 42.266154283205495 ], [ 71.186280552052125, 42.704292914392141 ], [ 71.844638299450594, 42.8453954127651 ], [ 73.489757521462366, 42.500894476891318 ], [ 73.645303582660915, 43.091271877609827 ], [ 74.212865838522561, 43.29833934180337 ], [ 75.63696495962202, 42.87789988867668 ], [ 76.000353631498456, 42.988022365890671 ], [ 77.65839196158322, 42.960685533208263 ], [ 79.142177361979776, 42.856092434249518 ], [ 79.643645460940121, 42.496682847659528 ], [ 80.259990268885304, 42.349999294599058 ], [ 80.119430373051387, 42.123940741538249 ], [ 78.54366092317531, 41.582242540038692 ], [ 78.187196893225973, 41.185315863604806 ], [ 76.904484490877081, 41.066485907549648 ], [ 76.526368035797447, 40.427946071935118 ], [ 75.467827996730705, 40.56207225194867 ], [ 74.776862420556057, 40.366425279291633 ], [ 73.822243686828301, 39.893973497063186 ], [ 73.960013055318427, 39.660008449861735 ], [ 73.675379266254794, 39.431236884105601 ], [ 71.784693637992007, 39.27946320246437 ], [ 70.549161818325615, 39.604197902986499 ], [ 69.46488691597753, 39.526683254548701 ], [ 69.559609816368521, 40.103211371412982 ], [ 70.648018833299972, 39.935753892571171 ], [ 71.01419803252017, 40.244365546218233 ], [ 71.77487511585656, 40.145844428053778 ], [ 73.05541710804917, 40.866033026689465 ], [ 71.870114780570475, 41.392900092121266 ], [ 71.157858514291604, 41.143587144529121 ], [ 70.42002241402821, 41.519998277343142 ], [ 71.259247674448233, 42.167710679689463 ], [ 70.962314894499144, 42.266154283205495 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0.000000, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0.000000, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0.000000, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "brk_group": null, "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Cambodia", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 3.000000, "mapcolor9": 6.000000, "mapcolor13": 5.000000, "pop_est": 14494293.000000, "gdp_md_est": 27940.000000, "pop_year": -99.000000, "lastcensus": 2008.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99.000000, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.497279901139706, 10.632555446815928 ], [ 103.090689731867258, 11.153660590047165 ], [ 102.584932489026698, 12.186594956913282 ], [ 102.348099399833018, 13.394247341358223 ], [ 102.988422072361629, 14.225721136934467 ], [ 104.281418084736615, 14.416743068901367 ], [ 105.218776890078885, 14.273211778210694 ], [ 106.043946160915525, 13.881091009979956 ], [ 106.496373325630884, 14.570583807834282 ], [ 107.382727492301086, 14.202440904186972 ], [ 107.61454796756243, 13.535530707244206 ], [ 107.49140302941089, 12.337205918827948 ], [ 105.81052371625313, 11.567614650921229 ], [ 106.249670037869464, 10.961811835163587 ], [ 105.199914992292349, 10.889309800658097 ], [ 104.334334751403475, 10.48654368737523 ], [ 103.497279901139706, 10.632555446815928 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0.000000, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0.000000, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0.000000, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "brk_group": null, "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Korea, Rep.", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 1.000000, "mapcolor9": 1.000000, "mapcolor13": 5.000000, "pop_est": 48508972.000000, "gdp_md_est": 1335000.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99.000000, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5.000000, "long_len": 17.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.349716424676615, 38.61224294692785 ], [ 129.212919549680066, 37.432392483055949 ], [ 129.460449660358165, 36.784189154602828 ], [ 129.4683044780665, 35.632140611303953 ], [ 129.091376580929591, 35.082484239231434 ], [ 128.185850457879098, 34.890377102186392 ], [ 127.386519403188402, 34.475673733044118 ], [ 126.485747511908755, 34.39004588473648 ], [ 126.373919712429142, 34.934560451795946 ], [ 126.559231398627787, 35.684540513647903 ], [ 126.117397902532289, 36.725484727519259 ], [ 126.860143263863392, 36.893924058574626 ], [ 126.174758742376241, 37.74968577732804 ], [ 126.237338901881756, 37.840377916000278 ], [ 126.683719924018931, 37.804772854151182 ], [ 127.07330854706737, 38.2561148137884 ], [ 127.780035435091008, 38.304535630845891 ], [ 128.205745884311455, 38.370397243801889 ], [ 128.349716424676615, 38.61224294692785 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0.000000, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0.000000, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1.000000, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "brk_group": null, "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "formal_fr": null, "note_adm0": null, "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 3.000000, "mapcolor13": 11.000000, "pop_est": 1804838.000000, "gdp_md_est": 5352.000000, "pop_year": -99.000000, "lastcensus": 1981.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99.000000, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.76216, 42.05186 ], [ 20.717310000000111, 41.84711 ], [ 20.59023, 41.85541 ], [ 20.52295, 42.21787 ], [ 20.28374, 42.320250000000101 ], [ 20.0707, 42.58863 ], [ 20.25758, 42.812750000000108 ], [ 20.49679, 42.88469 ], [ 20.63508, 43.21671 ], [ 20.81448, 43.27205 ], [ 20.95651, 43.13094 ], [ 21.143395, 43.06868500000013 ], [ 21.27421, 42.90959 ], [ 21.43866, 42.86255 ], [ 21.63302, 42.67717 ], [ 21.77505, 42.6827 ], [ 21.66292, 42.43922 ], [ 21.54332, 42.320250000000101 ], [ 21.576635989402121, 42.245224397061861 ], [ 21.352700000000141, 42.2068 ], [ 20.76216, 42.05186 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0.000000, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0.000000, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0.000000, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "brk_group": null, "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Kuwait", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 2.000000, "mapcolor13": 2.000000, "pop_est": 2691158.000000, "gdp_md_est": 149100.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99.000000, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.974519077349896, 29.975819200148504 ], [ 48.18318851094449, 29.534476630159762 ], [ 48.093943312376418, 29.306299343375002 ], [ 48.416094191283946, 28.55200429942667 ], [ 47.708850538937384, 28.526062730416143 ], [ 47.459821811722833, 29.002519436147224 ], [ 46.568713413281756, 29.09902517345229 ], [ 47.302622104690961, 30.059069932570722 ], [ 47.974519077349896, 29.975819200148504 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0.000000, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0.000000, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0.000000, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "brk_group": null, "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Lao PDR", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 1.000000, "mapcolor9": 1.000000, "mapcolor13": 9.000000, "pop_est": 6834942.000000, "gdp_md_est": 13980.000000, "pop_year": -99.000000, "lastcensus": 2005.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99.000000, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.218776890078885, 14.273211778210694 ], [ 105.544338413517693, 14.723933620660418 ], [ 105.589038527450157, 15.570316066952858 ], [ 104.779320509868796, 16.441864935771449 ], [ 104.716947056092494, 17.428858954330082 ], [ 103.956476678485302, 18.240954087796879 ], [ 103.20019209189374, 18.309632066312773 ], [ 102.998705682387708, 17.961694647691601 ], [ 102.413004998791621, 17.932781683824288 ], [ 102.113591750092482, 18.109101670804165 ], [ 101.059547560635167, 17.51249725999449 ], [ 101.035931431077771, 18.408928330961615 ], [ 101.282014601651696, 19.462584947176765 ], [ 100.606293573003157, 19.508344427971224 ], [ 100.548881056726884, 20.109237982661128 ], [ 100.115987583417848, 20.417849636308187 ], [ 100.329101190189533, 20.786121731036232 ], [ 101.180005324307544, 21.436572984294028 ], [ 101.270025669359967, 21.201651923095184 ], [ 101.803119744882935, 21.174366766845068 ], [ 101.652017856861519, 22.318198757409547 ], [ 102.170435825613581, 22.464753119389304 ], [ 102.754896274834664, 21.675137233969465 ], [ 103.203861118586445, 20.766562201413748 ], [ 104.435000441508052, 20.758733221921531 ], [ 104.822573683697101, 19.886641750563882 ], [ 104.183387892678937, 19.624668077060221 ], [ 103.896532017026715, 19.265180975821806 ], [ 105.094598423281525, 18.66697459561108 ], [ 105.925762160264028, 17.485315456608959 ], [ 106.556007928495688, 16.604283962464805 ], [ 107.312705926545604, 15.908538316303179 ], [ 107.564525181103903, 15.202173163305559 ], [ 107.382727492301086, 14.202440904186972 ], [ 106.496373325630884, 14.570583807834282 ], [ 106.043946160915525, 13.881091009979956 ], [ 105.218776890078885, 14.273211778210694 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0.000000, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0.000000, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0.000000, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "brk_group": null, "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Lebanon", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 4.000000, "mapcolor9": 4.000000, "mapcolor13": 12.000000, "pop_est": 4017095.000000, "gdp_md_est": 44060.000000, "pop_year": -99.000000, "lastcensus": 1970.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99.000000, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": 4.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.821100701650238, 33.277426459276299 ], [ 35.552796665190812, 33.264274807258019 ], [ 35.460709262846706, 33.089040025356283 ], [ 35.126052687324545, 33.090900376918782 ], [ 35.482206658680127, 33.905450140919442 ], [ 35.979592319489399, 34.610058295219133 ], [ 35.998402540843642, 34.644914048800004 ], [ 36.448194207512103, 34.593935248344067 ], [ 36.611750115715893, 34.201788641897181 ], [ 36.066460402172055, 33.82491242119255 ], [ 35.821100701650238, 33.277426459276299 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0.000000, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0.000000, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0.000000, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "brk_group": null, "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Liberia", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 3.000000, "mapcolor9": 4.000000, "mapcolor13": 9.000000, "pop_est": 3441790.000000, "gdp_md_est": 1526.000000, "pop_year": -99.000000, "lastcensus": 2008.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99.000000, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 7.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.71215938966975, 4.364565944837722 ], [ -7.974107224957251, 4.355755113131963 ], [ -9.004793667018674, 4.8324185245922 ], [ -9.913420376006684, 5.593560695819207 ], [ -10.765383876986645, 6.140710760925558 ], [ -11.438779466182055, 6.785916856305747 ], [ -11.199801805048279, 7.105845648624737 ], [ -11.146704270868383, 7.396706447779536 ], [ -10.695594855176481, 7.939464016141088 ], [ -10.23009355309128, 8.406205552601293 ], [ -10.016566534861255, 8.428503933135232 ], [ -9.755342169625834, 8.541055202666925 ], [ -9.337279832384581, 7.928534450711354 ], [ -9.40334815106975, 7.526905218938907 ], [ -9.208786383490846, 7.313920803247953 ], [ -8.926064622422004, 7.309037380396376 ], [ -8.722123582382125, 7.71167430259851 ], [ -8.439298468448698, 7.686042792181738 ], [ -8.48544552248535, 7.39520783124307 ], [ -8.385451626000574, 6.911800645368743 ], [ -8.60288021486862, 6.46756419517166 ], [ -8.311347622094019, 6.193033148621083 ], [ -7.993692592795881, 6.126189683451543 ], [ -7.570152553731688, 5.707352199725904 ], [ -7.539715135111763, 5.313345241716519 ], [ -7.635368211284031, 5.188159084489456 ], [ -7.71215938966975, 4.364565944837722 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0.000000, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0.000000, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0.000000, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "brk_group": null, "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Libya", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 2.000000, "mapcolor9": 2.000000, "mapcolor13": 11.000000, "pop_est": 6310434.000000, "gdp_md_est": 88830.000000, "pop_year": -99.000000, "lastcensus": 2006.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99.000000, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.8513, 22.862950000000126 ], [ 14.143870883855243, 22.491288967371133 ], [ 13.581424594790462, 23.040506089769281 ], [ 11.999505649471701, 23.471668402596435 ], [ 11.560669386449035, 24.097909247325617 ], [ 10.771363559622955, 24.562532050061748 ], [ 10.303846876678449, 24.379313259370974 ], [ 9.948261346078027, 24.936953640232616 ], [ 9.910692579801776, 25.365454616796796 ], [ 9.31941084151822, 26.094324856057483 ], [ 9.716285841519664, 26.512206325785655 ], [ 9.629056023811074, 27.140953477481048 ], [ 9.756128370816782, 27.688258571884205 ], [ 9.683884718472882, 28.144173895779318 ], [ 9.859997999723475, 28.959989732371071 ], [ 9.805634392952356, 29.424638373323376 ], [ 9.482139926805417, 30.307556057246188 ], [ 9.970017124072967, 30.539324856075382 ], [ 10.056575148161699, 30.961831366493527 ], [ 9.950225050505196, 31.376069647745283 ], [ 10.636901482799487, 31.761420803345686 ], [ 10.944789666394513, 32.081814683555365 ], [ 11.432253452203781, 32.368903103152832 ], [ 11.488787469131012, 33.136995754523241 ], [ 12.66331, 32.79278 ], [ 13.08326, 32.87882 ], [ 13.91868, 32.71196 ], [ 15.24563, 32.26508 ], [ 15.71394, 31.37626 ], [ 16.61162, 31.18218 ], [ 18.02109, 30.76357 ], [ 19.08641, 30.26639 ], [ 19.57404, 30.52582 ], [ 20.05335, 30.98576 ], [ 19.82033, 31.751790000000142 ], [ 20.13397, 32.2382 ], [ 20.85452, 32.7068 ], [ 21.54298, 32.8432 ], [ 22.89576, 32.63858 ], [ 23.2368, 32.19149 ], [ 23.609130000000107, 32.18726 ], [ 23.9275, 32.01667 ], [ 24.92114, 31.89936 ], [ 25.16482, 31.56915 ], [ 24.80287, 31.08929 ], [ 24.95762, 30.6616 ], [ 24.70007, 30.04419 ], [ 25.000000000000114, 29.238654529533562 ], [ 25.000000000000114, 25.682499996361003 ], [ 25.000000000000114, 22.0 ], [ 25.000000000000114, 20.00304 ], [ 23.850000000000136, 20.0 ], [ 23.837660000000142, 19.580470000000105 ], [ 19.84926, 21.49509 ], [ 15.86085, 23.40972 ], [ 14.8513, 22.862950000000126 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0.000000, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0.000000, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0.000000, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "brk_group": null, "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Sri Lanka", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 5.000000, "mapcolor9": 4.000000, "mapcolor13": 9.000000, "pop_est": 21324791.000000, "gdp_md_est": 91870.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99.000000, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.787959018891399, 7.523055324733164 ], [ 81.637322218760588, 6.481775214051922 ], [ 81.218019647144331, 6.197141424988288 ], [ 80.348356968104412, 5.968369859232155 ], [ 79.872468703128533, 6.76346344647493 ], [ 79.695166863935128, 8.200843410673386 ], [ 80.147800734379643, 9.824077663609557 ], [ 80.838817986986555, 9.268426825391188 ], [ 81.304319289071771, 8.56420624433369 ], [ 81.787959018891399, 7.523055324733164 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0.000000, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0.000000, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0.000000, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "brk_group": null, "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Lesotho", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 5.000000, "mapcolor9": 2.000000, "mapcolor13": 8.000000, "pop_est": 2130819.000000, "gdp_md_est": 3293.000000, "pop_year": -99.000000, "lastcensus": 2006.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99.000000, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.978262566857243, -28.955596612261711 ], [ 29.325166456832591, -29.257386976846256 ], [ 29.018415154748027, -29.743765557577369 ], [ 28.848399692507741, -30.070050551068256 ], [ 28.29106937023991, -30.2262167294543 ], [ 28.107204624145425, -30.545732110314951 ], [ 27.749397006956485, -30.645105889612225 ], [ 26.999261915807637, -29.875953871379984 ], [ 27.532511020627478, -29.24271087007536 ], [ 28.074338413207784, -28.851468601193588 ], [ 28.541700066855498, -28.647501722937569 ], [ 28.978262566857243, -28.955596612261711 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0.000000, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0.000000, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0.000000, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "brk_group": null, "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Lithuania", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 3.000000, "mapcolor9": 3.000000, "mapcolor13": 9.000000, "pop_est": 3555179.000000, "gdp_md_est": 63330.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99.000000, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.731098667092652, 54.327536932993326 ], [ 22.651051873472539, 54.582740993866736 ], [ 22.757763706155259, 54.85657440858138 ], [ 22.315723504330577, 55.015298570365864 ], [ 21.268448927503467, 55.190481675835315 ], [ 21.055800408622417, 56.031076361711065 ], [ 22.201156853939494, 56.33780182557949 ], [ 23.878263787539964, 56.273671373105273 ], [ 24.86068444184076, 56.37252838807963 ], [ 25.000934279080894, 56.164530748104838 ], [ 25.533046502390334, 56.100296942766036 ], [ 26.494331495883756, 55.615106919977634 ], [ 26.588279249790389, 55.167175604871673 ], [ 25.768432651479799, 54.846962592175089 ], [ 25.536353794056993, 54.282423407602529 ], [ 24.450683628037037, 53.905702216194754 ], [ 23.484127638449849, 53.912497667041137 ], [ 23.243987257589509, 54.220566718149144 ], [ 22.731098667092652, 54.327536932993326 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0.000000, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0.000000, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0.000000, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "brk_group": null, "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Luxembourg", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 7.000000, "mapcolor9": 3.000000, "mapcolor13": 7.000000, "pop_est": 491775.000000, "gdp_md_est": 39370.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99.000000, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": 5.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.043073357781111, 50.128051662794235 ], [ 6.242751092156993, 49.902225653678727 ], [ 6.186320428094177, 49.463802802114515 ], [ 5.897759230176405, 49.442667141307027 ], [ 5.674051954784829, 49.529483547557504 ], [ 5.782417433300907, 50.09032786722122 ], [ 6.043073357781111, 50.128051662794235 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0.000000, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0.000000, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0.000000, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "brk_group": null, "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Latvia", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 7.000000, "mapcolor9": 6.000000, "mapcolor13": 13.000000, "pop_est": 2231503.000000, "gdp_md_est": 38860.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99.000000, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.055800408622417, 56.031076361711065 ], [ 21.090423618257972, 56.783872789122938 ], [ 21.581866489353672, 57.411870632549935 ], [ 22.524341261492879, 57.753374335350763 ], [ 23.318452996522097, 57.006236477274868 ], [ 24.120729607853431, 57.025692654032767 ], [ 24.312862583114622, 57.793423570376973 ], [ 25.164593540149269, 57.970156968815189 ], [ 25.602809685984369, 57.847528794986573 ], [ 26.463532342237787, 57.47638865826633 ], [ 27.288184848751513, 57.474528306703832 ], [ 27.770015903440932, 57.244258124411232 ], [ 27.855282016722526, 56.759326483784292 ], [ 28.176709425577997, 56.169129950578814 ], [ 27.102459751094528, 55.783313707087686 ], [ 26.494331495883756, 55.615106919977634 ], [ 25.533046502390334, 56.100296942766036 ], [ 25.000934279080894, 56.164530748104838 ], [ 24.86068444184076, 56.37252838807963 ], [ 23.878263787539964, 56.273671373105273 ], [ 22.201156853939494, 56.33780182557949 ], [ 21.055800408622417, 56.031076361711065 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0.000000, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0.000000, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0.000000, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "brk_group": null, "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Morocco", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 3.000000, "mapcolor13": 9.000000, "pop_est": 34859364.000000, "gdp_md_est": 136600.000000, "pop_year": -99.000000, "lastcensus": 2004.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99.000000, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.193863491222032, 35.755182196590852 ], [ -4.591006232105144, 35.330711981745651 ], [ -3.640056525070008, 35.399855048151977 ], [ -2.604305792644112, 35.179093329401127 ], [ -2.169913702798624, 35.168396307916709 ], [ -1.792985805661658, 34.527918606091305 ], [ -1.73345455566141, 33.919712836232122 ], [ -1.388049282222596, 32.864015000941379 ], [ -1.124551153966195, 32.651521511357203 ], [ -1.30789913573787, 32.262888902306031 ], [ -2.616604783529567, 32.094346218386164 ], [ -3.068980271812649, 31.724497992473289 ], [ -3.647497931320146, 31.637294012980817 ], [ -3.690441046554668, 30.896951605751156 ], [ -4.859646165374443, 30.501187649043885 ], [ -5.242129278982787, 30.000443020135577 ], [ -6.060632290053746, 29.731699734001808 ], [ -7.059227667661901, 29.579228420524657 ], [ -8.674116176782832, 28.84128896739665 ], [ -8.665589565454837, 27.65642588959247 ], [ -8.817809007940525, 27.65642588959247 ], [ -8.817828334986643, 27.65642588959247 ], [ -8.794883999049034, 27.12069631602256 ], [ -9.413037482124508, 27.088476060488546 ], [ -9.735343390328751, 26.860944729107416 ], [ -10.189424200877454, 26.860944729107416 ], [ -10.551262579785259, 26.990807603456886 ], [ -11.39255489749695, 26.883423977154393 ], [ -11.718219773800342, 26.104091701760808 ], [ -12.030758836301658, 26.030866197203125 ], [ -12.50096269372537, 24.770116278578143 ], [ -13.891110398809047, 23.691009019459386 ], [ -14.221167771857154, 22.310163072188345 ], [ -14.630832688850944, 21.860939846274874 ], [ -14.750954555713406, 21.500600083903805 ], [ -17.002961798561074, 21.420734157796687 ], [ -17.020428432675772, 21.422310288981635 ], [ -16.973247849993186, 21.885744533774954 ], [ -16.58913692876763, 22.158234361250095 ], [ -16.261921759495664, 22.679339504481277 ], [ -16.326413946995899, 23.017768459560898 ], [ -15.982610642958065, 23.723358466074103 ], [ -15.426003790742186, 24.359133612561038 ], [ -15.089331834360735, 24.520260728446971 ], [ -14.824645148161693, 25.103532619725314 ], [ -14.800925665739669, 25.636264960222292 ], [ -14.439939947964831, 26.254418443297652 ], [ -13.773804897506466, 26.618892320252286 ], [ -13.139941779014293, 27.640147813420498 ], [ -13.121613369914712, 27.654147671719812 ], [ -12.618836635783111, 28.038185533148663 ], [ -11.688919236690765, 28.148643907172584 ], [ -10.900956997104402, 28.83214223888092 ], [ -10.399592251008642, 29.09858592377779 ], [ -9.564811163765626, 29.933573716749862 ], [ -9.814718390329176, 31.17773550060906 ], [ -9.434793260119363, 32.038096421836485 ], [ -9.300692918321829, 32.564679266890636 ], [ -8.65747636558504, 33.240245266242397 ], [ -7.654178432638219, 33.697064927702513 ], [ -6.91254411460136, 34.110476386037448 ], [ -6.244342006851411, 35.145865383437524 ], [ -5.929994269219833, 35.75998810479399 ], [ -5.193863491222032, 35.755182196590852 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0.000000, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0.000000, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0.000000, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "brk_group": null, "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Moldova", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 5.000000, "mapcolor9": 4.000000, "mapcolor13": 12.000000, "pop_est": 4320748.000000, "gdp_md_est": 10670.000000, "pop_year": -99.000000, "lastcensus": 2004.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99.000000, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619336785597795, 48.220726223333472 ], [ 26.857823520624805, 48.368210761094495 ], [ 27.522537469195157, 48.467119452501116 ], [ 28.259546746541844, 48.155562242213421 ], [ 28.670891147585166, 48.118148505234103 ], [ 29.122698195113031, 47.849095160506465 ], [ 29.050867954227328, 47.510226955752501 ], [ 29.415135125452736, 47.346645209332578 ], [ 29.559674106573112, 46.928582872091326 ], [ 29.908851759569302, 46.674360663431457 ], [ 29.838210076626297, 46.525325832701689 ], [ 30.024658644335375, 46.42393667254504 ], [ 29.759971958136394, 46.349987697935362 ], [ 29.170653924279886, 46.3792623968287 ], [ 29.072106967899291, 46.517677720722496 ], [ 28.862972446414062, 46.437889309263831 ], [ 28.933717482221624, 46.258830471372498 ], [ 28.659987420371579, 45.939986884131642 ], [ 28.485269402792767, 45.596907050145902 ], [ 28.233553501099042, 45.488283189468376 ], [ 28.054442986775399, 45.944586086605625 ], [ 28.160017937947714, 46.371562608417221 ], [ 28.128030226359044, 46.810476386088254 ], [ 27.551166212684848, 47.405117092470832 ], [ 27.233872918412743, 47.826770941756379 ], [ 26.924176059687568, 48.123264472030996 ], [ 26.619336785597795, 48.220726223333472 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0.000000, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0.000000, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0.000000, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "brk_group": null, "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Madagascar", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 5.000000, "mapcolor9": 2.000000, "mapcolor13": 3.000000, "pop_est": 20653556.000000, "gdp_md_est": 20130.000000, "pop_year": -99.000000, "lastcensus": 1993.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99.000000, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.543518914595751, -12.469832858940554 ], [ 49.808980747279094, -12.895284925999555 ], [ 50.056510857957164, -13.555761407121985 ], [ 50.217431268114069, -14.758788750876796 ], [ 50.476536899625529, -15.226512139550543 ], [ 50.377111443895956, -15.706069431219127 ], [ 50.200274692593183, -16.000263360256767 ], [ 49.860605503138679, -15.414252618066918 ], [ 49.672606642460863, -15.710203545802479 ], [ 49.863344354050156, -16.451036879138776 ], [ 49.774564243372708, -16.875042006093601 ], [ 49.498612094934117, -17.106035658438273 ], [ 49.435618523970305, -17.953064060134366 ], [ 49.041792433473944, -19.118781019774445 ], [ 48.548540887248009, -20.496888116134127 ], [ 47.930749139198667, -22.391501153251085 ], [ 47.547723423051309, -23.781958916928517 ], [ 47.095761346226595, -24.941629733990453 ], [ 46.282477654817086, -25.178462823184105 ], [ 45.409507684110451, -25.601434421493089 ], [ 44.833573846217554, -25.34610116953894 ], [ 44.039720493349762, -24.988345228782308 ], [ 43.763768344911171, -24.460677178649991 ], [ 43.697777540874455, -23.574116306250602 ], [ 43.345654331237625, -22.776903985283873 ], [ 43.254187046081, -22.057413018484123 ], [ 43.43329756040464, -21.336475111580189 ], [ 43.893682895692926, -21.163307386970128 ], [ 43.896370070172104, -20.830459486578174 ], [ 44.374325392439658, -20.072366224856388 ], [ 44.464397413924388, -19.435454196859048 ], [ 44.232421909366167, -18.961994724200906 ], [ 44.042976108584156, -18.331387220943171 ], [ 43.963084344260913, -17.409944756746782 ], [ 44.31246870298628, -16.850495700754955 ], [ 44.446517368351401, -16.216219170804507 ], [ 44.944936557806528, -16.179373874580399 ], [ 45.502731967964991, -15.974373467678539 ], [ 45.872993605336262, -15.793454278224687 ], [ 46.31224327981721, -15.780018405828798 ], [ 46.882182651564285, -15.210182386946315 ], [ 47.705129835812357, -14.594302666891764 ], [ 48.005214878131255, -14.091232598530375 ], [ 47.869047479042166, -13.663868503476586 ], [ 48.293827752481377, -13.784067884987486 ], [ 48.845060255738787, -13.089174899958664 ], [ 48.863508742066983, -12.487867933810421 ], [ 49.194651320193316, -12.04055673589197 ], [ 49.543518914595751, -12.469832858940554 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0.000000, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0.000000, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0.000000, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "brk_group": null, "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mexico", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 1.000000, "mapcolor9": 7.000000, "mapcolor13": 3.000000, "pop_est": 111211789.000000, "gdp_md_est": 1563000.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99.000000, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.140008307670712, 25.869997463478398 ], [ -97.528072475966553, 24.9921440699203 ], [ -97.702945522842242, 24.272343044526735 ], [ -97.776041836319052, 22.93257986092766 ], [ -97.872366706111109, 22.44421173755336 ], [ -97.699043952204192, 21.898689480064263 ], [ -97.388959520236767, 21.411018988525825 ], [ -97.189333462293291, 20.635433254473128 ], [ -96.525575527720321, 19.890930894444068 ], [ -96.292127244841765, 19.320371405509547 ], [ -95.900884975959968, 18.82802419684873 ], [ -94.839063483442715, 18.562717393462208 ], [ -94.425729539756219, 18.144370835843347 ], [ -93.548651292682393, 18.423836981677937 ], [ -92.786113857783505, 18.524838568592259 ], [ -92.037348192090406, 18.704569200103435 ], [ -91.407903408559264, 18.87608327888023 ], [ -90.771869879910867, 19.284120388256781 ], [ -90.533589850613055, 19.867418117751299 ], [ -90.451475999701245, 20.707521877520435 ], [ -90.278618333684904, 20.999855454995554 ], [ -89.601321173851488, 21.261725775634488 ], [ -88.543866339862859, 21.49367544197662 ], [ -87.658416510757718, 21.458845526611981 ], [ -87.051890224948067, 21.543543199138298 ], [ -86.811982388032959, 21.331514797444754 ], [ -86.845907965832623, 20.849864610268355 ], [ -87.383291185235862, 20.25540477139873 ], [ -87.62105445021075, 19.646553046135921 ], [ -87.436750454441778, 19.472403469312269 ], [ -87.586560431655926, 19.040130113190742 ], [ -87.837191128271513, 18.25981598558343 ], [ -88.090664028663184, 18.516647854074051 ], [ -88.30003109409364, 18.49998220466 ], [ -88.490122850279306, 18.48683055264172 ], [ -88.848343878926585, 17.883198147040332 ], [ -89.029857347351765, 18.001511338772559 ], [ -89.150909389995491, 17.955467637600407 ], [ -89.14308041050333, 17.808318996649405 ], [ -90.067933519230905, 17.819326076727521 ], [ -91.001519945015957, 17.817594916245696 ], [ -91.002269253284169, 17.254657701074279 ], [ -91.453921271515128, 17.252177232324186 ], [ -91.081670091500598, 16.918476670799521 ], [ -90.711821865587638, 16.68748301845477 ], [ -90.600846727240935, 16.47077789963879 ], [ -90.438866950222007, 16.410109768128109 ], [ -90.464472622422647, 16.069562079324726 ], [ -91.747960171255954, 16.066564846251765 ], [ -92.229248623406306, 15.251446641495875 ], [ -92.087215949252027, 15.064584662328514 ], [ -92.203229539747269, 14.83010285080411 ], [ -92.227750006869826, 14.538828640190957 ], [ -93.35946387406176, 15.615429592343673 ], [ -93.875168830118525, 15.940164292865916 ], [ -94.691656460330137, 16.200975246642884 ], [ -95.250227016973042, 16.128318182840644 ], [ -96.053382127653322, 15.752087917539598 ], [ -96.557434048228288, 15.653515122942792 ], [ -97.263592495496653, 15.917064927631316 ], [ -98.01302995480961, 16.107311713113916 ], [ -98.947675747456515, 16.566043402568766 ], [ -99.697397427147052, 16.706164048728169 ], [ -100.829498867581322, 17.17107107184205 ], [ -101.666088629954459, 17.649026394109626 ], [ -101.918528001700224, 17.916090196193977 ], [ -102.478132086988921, 17.975750637275098 ], [ -103.500989549558085, 18.292294623278849 ], [ -103.917527432046825, 18.748571682200009 ], [ -104.992009650475495, 19.316133938061682 ], [ -105.49303849976144, 19.946767279535436 ], [ -105.731396043707662, 20.434101874264115 ], [ -105.39777299683135, 20.531718654863425 ], [ -105.50066077352443, 20.816895046466129 ], [ -105.270752326257934, 21.076284898355141 ], [ -105.265817226974036, 21.422103583252351 ], [ -105.603160976975403, 21.871145941652571 ], [ -105.693413865973127, 22.269080308516152 ], [ -106.028716396898972, 22.773752346278627 ], [ -106.90998043498837, 23.767774359628902 ], [ -107.915448778091388, 24.54891531015295 ], [ -108.401904873470983, 25.172313951105934 ], [ -109.260198737406654, 25.580609442644061 ], [ -109.444089321717343, 25.82488393808768 ], [ -109.291643846456282, 26.442934068298428 ], [ -109.801457689231825, 26.676175645447927 ], [ -110.391731737085706, 27.16211497650454 ], [ -110.641018846461634, 27.859876003525528 ], [ -111.178918830187854, 27.94124054616907 ], [ -111.759606899851633, 28.467952582303951 ], [ -112.228234626090398, 28.954408677683489 ], [ -112.271823696728688, 29.266844387320077 ], [ -112.809594489373978, 30.021113593052348 ], [ -113.163810594518679, 30.786880804969428 ], [ -113.14866939985717, 31.170965887978923 ], [ -113.871881069781864, 31.567608344035193 ], [ -114.20573666060352, 31.524045111613134 ], [ -114.776451178835032, 31.79953217216115 ], [ -114.936699795372135, 31.393484605427602 ], [ -114.771231859173497, 30.913617255165263 ], [ -114.673899298951767, 30.162681179315996 ], [ -114.330974494262932, 29.750432440707414 ], [ -113.588875088335442, 29.061611436473015 ], [ -113.424053107540544, 28.82617361095123 ], [ -113.27196936730553, 28.754782619739899 ], [ -113.140039435664391, 28.411289374295961 ], [ -112.962298346796501, 28.42519033458251 ], [ -112.761587083774884, 27.780216783147523 ], [ -112.457910529411663, 27.525813706974759 ], [ -112.244951951936798, 27.171726792910761 ], [ -111.616489020619213, 26.662817287700477 ], [ -111.284674648873022, 25.732589830014433 ], [ -110.987819383572401, 25.294606228124564 ], [ -110.710006883571339, 24.826004340101861 ], [ -110.655048997828885, 24.298594672131117 ], [ -110.172856208113444, 24.265547593680424 ], [ -109.77184709352855, 23.811182562754198 ], [ -109.409104377055712, 23.364672349536249 ], [ -109.433392300232924, 23.185587673428699 ], [ -109.854219326601708, 22.818271592698068 ], [ -110.031391974714438, 22.823077500901206 ], [ -110.295070970483664, 23.430973212166691 ], [ -110.949501309028051, 24.000964260345995 ], [ -111.670568407012695, 24.484423122652515 ], [ -112.182035895621482, 24.738412787367167 ], [ -112.148988817170846, 25.470125230404051 ], [ -112.300710822379699, 26.012004299416617 ], [ -112.777296719191554, 26.321959540303169 ], [ -113.464670783321935, 26.768185533143424 ], [ -113.596729906043834, 26.639459540304472 ], [ -113.848936733844255, 26.90006378835244 ], [ -114.465746629680041, 27.142090358991368 ], [ -115.055142178185008, 27.722726752222911 ], [ -114.982252570437424, 27.798200181585116 ], [ -114.570365566854946, 27.741485297144891 ], [ -114.19932878299926, 28.115002549750557 ], [ -114.162018398884641, 28.566111965442303 ], [ -114.931842210736647, 29.27947927501549 ], [ -115.518653937626993, 29.556361599235402 ], [ -115.887365282029577, 30.180793768834178 ], [ -116.258350389452914, 30.836464341753583 ], [ -116.721526252084971, 31.635743720012044 ], [ -117.127759999999853, 32.53534 ], [ -115.99135, 32.612390000000119 ], [ -114.72139, 32.72083 ], [ -114.815, 32.52528 ], [ -113.30498, 32.03914 ], [ -111.02361, 31.33472 ], [ -109.035, 31.341940000000136 ], [ -108.24194, 31.34222 ], [ -108.24, 31.754853718166373 ], [ -106.50759, 31.75452 ], [ -106.1429, 31.39995 ], [ -105.63159, 31.08383 ], [ -105.03737, 30.64402 ], [ -104.70575, 30.12173 ], [ -104.456969999999899, 29.57196 ], [ -103.94, 29.27 ], [ -103.11, 28.97 ], [ -102.48, 29.76 ], [ -101.6624, 29.7793 ], [ -100.9576, 29.380710000000136 ], [ -100.45584, 28.696120000000121 ], [ -100.11, 28.110000000000127 ], [ -99.52, 27.54 ], [ -99.3, 26.84 ], [ -99.02, 26.37 ], [ -98.24, 26.06 ], [ -97.53, 25.84 ], [ -97.140008307670712, 25.869997463478398 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0.000000, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0.000000, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0.000000, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "brk_group": null, "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Macedonia, FYR", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 3.000000, "mapcolor9": 7.000000, "mapcolor13": 3.000000, "pop_est": 2066718.000000, "gdp_md_est": 18780.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99.000000, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.59023, 41.85541 ], [ 20.717310000000111, 41.84711 ], [ 20.76216, 42.05186 ], [ 21.352700000000141, 42.2068 ], [ 21.576635989402121, 42.245224397061861 ], [ 21.917080000000112, 42.30364 ], [ 22.380525750424681, 42.320259507815081 ], [ 22.881373732197346, 41.999297186850356 ], [ 22.952377150166512, 41.33799388281119 ], [ 22.76177, 41.3048 ], [ 22.597308383889015, 41.130487168943205 ], [ 22.05537763844427, 41.149865831052693 ], [ 21.674160597426976, 40.931274522457954 ], [ 21.020040317476401, 40.84272695572588 ], [ 20.60518, 41.08622 ], [ 20.46315, 41.5150900000001 ], [ 20.59023, 41.85541 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0.000000, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0.000000, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0.000000, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "brk_group": null, "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mali", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 7.000000, "pop_est": 12666987.000000, "gdp_md_est": 14590.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99.000000, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4.000000, "long_len": 4.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.170750291380301, 14.616834214735505 ], [ -11.834207526079467, 14.799096991428939 ], [ -11.666078253617854, 15.388208319556298 ], [ -11.349095017939504, 15.411256008358478 ], [ -10.650791388379417, 15.132745876521426 ], [ -10.086846482778213, 15.330485744686271 ], [ -9.700255092802706, 15.264107367407362 ], [ -9.550238409859389, 15.486496893775438 ], [ -5.537744309908447, 15.501689764869257 ], [ -5.315277268891933, 16.201853745991841 ], [ -5.488522508150439, 16.325102037007966 ], [ -5.971128709324248, 20.640833441647629 ], [ -6.453786586930335, 24.956590684503425 ], [ -4.923337368174231, 24.974574082941 ], [ -1.550054897457613, 22.792665920497384 ], [ 1.823227573259032, 20.610809434486043 ], [ 2.06099083823392, 20.142233384679486 ], [ 2.683588494486429, 19.856230170160117 ], [ 3.1466610042539, 19.693578599521445 ], [ 3.158133172222705, 19.057364203360038 ], [ 4.267419467800039, 19.155265204336999 ], [ 4.270209995143802, 16.852227484601215 ], [ 3.723421665063483, 16.184283759012615 ], [ 3.638258904646477, 15.568119818580456 ], [ 2.749992709981484, 15.409524847876696 ], [ 1.385528191746858, 15.323561102759172 ], [ 1.01578331869851, 14.968182277887948 ], [ 0.374892205414682, 14.92890818934613 ], [ -0.26625729003058, 14.924308986872148 ], [ -0.515854458000348, 15.116157741755728 ], [ -1.066363491205664, 14.973815009007765 ], [ -2.001035122068771, 14.559008287000893 ], [ -2.191824510090385, 14.246417548067356 ], [ -2.967694464520577, 13.79815033615151 ], [ -3.10370683431276, 13.541266791228594 ], [ -3.522802700199861, 13.337661647998615 ], [ -4.006390753587226, 13.472485459848116 ], [ -4.28040503581488, 13.228443508349741 ], [ -4.427166103523803, 12.542645575404295 ], [ -5.220941941743121, 11.713858954307227 ], [ -5.197842576508648, 11.37514577885014 ], [ -5.470564947929006, 10.951269842976048 ], [ -5.404341599946974, 10.370736802609146 ], [ -5.816926235365287, 10.222554633012194 ], [ -6.050452032892267, 10.096360785355444 ], [ -6.205222947606431, 10.524060777219134 ], [ -6.493965013037268, 10.411302801958271 ], [ -6.666460944027548, 10.430810655148449 ], [ -6.850506557635057, 10.138993841996239 ], [ -7.622759161804809, 10.147236232946796 ], [ -7.899589809592372, 10.297382106970828 ], [ -8.029943610048619, 10.206534939001713 ], [ -8.33537716310974, 10.494811916541934 ], [ -8.282357143578281, 10.792597357623846 ], [ -8.407310756860028, 10.909256903522762 ], [ -8.620321010767128, 10.810890814655183 ], [ -8.581305304386774, 11.136245632364805 ], [ -8.376304897484914, 11.393645941610629 ], [ -8.786099005559464, 11.812560939984706 ], [ -8.90526485842453, 12.088358059126437 ], [ -9.127473517279583, 12.308060411015333 ], [ -9.327616339546012, 12.334286200403454 ], [ -9.567911749703214, 12.194243068892476 ], [ -9.890992804392013, 12.060478623904972 ], [ -10.165213792348837, 11.844083563682744 ], [ -10.593223842806282, 11.92397532800598 ], [ -10.870829637078215, 12.17788747807211 ], [ -11.03655595543826, 12.211244615116515 ], [ -11.297573614944511, 12.077971096235771 ], [ -11.456168585648271, 12.076834214725338 ], [ -11.513942836950591, 12.442987575729418 ], [ -11.467899135778524, 12.754518947800975 ], [ -11.553397793005431, 13.141213690641067 ], [ -11.927716030311615, 13.422075100147396 ], [ -12.124887457721259, 13.994727484589788 ], [ -12.170750291380301, 14.616834214735505 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0.000000, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0.000000, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0.000000, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "brk_group": null, "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Myanmar", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 5.000000, "mapcolor13": 13.000000, "pop_est": 48137741.000000, "gdp_md_est": 55130.000000, "pop_year": -99.000000, "lastcensus": 1983.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99.000000, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.543309360759309, 20.186597601802063 ], [ 98.959675734454876, 19.752980658440947 ], [ 98.25372399291561, 19.708203029860044 ], [ 97.797782830804408, 18.627080389881755 ], [ 97.375896437573545, 18.445437730375815 ], [ 97.859122755934862, 17.567946071843664 ], [ 98.49376102091135, 16.837835598207931 ], [ 98.903348423256759, 16.177824204976119 ], [ 98.537375929765716, 15.308497422746084 ], [ 98.192074009191401, 15.123702500870351 ], [ 98.430819126379873, 14.622027696180837 ], [ 99.097755161538757, 13.827502549693278 ], [ 99.212011753336085, 13.269293728076464 ], [ 99.196353794351666, 12.80474843998867 ], [ 99.587286004639722, 11.892762762901697 ], [ 99.038120558673981, 10.960545762572437 ], [ 98.553550653073046, 9.932959906448545 ], [ 98.457174106848726, 10.67526601810515 ], [ 98.764545526120784, 11.441291612183749 ], [ 98.428338657629851, 12.032986761925685 ], [ 98.509574009192676, 13.122377631070677 ], [ 98.103603957107694, 13.640459703012851 ], [ 97.777732375075175, 14.837285874892642 ], [ 97.597071567782763, 16.100567938699768 ], [ 97.164539829499802, 16.92873444260934 ], [ 96.505768670642993, 16.427240505432849 ], [ 95.369352248112406, 15.714389960182601 ], [ 94.80840457558412, 15.803454291237641 ], [ 94.188804152404543, 16.037936102762018 ], [ 94.533485955791349, 17.277240301985728 ], [ 94.324816522196755, 18.2135139022499 ], [ 93.540988397193644, 19.366492621330025 ], [ 93.663254835996213, 19.726961574781996 ], [ 93.078277622452191, 19.855144965081976 ], [ 92.36855350135562, 20.670883287025347 ], [ 92.303234490938678, 21.475485337809818 ], [ 92.65225711463799, 21.324047552978485 ], [ 92.672720981825563, 22.041238918541254 ], [ 93.166127557348375, 22.278459580977103 ], [ 93.060294224014626, 22.703110663335568 ], [ 93.286326938859276, 23.043658352139005 ], [ 93.325187615942795, 24.078556423432204 ], [ 94.106741977925068, 23.85074087167348 ], [ 94.55265791217164, 24.675238348890336 ], [ 94.603249139385383, 25.162495428970402 ], [ 95.155153436262594, 26.001307277932085 ], [ 95.124767694074961, 26.573572089132298 ], [ 96.419365675850969, 27.264589341739224 ], [ 97.133999058015306, 27.083773505149964 ], [ 97.051988559968095, 27.699058946233151 ], [ 97.402561476636137, 27.882536119085444 ], [ 97.327113885490036, 28.261582749946339 ], [ 97.911987746169444, 28.335945136014345 ], [ 98.246230910233294, 27.747221381129179 ], [ 98.682690057370465, 27.508812160750619 ], [ 98.712093947344513, 26.743535874940267 ], [ 98.671838006589155, 25.918702500913525 ], [ 97.724609002679145, 25.083637193293001 ], [ 97.604719679761985, 23.897404690033042 ], [ 98.660262485755766, 24.063286037689966 ], [ 98.898749220782776, 23.142722072842531 ], [ 99.531992222087396, 22.949038804612581 ], [ 99.240898878987252, 22.118314317304581 ], [ 99.983489211021492, 21.742936713136402 ], [ 100.416537713627378, 21.558839423096614 ], [ 101.15003299357825, 21.849984442629022 ], [ 101.180005324307544, 21.436572984294028 ], [ 100.329101190189533, 20.786121731036232 ], [ 100.115987583417848, 20.417849636308187 ], [ 99.543309360759309, 20.186597601802063 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0.000000, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0.000000, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0.000000, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "brk_group": null, "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Montenegro", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 1.000000, "mapcolor9": 4.000000, "mapcolor13": 5.000000, "pop_est": 672180.000000, "gdp_md_est": 6816.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99.000000, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.801613396898688, 42.500093492190842 ], [ 19.738051385179631, 42.688247382165571 ], [ 19.304490000000101, 42.19574 ], [ 19.37177000000014, 41.87755 ], [ 19.16246, 41.95502 ], [ 18.88214, 42.28151 ], [ 18.45, 42.48 ], [ 18.56, 42.65 ], [ 18.70648, 43.20011 ], [ 19.03165, 43.43253 ], [ 19.21852, 43.52384 ], [ 19.48389, 43.35229 ], [ 19.63, 43.213779970270537 ], [ 19.95857, 43.10604 ], [ 20.3398, 42.89852 ], [ 20.25758, 42.812750000000108 ], [ 20.0707, 42.58863 ], [ 19.801613396898688, 42.500093492190842 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0.000000, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0.000000, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0.000000, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "brk_group": null, "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mongolia", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 5.000000, "mapcolor9": 5.000000, "mapcolor13": 6.000000, "pop_est": 3041142.000000, "gdp_md_est": 9476.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99.000000, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.751264276076711, 49.297197984405486 ], [ 88.805566847695516, 49.470520738312423 ], [ 90.71366743364068, 50.331811835321091 ], [ 92.234711541719676, 50.802170722041723 ], [ 93.10421919146269, 50.495290228876428 ], [ 94.147566359435629, 50.48053660745709 ], [ 94.815949334698729, 50.013433335970852 ], [ 95.814027947983988, 49.977466539095715 ], [ 97.25972781778141, 49.726060695995741 ], [ 98.231761509191557, 50.422400621128745 ], [ 97.825739780674311, 51.010995184933179 ], [ 98.861490513100335, 52.047366034546691 ], [ 99.981732212323536, 51.634006252643992 ], [ 100.889480421962617, 51.516855780638323 ], [ 102.065222609467327, 51.259920559283124 ], [ 102.255908644624327, 50.510560614618683 ], [ 103.676545444760222, 50.089966132195116 ], [ 104.621552362081701, 50.275329494826074 ], [ 105.886591424586754, 50.406019192092224 ], [ 106.88880415245535, 50.274295966180233 ], [ 107.86817589725095, 49.793705145865815 ], [ 108.475167270951289, 49.28254771585074 ], [ 109.402449171996665, 49.29296051695755 ], [ 110.662010532678778, 49.130128078805868 ], [ 111.581230910286621, 49.377968248077693 ], [ 112.897739699354389, 49.543565375356991 ], [ 114.362456496235268, 50.248302720737414 ], [ 114.962109816550182, 50.140247300815126 ], [ 115.485695428531415, 49.805177313834605 ], [ 116.67880089728618, 49.888531399121391 ], [ 116.191802199367572, 49.134598090199106 ], [ 115.485282017073061, 48.135382595403442 ], [ 115.742837355615791, 47.726544501326288 ], [ 116.308952671373234, 47.85341014260284 ], [ 117.29550744025741, 47.697709052107427 ], [ 118.064142694166719, 48.066730455103688 ], [ 118.866574334794947, 47.747060044946167 ], [ 119.772823927897505, 47.048058783550132 ], [ 119.663269891438759, 46.692679958678923 ], [ 118.874325799638726, 46.805412095723653 ], [ 117.421701287914189, 46.67273285581426 ], [ 116.717868280098855, 46.388202419615212 ], [ 115.985096470200091, 45.727235012386004 ], [ 114.460331658996068, 45.339816799493825 ], [ 113.463906691544167, 44.808893134127118 ], [ 112.436062453258813, 45.011645616224293 ], [ 111.873306105600307, 45.102079372735062 ], [ 111.348376906379457, 44.45744171811009 ], [ 111.66773725794323, 44.073175767587713 ], [ 111.82958784388137, 43.743118394539522 ], [ 111.129682244920232, 43.40683401140015 ], [ 110.412103306115284, 42.871233628911028 ], [ 109.243595819131457, 42.5194463160841 ], [ 107.744772576937947, 42.481515814781872 ], [ 106.129315627061686, 42.134327704428912 ], [ 104.964993931093474, 41.597409572916348 ], [ 104.522281935648991, 41.908346666016556 ], [ 103.312278273534815, 41.907468166667599 ], [ 101.833040399179936, 42.514872951826277 ], [ 100.845865513108265, 42.663804429691453 ], [ 99.515817498780038, 42.524691473961724 ], [ 97.451757440178014, 42.74888967546002 ], [ 96.349395786527808, 42.725635280928685 ], [ 95.762454868556688, 43.319449164394605 ], [ 95.306875441471533, 44.241330878265472 ], [ 94.688928664125328, 44.352331854828421 ], [ 93.480733677141302, 44.975472113619965 ], [ 92.133890822318222, 45.115075995456458 ], [ 90.945539585334302, 45.286073309910279 ], [ 90.585768263718279, 45.719716091487527 ], [ 90.970809360725013, 46.88814606382293 ], [ 90.280825636763922, 47.69354909930793 ], [ 88.854297723346761, 48.069081732772965 ], [ 88.013832228551735, 48.599462795600616 ], [ 87.751264276076711, 49.297197984405486 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0.000000, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0.000000, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0.000000, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "brk_group": null, "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mozambique", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 2.000000, "mapcolor9": 1.000000, "mapcolor13": 4.000000, "pop_est": 21669278.000000, "gdp_md_est": 18940.000000, "pop_year": -99.000000, "lastcensus": 2007.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99.000000, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.559989047999352, -11.520020033415925 ], [ 35.312397902169039, -11.439146416879147 ], [ 36.514081658684262, -11.720938002166735 ], [ 36.775150994622805, -11.594537448780805 ], [ 37.47128421402661, -11.568750909067161 ], [ 37.82764489111139, -11.268769219612835 ], [ 38.427556593587752, -11.285202325081656 ], [ 39.521029900883775, -10.896853936408228 ], [ 40.316588576017189, -10.317096042525698 ], [ 40.478387485523029, -10.765440769089993 ], [ 40.437253045418686, -11.761710707245015 ], [ 40.560811395028573, -12.639176527561027 ], [ 40.59962039567975, -14.201975192931862 ], [ 40.775475294768995, -14.691764418194241 ], [ 40.477250604012603, -15.406294447493972 ], [ 40.089263950365222, -16.10077402106446 ], [ 39.452558628097051, -16.72089120856694 ], [ 38.538350864421517, -17.101023044505958 ], [ 37.411132846838882, -17.586368096591237 ], [ 36.281279331209362, -18.659687595293448 ], [ 35.896496616364061, -18.842260430580637 ], [ 35.198399692533144, -19.552811374593894 ], [ 34.786383497870048, -19.784011732667736 ], [ 34.701892531072843, -20.497043145431011 ], [ 35.176127150215365, -21.254361260668411 ], [ 35.373427768705739, -21.840837090748877 ], [ 35.385848253705404, -22.14 ], [ 35.562545536369086, -22.09 ], [ 35.533934767404304, -23.070787855727758 ], [ 35.371774122872381, -23.535358982031699 ], [ 35.607470330555628, -23.706563002214683 ], [ 35.458745558419622, -24.122609958596549 ], [ 35.040734897610662, -24.478350518493805 ], [ 34.215824008935471, -24.816314385682659 ], [ 33.013210076639012, -25.357573337507738 ], [ 32.574632195777866, -25.727318210556092 ], [ 32.660363396950089, -26.148584486599447 ], [ 32.915955031065693, -26.215867201443466 ], [ 32.830120477028885, -26.742191664336197 ], [ 32.071665480281069, -26.733820082304909 ], [ 31.985779249811969, -26.291779880480227 ], [ 31.83777794772806, -25.843331801051349 ], [ 31.752408481581881, -25.484283949487413 ], [ 31.930588820124253, -24.369416599222539 ], [ 31.670397983534656, -23.658969008073864 ], [ 31.191409132621288, -22.251509698172399 ], [ 32.244988234188014, -21.116488539313693 ], [ 32.508693068173443, -20.395292250248307 ], [ 32.65974327976258, -20.304290052982317 ], [ 32.772707960752626, -19.715592136313298 ], [ 32.611994256324891, -19.419382826416275 ], [ 32.654885695127149, -18.672089939043495 ], [ 32.849860874164392, -17.979057305577179 ], [ 32.847638787575846, -16.713398125884616 ], [ 32.328238966610229, -16.392074069893752 ], [ 31.852040643040599, -16.319417006091378 ], [ 31.636498243951195, -16.071990248277885 ], [ 31.17306399915768, -15.860943698797874 ], [ 30.338954705534544, -15.880839125230246 ], [ 30.27425581230511, -15.507786960515213 ], [ 30.17948123548183, -14.796099134991529 ], [ 33.214024692525214, -13.971860039936153 ], [ 33.789700148256685, -14.45183074306307 ], [ 34.064825473778626, -14.35995004644812 ], [ 34.459633416488543, -14.613009535381423 ], [ 34.517666049952311, -15.013708591372612 ], [ 34.307291294092096, -15.478641452702597 ], [ 34.381291945134052, -16.183559665596043 ], [ 35.033810255683534, -16.801299737213093 ], [ 35.339062941231646, -16.107440280830112 ], [ 35.771904738108361, -15.896858819240727 ], [ 35.68684533055594, -14.611045830954332 ], [ 35.267956170398008, -13.887834161029566 ], [ 34.907151320136165, -13.565424899960568 ], [ 34.559989047999352, -13.579997653866876 ], [ 34.28000613784198, -12.280025323132506 ], [ 34.559989047999352, -11.520020033415925 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0.000000, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0.000000, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0.000000, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "brk_group": null, "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mauritania", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 3.000000, "mapcolor9": 2.000000, "mapcolor13": 1.000000, "pop_est": 3129486.000000, "gdp_md_est": 6308.000000, "pop_year": -99.000000, "lastcensus": 2000.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99.000000, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.170750291380301, 14.616834214735505 ], [ -12.830658331747516, 15.303691514542948 ], [ -13.435737677453062, 16.039383042866191 ], [ -14.099521450242179, 16.304302273010492 ], [ -14.577347581428981, 16.598263658102809 ], [ -15.135737270558819, 16.587282416240782 ], [ -15.623666144258692, 16.369337063049812 ], [ -16.120690070041931, 16.455662543193384 ], [ -16.463098110407884, 16.13503611903846 ], [ -16.549707810929064, 16.673892116761962 ], [ -16.270551723688357, 17.166962795474873 ], [ -16.14634741867485, 18.108481553616656 ], [ -16.256883307347167, 19.096715806550307 ], [ -16.37765112961327, 19.593817246981985 ], [ -16.277838100641517, 20.092520656814699 ], [ -16.536323614965468, 20.567866319251493 ], [ -17.063423224342571, 20.999752102130827 ], [ -16.845193650773993, 21.333323472574879 ], [ -12.929101935263532, 21.327070624267563 ], [ -13.118754441774712, 22.771220201096256 ], [ -12.874221564169575, 23.284832261645178 ], [ -11.937224493853321, 23.374594224536168 ], [ -11.969418911171161, 25.933352769468268 ], [ -8.6872936670174, 25.881056219988906 ], [ -8.684399786809053, 27.395744126896005 ], [ -4.923337368174231, 24.974574082941 ], [ -6.453786586930335, 24.956590684503425 ], [ -5.971128709324248, 20.640833441647629 ], [ -5.488522508150439, 16.325102037007966 ], [ -5.315277268891933, 16.201853745991841 ], [ -5.537744309908447, 15.501689764869257 ], [ -9.550238409859389, 15.486496893775438 ], [ -9.700255092802706, 15.264107367407362 ], [ -10.086846482778213, 15.330485744686271 ], [ -10.650791388379417, 15.132745876521426 ], [ -11.349095017939504, 15.411256008358478 ], [ -11.666078253617854, 15.388208319556298 ], [ -11.834207526079467, 14.799096991428939 ], [ -12.170750291380301, 14.616834214735505 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0.000000, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0.000000, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0.000000, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "brk_group": null, "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Malawi", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 3.000000, "mapcolor9": 4.000000, "mapcolor13": 5.000000, "pop_est": 14268711.000000, "gdp_md_est": 11810.000000, "pop_year": -99.000000, "lastcensus": 2008.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99.000000, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.559989047999352, -11.520020033415925 ], [ 34.28000613784198, -12.280025323132506 ], [ 34.559989047999352, -13.579997653866876 ], [ 34.907151320136165, -13.565424899960568 ], [ 35.267956170398008, -13.887834161029566 ], [ 35.68684533055594, -14.611045830954332 ], [ 35.771904738108361, -15.896858819240727 ], [ 35.339062941231646, -16.107440280830112 ], [ 35.033810255683534, -16.801299737213093 ], [ 34.381291945134052, -16.183559665596043 ], [ 34.307291294092096, -15.478641452702597 ], [ 34.517666049952311, -15.013708591372612 ], [ 34.459633416488543, -14.613009535381423 ], [ 34.064825473778626, -14.35995004644812 ], [ 33.789700148256685, -14.45183074306307 ], [ 33.214024692525214, -13.971860039936153 ], [ 32.688165317523129, -13.712857761289277 ], [ 32.991764357237884, -12.783870537978274 ], [ 33.306422153463075, -12.435778090060218 ], [ 33.114289178201915, -11.607198174692314 ], [ 33.315310499817286, -10.796549981329697 ], [ 33.485687697083591, -10.525558770391115 ], [ 33.231387973775298, -9.676721693564801 ], [ 32.759375441221323, -9.23059905358906 ], [ 33.73972903823045, -9.417150974162723 ], [ 33.940837724096539, -9.693673841980294 ], [ 34.28000613784198, -10.159999688358404 ], [ 34.559989047999352, -11.520020033415925 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0.000000, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0.000000, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0.000000, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "brk_group": null, "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Malaysia", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 4.000000, "mapcolor9": 3.000000, "mapcolor13": 6.000000, "pop_est": 25715819.000000, "gdp_md_est": 384300.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99.000000, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.075515578213327, 6.204867051615892 ], [ 101.154218784593837, 5.691384182147715 ], [ 101.814281854258041, 5.810808417174229 ], [ 102.141186964936452, 6.221636053894656 ], [ 102.37114708863524, 6.128205064310961 ], [ 102.961705356866702, 5.524495144061078 ], [ 103.381214634212171, 4.855001125503748 ], [ 103.438575474056194, 4.181605536308382 ], [ 103.332122023534879, 3.726697902842972 ], [ 103.429428745540548, 3.38286876058902 ], [ 103.502447544368891, 2.791018581550205 ], [ 103.854674106870362, 2.515454006353764 ], [ 104.247931756611507, 1.631141058759056 ], [ 104.228811476663537, 1.293048000489534 ], [ 103.519707472754448, 1.226333726400682 ], [ 102.5736153503548, 1.967115383304744 ], [ 101.390638462329179, 2.760813706875624 ], [ 101.273539666755852, 3.270291652841181 ], [ 100.695435418706694, 3.93913971599487 ], [ 100.557407668055106, 4.76728038168828 ], [ 100.196706170657734, 5.31249258058368 ], [ 100.306260207116537, 6.040561835143876 ], [ 100.085756870527092, 6.464489447450291 ], [ 100.259596388756933, 6.642824815289572 ], [ 101.075515578213327, 6.204867051615892 ] ] ], [ [ [ 118.618320754064854, 4.478202419447541 ], [ 117.882034946770176, 4.137551377779488 ], [ 117.015214471506368, 4.306094061699469 ], [ 115.865517205876785, 4.306559149590157 ], [ 115.519078403792008, 3.169238389494396 ], [ 115.134037306785245, 2.821481838386219 ], [ 114.621355422017501, 1.430688177898887 ], [ 113.80584964401956, 1.217548732911041 ], [ 112.859809198052204, 1.497790025229946 ], [ 112.380251906383677, 1.410120957846758 ], [ 111.797548455860436, 0.904441229654651 ], [ 111.159137811326588, 0.976478176269509 ], [ 110.51406090702713, 0.773131415200993 ], [ 109.830226678508865, 1.338135687664192 ], [ 109.663260125773746, 2.006466986494985 ], [ 110.396135288537067, 1.663774725751395 ], [ 111.168852980597507, 1.850636704918784 ], [ 111.370081007942105, 2.697303371588873 ], [ 111.79692833867287, 2.885896511238073 ], [ 112.995614862115275, 3.102394924324869 ], [ 113.712935418758747, 3.893509426281128 ], [ 114.204016554828428, 4.52587392823682 ], [ 114.659595981913554, 4.00763682699781 ], [ 114.869557326315402, 4.348313706881953 ], [ 115.347460972150685, 4.316636053887009 ], [ 115.405700311343622, 4.955227565933825 ], [ 115.450710483869813, 5.447729803891562 ], [ 116.220741001450989, 6.143191229675622 ], [ 116.725102980619766, 6.924771429873999 ], [ 117.129626092600489, 6.928052883324568 ], [ 117.643393182446317, 6.422166449403306 ], [ 117.689075148592366, 5.987490139180181 ], [ 118.347691278152212, 5.708695786965464 ], [ 119.181903924639954, 5.407835598162251 ], [ 119.110693800941732, 5.016128241389865 ], [ 118.43972700406411, 4.96651886638962 ], [ 118.618320754064854, 4.478202419447541 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0.000000, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0.000000, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0.000000, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "brk_group": null, "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Namibia", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 1.000000, "mapcolor9": 1.000000, "mapcolor13": 7.000000, "pop_est": 2108665.000000, "gdp_md_est": 13250.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99.000000, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.344976840895242, -28.576705010697701 ], [ 15.601818068105816, -27.821247247022804 ], [ 15.210472446359461, -27.090955905874047 ], [ 14.989710727608553, -26.117371921495156 ], [ 14.743214145576331, -25.39292001719538 ], [ 14.408144158595833, -23.853014011329847 ], [ 14.385716586981149, -22.656652927340691 ], [ 14.257714064194175, -22.111208184499958 ], [ 13.86864220546866, -21.699036960539978 ], [ 13.352497999737439, -20.872834161057504 ], [ 12.826845330464494, -19.673165785401665 ], [ 12.608564080463621, -19.045348809487699 ], [ 11.794918654028066, -18.069129327061916 ], [ 11.734198846085121, -17.301889336824473 ], [ 12.215461460019355, -17.111668389558083 ], [ 12.814081251688407, -16.941342868724071 ], [ 13.462362094789967, -16.971211846588773 ], [ 14.05850141770901, -17.423380629142663 ], [ 14.209706658595024, -17.353100681225719 ], [ 18.263309360434164, -17.309950860262006 ], [ 18.956186964603603, -17.789094740472258 ], [ 21.377176141045567, -17.930636488519696 ], [ 23.215048455506064, -17.523116143465984 ], [ 24.033861525170778, -17.295843194246324 ], [ 24.682349074001507, -17.353410739819473 ], [ 25.076950310982259, -17.578823337476621 ], [ 25.084443393664571, -17.661815687737374 ], [ 24.520705193792537, -17.887124932529936 ], [ 24.217364536239213, -17.889347019118489 ], [ 23.579005568137717, -18.281261081620059 ], [ 23.196858351339301, -17.869038181227786 ], [ 21.655040317478978, -18.219146010005225 ], [ 20.910641310314535, -18.252218926672022 ], [ 20.88113406747587, -21.814327080983148 ], [ 19.895457797940679, -21.849156996347869 ], [ 19.895767856534434, -24.767790215760591 ], [ 19.894734327888614, -28.461104831660776 ], [ 19.002127312911085, -28.972443129188868 ], [ 18.464899122804752, -29.045461928017279 ], [ 17.83615197110953, -28.856377862261319 ], [ 17.387497185951503, -28.783514092729781 ], [ 17.218928663815404, -28.355943291946812 ], [ 16.824017368240902, -28.08216155366447 ], [ 16.344976840895242, -28.576705010697701 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0.000000, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0.000000, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0.000000, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "brk_group": null, "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "note_brk": null, "name_sort": "New Caledonia", "name_alt": null, "mapcolor7": 7.000000, "mapcolor8": 5.000000, "mapcolor9": 9.000000, "mapcolor13": 11.000000, "pop_est": 227436.000000, "gdp_md_est": 3158.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99.000000, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13.000000, "long_len": 13.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": -99.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.779989862326374, -21.080004978115628 ], [ 166.599991489933842, -21.700018812753527 ], [ 167.120011428086912, -22.159990736583492 ], [ 166.740034621444806, -22.39997608814695 ], [ 166.18973229396866, -22.129708347260454 ], [ 165.474375441752215, -21.679606621998232 ], [ 164.829815301775682, -21.149819838141951 ], [ 164.167995233413649, -20.444746595951628 ], [ 164.029605747736014, -20.105645847252354 ], [ 164.459967075862721, -20.120011895429499 ], [ 165.02003624904205, -20.45999114347773 ], [ 165.46000939357512, -20.80002206795826 ], [ 165.779989862326374, -21.080004978115628 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0.000000, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0.000000, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0.000000, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "brk_group": null, "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Niger", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 5.000000, "mapcolor9": 3.000000, "mapcolor13": 13.000000, "pop_est": 15306252.000000, "gdp_md_est": 10040.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99.000000, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.15447350424995, 11.940150051313424 ], [ 2.177107781593918, 12.625017808477537 ], [ 1.024103224297619, 12.851825669806601 ], [ 0.993045688490156, 13.335749620003867 ], [ 0.429927605805517, 13.988733018443895 ], [ 0.295646396495215, 14.444234930880668 ], [ 0.374892205414767, 14.928908189346146 ], [ 1.015783318698482, 14.96818227788799 ], [ 1.385528191746971, 15.323561102759243 ], [ 2.749992709981541, 15.409524847876753 ], [ 3.638258904646591, 15.568119818580442 ], [ 3.723421665063597, 16.184283759012658 ], [ 4.270209995143887, 16.852227484601315 ], [ 4.267419467800096, 19.155265204337127 ], [ 5.677565952180714, 19.601206976799801 ], [ 8.572893100629869, 21.565660712159229 ], [ 11.999505649471701, 23.471668402596435 ], [ 13.581424594790462, 23.040506089769281 ], [ 14.143870883855243, 22.491288967371133 ], [ 14.8513, 22.862950000000126 ], [ 15.096887648181848, 21.308518785074909 ], [ 15.471076694407316, 21.048457139565983 ], [ 15.487148064850146, 20.730414537025638 ], [ 15.903246697664315, 20.387618923417506 ], [ 15.685740594147774, 19.957180080642388 ], [ 15.300441114979719, 17.927949937405003 ], [ 15.247731154041844, 16.627305813050782 ], [ 13.972201775781684, 15.684365953021143 ], [ 13.540393507550789, 14.367133693901224 ], [ 13.956698846094127, 13.996691189016929 ], [ 13.95447675950561, 13.353448798063766 ], [ 14.595781284247607, 13.330426947477861 ], [ 14.495787387762903, 12.859396267137356 ], [ 14.213530714584749, 12.802035427293333 ], [ 14.18133629726691, 12.483656927943173 ], [ 13.995352817448293, 12.461565253138303 ], [ 13.318701613018561, 13.556356309457954 ], [ 13.083987257548813, 13.596147162322495 ], [ 12.302071160540549, 13.037189032437539 ], [ 11.527803175511508, 13.328980007373559 ], [ 10.989593133191534, 13.387322699431195 ], [ 10.701031935273818, 13.246917832894042 ], [ 10.114814487354749, 13.277251898649467 ], [ 9.524928012743089, 12.851102199754564 ], [ 9.014933302454438, 12.826659247280418 ], [ 7.804671258178871, 13.343526923063735 ], [ 7.330746697630047, 13.098038031461215 ], [ 6.820441928747812, 13.115091254117601 ], [ 6.445426059605722, 13.492768459522722 ], [ 5.443058302440136, 13.865923977102227 ], [ 4.368343540066007, 13.747481594289411 ], [ 4.107945997747379, 13.531215725147945 ], [ 3.967282749048934, 12.956108710171577 ], [ 3.680633579125924, 12.552903347214169 ], [ 3.611180454125588, 11.660167141155966 ], [ 2.848643019226586, 12.235635891158211 ], [ 2.490163608418015, 12.233052069543589 ], [ 2.15447350424995, 11.940150051313424 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0.000000, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0.000000, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0.000000, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "brk_group": null, "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Nigeria", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 2.000000, "mapcolor9": 5.000000, "mapcolor13": 2.000000, "pop_est": 149229090.000000, "gdp_md_est": 335400.000000, "pop_year": -99.000000, "lastcensus": 2006.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99.000000, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 7.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.500287713259695, 4.771982937026849 ], [ 7.462108188515941, 4.412108262546241 ], [ 7.082596469764439, 4.464689032403228 ], [ 6.6980721370806, 4.240594183769517 ], [ 5.898172641634687, 4.262453314628985 ], [ 5.362804803090881, 4.887970689305959 ], [ 5.033574252959369, 5.611802476418234 ], [ 4.325607130560684, 6.270651149923467 ], [ 3.574180128604553, 6.258300482605719 ], [ 2.691701694356254, 6.258817246928629 ], [ 2.74906253420022, 7.870734361192888 ], [ 2.723792758809509, 8.506845404489709 ], [ 2.912308383810256, 9.137607937044322 ], [ 3.220351596702101, 9.444152533399702 ], [ 3.705438266625919, 10.063210354040208 ], [ 3.600070021182802, 10.332186184119408 ], [ 3.797112257511714, 10.734745591673105 ], [ 3.572216424177469, 11.32793935795152 ], [ 3.611180454125559, 11.660167141155968 ], [ 3.680633579125811, 12.552903347214226 ], [ 3.967282749048849, 12.956108710171575 ], [ 4.107945997747322, 13.531215725147831 ], [ 4.368343540066064, 13.747481594289326 ], [ 5.443058302440164, 13.865923977102298 ], [ 6.445426059605637, 13.492768459522678 ], [ 6.820441928747754, 13.115091254117518 ], [ 7.330746697630019, 13.098038031461201 ], [ 7.804671258178786, 13.343526923063747 ], [ 9.014933302454466, 12.82665924728043 ], [ 9.524928012742947, 12.851102199754479 ], [ 10.114814487354693, 13.277251898649411 ], [ 10.701031935273706, 13.246917832894084 ], [ 10.989593133191535, 13.38732269943111 ], [ 11.527803175511394, 13.328980007373588 ], [ 12.302071160540523, 13.037189032437524 ], [ 13.08398725754887, 13.596147162322566 ], [ 13.318701613018561, 13.556356309457826 ], [ 13.995352817448349, 12.461565253138346 ], [ 14.181336297266794, 12.483656927943116 ], [ 14.577177768622533, 12.085360826053503 ], [ 14.468192172918975, 11.904751695193411 ], [ 14.415378859116684, 11.572368882692075 ], [ 13.572949659894562, 10.798565985553566 ], [ 13.308676385153918, 10.160362046748928 ], [ 13.167599724997103, 9.640626328973411 ], [ 12.955467970438974, 9.417771714714704 ], [ 12.753671502339216, 8.717762762888995 ], [ 12.218872104550599, 8.305824082874324 ], [ 12.063946160539558, 7.799808457872302 ], [ 11.839308709366803, 7.397042344589437 ], [ 11.745774366918511, 6.981382961449754 ], [ 11.058787876030351, 6.644426784690594 ], [ 10.497375115611419, 7.055357774275564 ], [ 10.118276808318257, 7.03876963950988 ], [ 9.522705926154401, 6.453482367372117 ], [ 9.233162876023044, 6.444490668153335 ], [ 8.757532993208628, 5.479665839047911 ], [ 8.500287713259695, 4.771982937026849 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0.000000, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0.000000, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0.000000, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "brk_group": null, "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Nicaragua", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 9.000000, "pop_est": 5891199.000000, "gdp_md_est": 16790.000000, "pop_year": -99.000000, "lastcensus": 2005.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99.000000, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.712540452807303, 11.088444932494824 ], [ -86.058488328785259, 11.403438625529944 ], [ -86.525849982432959, 11.806876532432597 ], [ -86.745991583996329, 12.143961900272487 ], [ -87.16751624220116, 12.458257961471658 ], [ -87.668493415054712, 12.909909979702633 ], [ -87.557466600275617, 13.064551703336065 ], [ -87.392386237319229, 12.914018256069838 ], [ -87.316654425795491, 12.984685777228975 ], [ -87.005769009127576, 13.025794379117158 ], [ -86.880557013684367, 13.254204209847245 ], [ -86.733821784191605, 13.263092556201443 ], [ -86.75508663607971, 13.754845485890913 ], [ -86.520708177419905, 13.778487453664439 ], [ -86.312142096689925, 13.77135610600817 ], [ -86.096263800790595, 14.038187364147248 ], [ -85.80129472526859, 13.836054999237589 ], [ -85.698665330736929, 13.960078436738087 ], [ -85.514413011400251, 14.079011745657837 ], [ -85.165364549484806, 14.35436961512508 ], [ -85.148750576502962, 14.560196844943617 ], [ -85.052787441736939, 14.551541042534723 ], [ -84.924500698572402, 14.79049286545235 ], [ -84.82003679069436, 14.819586696832671 ], [ -84.649582078779616, 14.666805324761754 ], [ -84.449335903648603, 14.621614284722497 ], [ -84.228341640952408, 14.748764146376658 ], [ -83.97572140169359, 14.749435939996461 ], [ -83.628584967772923, 14.880073960830302 ], [ -83.489988776366118, 15.016267198135537 ], [ -83.147219000974133, 14.995829169164111 ], [ -83.233234422523935, 14.899866034398102 ], [ -83.284161546547594, 14.676623846897201 ], [ -83.182126430987282, 14.31070302983845 ], [ -83.412499966144452, 13.970077826386557 ], [ -83.519831916014681, 13.567699286345883 ], [ -83.552207200845544, 13.127054348193086 ], [ -83.498515387694269, 12.869292303921227 ], [ -83.473323126951982, 12.419087225794428 ], [ -83.626104499022915, 12.320850328007566 ], [ -83.719613003255063, 11.893124497927728 ], [ -83.650857510090717, 11.62903209070012 ], [ -83.855470343750397, 11.373311265503787 ], [ -83.808935716471552, 11.103043524617275 ], [ -83.655611741861577, 10.938764146361422 ], [ -83.895054490885954, 10.726839097532446 ], [ -84.19017859570485, 10.793450018756674 ], [ -84.35593075228104, 10.999225572142905 ], [ -84.673069017256267, 11.082657172078143 ], [ -84.903003302738952, 10.952303371621896 ], [ -85.561851976244199, 11.217119248901597 ], [ -85.712540452807303, 11.088444932494824 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0.000000, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0.000000, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0.000000, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "brk_group": null, "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Netherlands", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 2.000000, "mapcolor9": 2.000000, "mapcolor13": 9.000000, "pop_est": 16715999.000000, "gdp_md_est": 672000.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99.000000, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11.000000, "long_len": 11.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.074182570020923, 53.510403347378144 ], [ 6.905139601274129, 53.482162177130647 ], [ 7.092053256873896, 53.144043280644894 ], [ 6.842869500362383, 52.228440253297549 ], [ 6.589396599970826, 51.852029120483394 ], [ 5.988658074577813, 51.851615709025054 ], [ 6.15665815595878, 50.803721015010581 ], [ 5.606975945670001, 51.037298488969782 ], [ 4.973991326526914, 51.475023708698131 ], [ 4.047071160507528, 51.26725861266857 ], [ 3.314971144228537, 51.34575511331991 ], [ 3.830288527043137, 51.620544542031951 ], [ 4.705997348661185, 53.091798407597764 ], [ 6.074182570020923, 53.510403347378144 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0.000000, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0.000000, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0.000000, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "brk_group": null, "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Norway", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 3.000000, "mapcolor9": 8.000000, "mapcolor13": 12.000000, "pop_est": 4676305.000000, "gdp_md_est": 276400.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99.000000, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.165547316202918, 71.185474351680512 ], [ 31.293418409965483, 70.453787746859916 ], [ 30.005435011522792, 70.186258856884905 ], [ 31.101078728975125, 69.558080145944871 ], [ 29.399580519332886, 69.15691600206307 ], [ 28.591929559043194, 69.064776923286701 ], [ 29.015572950971972, 69.766491197377974 ], [ 27.732292107867892, 70.164193020296295 ], [ 26.179622023226301, 69.825298977326156 ], [ 25.689212680776393, 69.092113755969024 ], [ 24.735679152126721, 68.649556789821446 ], [ 23.662049594830762, 68.891247463650529 ], [ 22.356237827247412, 68.841741441514955 ], [ 21.24493615081073, 69.370443020293123 ], [ 20.645592889089585, 69.10624726020086 ], [ 20.025268995857914, 69.065138658312719 ], [ 19.878559604581255, 68.407194322372618 ], [ 17.99386844246439, 68.567391262477344 ], [ 17.729181756265348, 68.010551866316234 ], [ 16.768878614985539, 68.013936672631388 ], [ 16.108712192456835, 67.302455552836904 ], [ 15.108411492583059, 66.193866889095432 ], [ 13.555689731509091, 64.787027696381472 ], [ 13.919905226302205, 64.445420640716122 ], [ 13.57191613124877, 64.049114081469668 ], [ 12.579935336973932, 64.066218980558347 ], [ 11.930569288794231, 63.128317572676991 ], [ 11.992064243221535, 61.800362453856565 ], [ 12.631146681375242, 61.2935716823701 ], [ 12.300365838274899, 60.11793284773006 ], [ 11.468271925511175, 59.432393296946003 ], [ 11.027368605196926, 58.856149400459401 ], [ 10.356556837616097, 59.469807033925377 ], [ 8.382000359743643, 58.313288479233279 ], [ 7.048748406613299, 58.078884182357285 ], [ 5.665835402050419, 58.588155422593672 ], [ 5.308234490590735, 59.663231919993819 ], [ 4.992078077829007, 61.970998033284275 ], [ 5.912900424837886, 62.614472968182696 ], [ 8.553411085655767, 63.454008287196473 ], [ 10.527709181366788, 64.486038316497485 ], [ 12.358346795306375, 65.879725857193165 ], [ 14.761145867581604, 67.81064158799515 ], [ 16.435927361728972, 68.563205471461686 ], [ 19.184028354578516, 69.817444159617821 ], [ 21.378416375420613, 70.255169379346057 ], [ 23.023742303161583, 70.202071845166273 ], [ 24.546543409938522, 71.030496731237236 ], [ 26.370049676221811, 70.986261705195375 ], [ 28.165547316202918, 71.185474351680512 ] ] ], [ [ [ 24.72412, 77.85385 ], [ 22.49032, 77.44493 ], [ 20.72601, 77.67704 ], [ 21.41611, 77.93504 ], [ 20.8119, 78.25463 ], [ 22.88426, 78.45494 ], [ 23.28134, 78.07954 ], [ 24.72412, 77.85385 ] ] ], [ [ [ 18.25183, 79.70175 ], [ 21.54383, 78.95611 ], [ 19.02737, 78.5626 ], [ 18.47172, 77.82669 ], [ 17.59441, 77.63796 ], [ 17.1182, 76.80941 ], [ 15.91315, 76.77045 ], [ 13.76259, 77.38035 ], [ 14.66956, 77.73565 ], [ 13.1706, 78.02493 ], [ 11.22231, 78.8693 ], [ 10.44453, 79.65239 ], [ 13.17077, 80.01046 ], [ 13.71852, 79.66039 ], [ 15.14282, 79.67431 ], [ 15.52255, 80.01608 ], [ 16.99085, 80.05086 ], [ 18.25183, 79.70175 ] ] ], [ [ [ 25.447625359811894, 80.407340399894508 ], [ 27.407505730913499, 80.056405748200461 ], [ 25.924650506298178, 79.517833970854554 ], [ 23.02446577321362, 79.400011705229105 ], [ 20.075188429451885, 79.566823228667261 ], [ 19.897266473070914, 79.842361965647513 ], [ 18.462263624757924, 79.859880276194417 ], [ 17.368015170977458, 80.318896186027018 ], [ 20.455992059010697, 80.59815562613224 ], [ 21.907944777115404, 80.357679348462085 ], [ 22.919252557067438, 80.657144273593502 ], [ 25.447625359811894, 80.407340399894508 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0.000000, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0.000000, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0.000000, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "brk_group": null, "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Nepal", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 3.000000, "mapcolor13": 12.000000, "pop_est": 28563377.000000, "gdp_md_est": 31080.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99.000000, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.12044070836987, 27.876541652939594 ], [ 88.043132765661227, 27.445818589786825 ], [ 88.174804315140918, 26.810405178325951 ], [ 88.06023766474982, 26.414615383402491 ], [ 87.227471958366294, 26.397898057556077 ], [ 86.024392938179176, 26.630984605408571 ], [ 85.251778598983378, 26.726198431906344 ], [ 84.675017938173795, 27.234901231387536 ], [ 83.304248895199549, 27.364505723575562 ], [ 81.999987420584972, 27.925479234319994 ], [ 81.057202589852025, 28.416095282499043 ], [ 80.088424513676273, 28.79447011974014 ], [ 80.476721225917402, 29.729865220655341 ], [ 81.111256138029319, 30.183480943313402 ], [ 81.525804477874743, 30.422716986608631 ], [ 82.327512648450877, 30.115268052688137 ], [ 83.33711510613719, 29.463731594352197 ], [ 83.898992954446726, 29.320226141877658 ], [ 84.23457970575015, 28.839893703724698 ], [ 85.011638218123039, 28.642773952747344 ], [ 85.823319940131512, 28.203575954698707 ], [ 86.954517043000607, 27.974261786403517 ], [ 88.12044070836987, 27.876541652939594 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0.000000, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0.000000, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0.000000, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "brk_group": null, "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "New Zealand", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 3.000000, "mapcolor9": 4.000000, "mapcolor13": 4.000000, "pop_est": 4213418.000000, "gdp_md_est": 116700.000000, "pop_year": -99.000000, "lastcensus": 2006.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99.000000, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11.000000, "long_len": 11.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.02037479074076, -40.919052422856424 ], [ 173.24723432850206, -41.331998793300784 ], [ 173.958405389702904, -40.926700534835618 ], [ 174.247586704808128, -41.34915536882167 ], [ 174.248516880589506, -41.770008233406756 ], [ 173.876446568087914, -42.233184096038826 ], [ 173.222739699595678, -42.970038344088564 ], [ 172.711246372770773, -43.372287693048506 ], [ 173.080112746470235, -43.853343601253584 ], [ 172.308583612352521, -43.865694268571346 ], [ 171.45292524646365, -44.242518812843727 ], [ 171.185137974327262, -44.897104180684892 ], [ 170.616697219116617, -45.908928724959708 ], [ 169.831422154009289, -46.355774834987599 ], [ 169.332331170934282, -46.641235446967855 ], [ 168.411353794628582, -46.619944756863589 ], [ 167.763744745146852, -46.290197442409209 ], [ 166.676886021184231, -46.21991749449225 ], [ 166.509144321964726, -45.852704766626218 ], [ 167.046424188503266, -45.110941257508671 ], [ 168.303763462596891, -44.123973077166127 ], [ 168.949408807651565, -43.935819187191427 ], [ 169.667814569373178, -43.555325616226341 ], [ 170.52491987536618, -43.03168832781283 ], [ 171.125089960004033, -42.512753594737788 ], [ 171.569713983443222, -41.767424411792135 ], [ 171.948708937871942, -41.514416599291152 ], [ 172.097227004278778, -40.956104424809681 ], [ 172.798579543344005, -40.493962090823473 ], [ 173.02037479074076, -40.919052422856424 ] ] ], [ [ [ 174.612008905330555, -36.156397393540544 ], [ 175.336615838927202, -37.20909799575827 ], [ 175.357596470437528, -36.526193943021127 ], [ 175.808886753642497, -36.798942152657688 ], [ 175.958490025127531, -37.55538176854607 ], [ 176.763195428776584, -37.881253350578703 ], [ 177.438813104560523, -37.961248467766495 ], [ 178.010354445708714, -37.579824721020131 ], [ 178.517093540762829, -37.695373223624799 ], [ 178.274731073313859, -38.582812595373099 ], [ 177.97046023997936, -39.166342868812976 ], [ 177.206992629299151, -39.145775648760846 ], [ 176.939980503647035, -39.449736423501577 ], [ 177.032946405340141, -39.879942722331478 ], [ 176.885823602605257, -40.065977878582174 ], [ 176.508017206119376, -40.604808038089587 ], [ 176.012440220440311, -41.289624118821507 ], [ 175.239567499082995, -41.688307793953243 ], [ 175.067898391009436, -41.425894870775082 ], [ 174.650972935278475, -41.281820977545451 ], [ 175.227630243223672, -40.459235528323404 ], [ 174.900156691789988, -39.90893320084723 ], [ 173.824046665744021, -39.508854262043513 ], [ 173.852261997775344, -39.146602471677468 ], [ 174.574801874080407, -38.797683200842755 ], [ 174.743473749081062, -38.027807712558385 ], [ 174.697016636450627, -37.381128838857961 ], [ 174.292028436579216, -36.711092217761447 ], [ 174.319003534235577, -36.534823907213891 ], [ 173.840996535535822, -36.121980889634116 ], [ 173.054171177459608, -35.237125339500338 ], [ 172.636005487353742, -34.529106540669389 ], [ 173.007042271209485, -34.450661716450341 ], [ 173.551298456107503, -35.006183363587965 ], [ 174.329390497126298, -35.265495700828623 ], [ 174.612008905330555, -36.156397393540544 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0.000000, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0.000000, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0.000000, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "brk_group": null, "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Oman", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 6.000000, "pop_est": 3418085.000000, "gdp_md_est": 66980.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99.000000, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4.000000, "long_len": 4.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.861141391846587, 21.114034532144302 ], [ 58.487985874266968, 20.428985907467109 ], [ 58.034318475176605, 20.481437486243351 ], [ 57.826372511634105, 20.243002427648634 ], [ 57.665762160070955, 19.736004950433113 ], [ 57.788700392493382, 19.06757029873765 ], [ 57.694390903560674, 18.944709580963803 ], [ 57.234263950433814, 18.947991034414258 ], [ 56.609650913321985, 18.574267076079479 ], [ 56.512189162019496, 18.087113348863937 ], [ 56.283520949128018, 17.876066799383949 ], [ 55.661491733630697, 17.884128322821539 ], [ 55.269939406155203, 17.632309068263197 ], [ 55.274900343655105, 17.228354397037663 ], [ 54.791002231674128, 16.950696926333364 ], [ 54.239252964093765, 17.044980577049984 ], [ 53.570508253804604, 16.707662665264678 ], [ 53.108572625547509, 16.651051133688981 ], [ 52.78218427919208, 17.349742336491232 ], [ 52.000009800022241, 19.000003363516072 ], [ 54.999981723862419, 19.999994004796122 ], [ 55.666659376859883, 22.000001125572311 ], [ 55.208341098863201, 22.708329982997014 ], [ 55.234489373602884, 23.110992743415352 ], [ 55.525841098864504, 23.524869289640918 ], [ 55.528631626208295, 23.933604030853502 ], [ 55.981213820220518, 24.130542914317857 ], [ 55.804118686756254, 24.269604193615294 ], [ 55.886232537668064, 24.920830593357493 ], [ 56.396847365143998, 24.924732163995515 ], [ 56.845140415276063, 24.241673081961494 ], [ 57.40345258975745, 23.878594468678841 ], [ 58.136947869708337, 23.747930609628838 ], [ 58.729211460205448, 23.565667832935418 ], [ 59.18050174341036, 22.99239533130546 ], [ 59.45009769067704, 22.6602709009656 ], [ 59.808060337162857, 22.533611965418203 ], [ 59.806148309168094, 22.310524807214193 ], [ 59.442191196536413, 21.714540513592084 ], [ 59.282407667889885, 21.433885809814882 ], [ 58.861141391846587, 21.114034532144302 ] ] ], [ [ [ 56.391421339753407, 25.895990708921261 ], [ 56.261041701080927, 25.714606431576755 ], [ 56.070820753814559, 26.055464178973949 ], [ 56.362017449779358, 26.395934353128951 ], [ 56.485679152253823, 26.309117946878672 ], [ 56.391421339753407, 25.895990708921261 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0.000000, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0.000000, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0.000000, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "brk_group": null, "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Pakistan", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 3.000000, "mapcolor13": 11.000000, "pop_est": 176242949.000000, "gdp_md_est": 427300.000000, "pop_year": -99.000000, "lastcensus": 1998.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99.000000, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.158027785140916, 37.133030910789117 ], [ 75.89689741405013, 36.666806138651836 ], [ 76.192848341785691, 35.898403428687828 ], [ 77.837450799474567, 35.494009507787766 ], [ 76.871721632804025, 34.653544012992739 ], [ 75.757060988268336, 34.504922593721318 ], [ 74.240202671204969, 34.748887030571254 ], [ 73.749948358051967, 34.317698879527853 ], [ 74.104293654277342, 33.441473293586853 ], [ 74.451559279278712, 32.764899603805503 ], [ 75.258641798813215, 32.271105455040498 ], [ 74.405928989565012, 31.692639471965279 ], [ 74.421380242820277, 30.979814764931177 ], [ 73.450638462217427, 29.97641347911987 ], [ 72.823751662084703, 28.961591701772054 ], [ 71.777665643200322, 27.913180243434525 ], [ 70.616496209601934, 27.989196275335868 ], [ 69.514392938113133, 26.940965684511372 ], [ 70.168926629522019, 26.491871649678842 ], [ 70.282873162725593, 25.72222870533983 ], [ 70.844699334602836, 25.215102037043518 ], [ 71.043240187468228, 24.3565239527302 ], [ 68.842599318318776, 24.359133612560939 ], [ 68.176645135373406, 23.691965033456711 ], [ 67.443666619745471, 23.944843654876991 ], [ 67.145441928989072, 24.663611151624647 ], [ 66.372827589793275, 25.425140896093851 ], [ 64.530407749291129, 25.237038682551429 ], [ 62.905700718034609, 25.218409328710209 ], [ 61.49736290878419, 25.078237006118499 ], [ 61.87418745305655, 26.239974880472104 ], [ 63.316631707619592, 26.756532497661667 ], [ 63.233897739520302, 27.217047024030709 ], [ 62.755425652929858, 27.378923448184988 ], [ 62.727830438085988, 28.25964488373539 ], [ 61.771868117118629, 28.699333807890799 ], [ 61.36930870956494, 29.303276272085924 ], [ 60.874248488208792, 29.829238999952608 ], [ 62.549856805272782, 29.318572496044311 ], [ 63.550260858011171, 29.468330796826166 ], [ 64.148002150331251, 29.340819200145972 ], [ 64.350418735618518, 29.560030625928093 ], [ 65.046862013616106, 29.472180691031905 ], [ 66.346472609324422, 29.887943427036177 ], [ 66.381457553986024, 30.738899237586452 ], [ 66.938891229118468, 31.304911200479353 ], [ 67.683393589147471, 31.303154201781421 ], [ 67.792689243444784, 31.582930406209631 ], [ 68.556932000609322, 31.713310044882018 ], [ 68.926676873657669, 31.620189113892067 ], [ 69.317764113242561, 31.901412258424443 ], [ 69.262522007122556, 32.5019440780883 ], [ 69.687147251264861, 33.105498969041236 ], [ 70.323594191371598, 33.358532619758392 ], [ 69.930543247359594, 34.02012014417511 ], [ 70.881803012988399, 33.98885590263852 ], [ 71.156773309213463, 34.348911444632151 ], [ 71.115018751921639, 34.733125718722235 ], [ 71.613076206350712, 35.153203436822864 ], [ 71.498767938121091, 35.650563259416003 ], [ 71.26234826038575, 36.074387518857804 ], [ 71.846291945283923, 36.509942328429858 ], [ 72.920024855444467, 36.720007025696319 ], [ 74.067551710917826, 36.836175645488453 ], [ 74.575892775372978, 37.020841376283457 ], [ 75.158027785140916, 37.133030910789117 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0.000000, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0.000000, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0.000000, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "brk_group": null, "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Panama", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 4.000000, "mapcolor9": 6.000000, "mapcolor13": 3.000000, "pop_est": 3360474.000000, "gdp_md_est": 38830.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99.000000, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.881571417945253, 7.223771267114785 ], [ -78.214936082660117, 7.512254950384161 ], [ -78.429160732726075, 8.052041123888927 ], [ -78.182095709938636, 8.319182440621773 ], [ -78.435465257465694, 8.387705389840789 ], [ -78.622120530903942, 8.718124497915028 ], [ -79.120307176413746, 8.996092027213024 ], [ -79.55787736684519, 8.932374986197146 ], [ -79.760578172510051, 8.584515082224399 ], [ -80.164481167303336, 8.333315944853595 ], [ -80.382659064439622, 8.298408514840432 ], [ -80.4806892564973, 8.090307522001069 ], [ -80.003689948227162, 7.547524115423372 ], [ -80.276670701808996, 7.419754136581716 ], [ -80.42115800649708, 7.271571966984765 ], [ -80.886400926420805, 7.220541490096537 ], [ -81.059542812814726, 7.817921047390597 ], [ -81.189715745757951, 7.64790558515034 ], [ -81.51951473664468, 7.706610012233909 ], [ -81.721311204744467, 8.108962714058435 ], [ -82.131441209628917, 8.175392767769637 ], [ -82.390934414382571, 8.292362372262289 ], [ -82.82008134635042, 8.290863755725823 ], [ -82.850958014644817, 8.073822740099956 ], [ -82.965783047197363, 8.225027980985985 ], [ -82.913176439124214, 8.42351715741907 ], [ -82.829770677405165, 8.62629547773237 ], [ -82.868657192704774, 8.807266343618522 ], [ -82.719183112300527, 8.925708726431495 ], [ -82.927154914059159, 9.074330145702916 ], [ -82.932890998043575, 9.476812038608173 ], [ -82.546196255203483, 9.566134751824677 ], [ -82.187122565423408, 9.207448635286781 ], [ -82.207586432610967, 8.9955752628901 ], [ -81.808566860669288, 8.950616766796173 ], [ -81.714154018872037, 9.031955471223583 ], [ -81.439287075511544, 8.786234035675719 ], [ -80.947301601876759, 8.858503526235907 ], [ -80.521901211250082, 9.111072089062432 ], [ -79.914599778955989, 9.312765204297619 ], [ -79.573302781884308, 9.611610012241528 ], [ -79.021191779277927, 9.552931423374105 ], [ -79.058450486960368, 9.454565334506526 ], [ -78.500887620747193, 9.420458889193881 ], [ -78.055927700498017, 9.247730414258299 ], [ -77.729513515926413, 8.946844387238869 ], [ -77.353360765273862, 8.67050466555807 ], [ -77.474722866511328, 8.524286200388218 ], [ -77.242566494440084, 7.935278225125444 ], [ -77.431107957656991, 7.638061224798734 ], [ -77.753413865861404, 7.709839789252143 ], [ -77.881571417945253, 7.223771267114785 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0.000000, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0.000000, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0.000000, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "brk_group": null, "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Peru", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 4.000000, "mapcolor9": 4.000000, "mapcolor13": 11.000000, "pop_est": 29546963.000000, "gdp_md_est": 247300.000000, "pop_year": -99.000000, "lastcensus": 2007.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99.000000, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4.000000, "long_len": 4.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.59042375352405, -17.580011895419332 ], [ -69.858443569605868, -18.092693780187012 ], [ -70.372572394477714, -18.347975355708869 ], [ -71.375250210236928, -17.773798516513857 ], [ -71.462040778271131, -17.363487644116383 ], [ -73.444529588500416, -16.359362888252996 ], [ -75.237882656541444, -15.265682875227782 ], [ -76.009205084929945, -14.649286390850321 ], [ -76.423469204397747, -13.823186944232432 ], [ -76.25924150257417, -13.535039157772943 ], [ -77.106192389621839, -12.22271615972082 ], [ -78.092152879534638, -10.377712497604065 ], [ -79.036953091126946, -8.386567884965892 ], [ -79.445920376284846, -7.93083342858386 ], [ -79.760578172510051, -7.194340915560084 ], [ -80.537481655586078, -6.541667575713717 ], [ -81.249996304026425, -6.136834405139183 ], [ -80.926346808582437, -5.690556735866565 ], [ -81.410942552399462, -4.736764825055459 ], [ -81.099669562489368, -4.036394138203697 ], [ -80.302560594387216, -3.404856459164713 ], [ -80.184014858709673, -3.821161797708044 ], [ -80.469294603176948, -4.059286797708999 ], [ -80.442241990872162, -4.425724379090674 ], [ -80.02890804718561, -4.346090996928893 ], [ -79.624979214176179, -4.454198093283495 ], [ -79.205289069317729, -4.959128513207389 ], [ -78.639897223612337, -4.547784112164074 ], [ -78.450683966775642, -3.873096612161376 ], [ -77.837904832658609, -3.003020521663103 ], [ -76.635394253226721, -2.608677666843818 ], [ -75.544995693652041, -1.56160979574588 ], [ -75.233722703741947, -0.911416924649529 ], [ -75.373223232713855, -0.15203175212045 ], [ -75.106624518520078, -0.05720549886486 ], [ -74.441600511355972, -0.530820000819887 ], [ -74.122395189089062, -1.002832533373848 ], [ -73.6595035468346, -1.260491224781134 ], [ -73.070392218707241, -2.308954359550953 ], [ -72.325786505813653, -2.434218031426454 ], [ -71.774760708285399, -2.169789727388938 ], [ -71.413645799429787, -2.342802422702128 ], [ -70.813475714791963, -2.256864515800743 ], [ -70.047708502874855, -2.725156345229699 ], [ -70.692682054309714, -3.742872002785859 ], [ -70.394043952094989, -3.766591485207825 ], [ -69.893635219996625, -4.298186944194327 ], [ -70.794768846302304, -4.251264743673303 ], [ -70.928843349883579, -4.401591485210368 ], [ -71.748405727816547, -4.593982842633011 ], [ -72.891927659787257, -5.274561455916981 ], [ -72.9645072089412, -5.741251315944893 ], [ -73.21971126981461, -6.089188734566078 ], [ -73.120027431923603, -6.629930922068239 ], [ -73.724486660441642, -6.91859547285064 ], [ -73.723401455363501, -7.340998630404414 ], [ -73.987235480429661, -7.523829847853065 ], [ -73.571059332967067, -8.424446709835834 ], [ -73.015382656532552, -9.032833347208062 ], [ -73.226713426390162, -9.462212823121234 ], [ -72.563033006465645, -9.520193780152717 ], [ -72.18489071316985, -10.053597914269432 ], [ -71.302412278921537, -10.079436130415374 ], [ -70.481893886991173, -9.490118096558845 ], [ -70.548685675728407, -11.009146823778465 ], [ -70.093752204046893, -11.123971856331012 ], [ -69.529678107364958, -10.951734307502194 ], [ -68.665079718689626, -12.561300144097173 ], [ -68.88007951523997, -12.899729099176653 ], [ -68.92922380234954, -13.602683607643009 ], [ -68.948886684836594, -14.453639418193283 ], [ -69.339534674747014, -14.953195489158832 ], [ -69.160346645774951, -15.323973890853019 ], [ -69.389764166934711, -15.660129082911652 ], [ -68.959635382753305, -16.50069793057127 ], [ -69.59042375352405, -17.580011895419332 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0.000000, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0.000000, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0.000000, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "brk_group": null, "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Philippines", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 2.000000, "mapcolor9": 2.000000, "mapcolor13": 8.000000, "pop_est": 97976603.000000, "gdp_md_est": 317500.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99.000000, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11.000000, "long_len": 11.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.37681359263749, 8.414706325713354 ], [ 126.478512811387901, 7.750354112168978 ], [ 126.53742394420064, 7.189380601424574 ], [ 126.196772902532558, 6.27429433840004 ], [ 125.831420526229095, 7.293715318221857 ], [ 125.363852166852297, 6.786485297060992 ], [ 125.683160841983721, 6.049656887227258 ], [ 125.396511672060655, 5.58100332277229 ], [ 124.21978763234236, 6.161355495626182 ], [ 123.938719517106932, 6.885135606306122 ], [ 124.243662144061346, 7.360610459823661 ], [ 123.61021243702757, 7.833527329942754 ], [ 123.296071405125218, 7.418875637232787 ], [ 122.825505812675402, 7.457374579290217 ], [ 122.085499302255784, 6.899424139834849 ], [ 121.919928013192617, 7.192119452336073 ], [ 122.31235884001714, 8.034962063016508 ], [ 122.942397902519673, 8.316236883981176 ], [ 123.487687616063539, 8.693009751821194 ], [ 123.841154412939858, 8.240324204944386 ], [ 124.601469761250229, 8.514157619659017 ], [ 124.764612257995651, 8.96040945071546 ], [ 125.471390822451582, 8.986996975129642 ], [ 125.412117954612796, 9.760334784377548 ], [ 126.222714471543185, 9.286074327018852 ], [ 126.306636997585116, 8.782487494334575 ], [ 126.37681359263749, 8.414706325713354 ] ] ], [ [ [ 123.982437778825812, 10.278778591345812 ], [ 123.623183221532798, 9.950090643753299 ], [ 123.309920688979361, 9.318268744336677 ], [ 122.99588300994165, 9.0221886255204 ], [ 122.380054966319477, 9.713360907424203 ], [ 122.5860889018671, 9.981044826696106 ], [ 122.837081333508735, 10.261156927934238 ], [ 122.947410516451924, 10.881868394408031 ], [ 123.498849725438475, 10.940624497923949 ], [ 123.33777428598475, 10.267383938025446 ], [ 124.077935825701246, 11.23272553145371 ], [ 123.982437778825812, 10.278778591345812 ] ] ], [ [ [ 118.504580926590364, 9.316382554558089 ], [ 117.174274530100689, 8.367499904814665 ], [ 117.664477166821399, 9.066888739452935 ], [ 118.386913690261764, 9.684499619989225 ], [ 118.987342157061079, 10.376292019080509 ], [ 119.511496209797571, 11.369668077027214 ], [ 119.689676548339918, 10.554291490109875 ], [ 119.029458449379007, 10.003653265823871 ], [ 118.504580926590364, 9.316382554558089 ] ] ], [ [ [ 121.883547804859148, 11.89175507247198 ], [ 122.483821242361472, 11.582187404827508 ], [ 123.120216506035973, 11.58366018314787 ], [ 123.100837843926485, 11.16593374271649 ], [ 122.637713657726721, 10.741308498574227 ], [ 122.002610304859587, 10.441016750526089 ], [ 121.967366978036551, 10.905691229694625 ], [ 122.038370396005547, 11.41584096928004 ], [ 121.883547804859148, 11.89175507247198 ] ] ], [ [ [ 125.502551711123516, 12.162694606978349 ], [ 125.78346479706218, 11.046121934447768 ], [ 125.011883986512288, 11.31145457605038 ], [ 125.032761265158143, 10.975816148314706 ], [ 125.277449172060273, 10.358722032101312 ], [ 124.801819289245742, 10.134678859899893 ], [ 124.760168084818503, 10.837995103392302 ], [ 124.459101190286077, 10.889929917845635 ], [ 124.302521600441736, 11.495370998577229 ], [ 124.891012811381614, 11.415582587118593 ], [ 124.87799035044398, 11.794189968304991 ], [ 124.266761509295719, 12.557760931849685 ], [ 125.227116327007849, 12.535720933477194 ], [ 125.502551711123516, 12.162694606978349 ] ] ], [ [ [ 121.52739383350351, 13.069590155484519 ], [ 121.262190382981572, 12.205560207564403 ], [ 120.833896112146562, 12.704496161342419 ], [ 120.323436313967505, 13.46641347905387 ], [ 121.180128208502168, 13.429697373910443 ], [ 121.52739383350351, 13.069590155484519 ] ] ], [ [ [ 121.321308221523594, 18.504064642811016 ], [ 121.937601353036399, 18.218552354398383 ], [ 122.246006300954292, 18.478949896717097 ], [ 122.336956821787993, 18.224882717354177 ], [ 122.174279412933203, 17.810282701076375 ], [ 122.515653924653378, 17.093504746971973 ], [ 122.252310825693911, 16.262444362854126 ], [ 121.662786086108298, 15.931017564350128 ], [ 121.50506961475341, 15.124813544164624 ], [ 121.728828566577278, 14.328376369682246 ], [ 122.258925409027341, 14.218202216035976 ], [ 122.701275669445664, 14.336541245984421 ], [ 123.950295037940265, 13.78213064214107 ], [ 123.855107049658642, 13.237771104378467 ], [ 124.181288690284902, 12.997527370653472 ], [ 124.077419061378265, 12.536676947474575 ], [ 123.298035109552274, 13.027525539598983 ], [ 122.928651971529945, 13.552919826710408 ], [ 122.671355015148691, 13.185836289925135 ], [ 122.034649692880549, 13.784481919810347 ], [ 121.126384718918615, 13.636687323455561 ], [ 120.628637323083325, 13.857655747935652 ], [ 120.679383579593861, 14.271015529838323 ], [ 120.991819289230563, 14.525392767795083 ], [ 120.693336216312701, 14.756670640517285 ], [ 120.564145135583004, 14.396279201713824 ], [ 120.070428501466409, 14.970869452367097 ], [ 119.92092858284613, 15.40634674729074 ], [ 119.883773228028275, 16.363704331929966 ], [ 120.28648766487882, 16.034628811095331 ], [ 120.390047235191759, 17.599081122299509 ], [ 120.715867140791914, 18.505227362537539 ], [ 121.321308221523594, 18.504064642811016 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0.000000, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1.000000, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0.000000, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "brk_group": null, "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Papua New Guinea", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 2.000000, "mapcolor9": 3.000000, "mapcolor13": 1.000000, "pop_est": 6057263.000000, "gdp_md_est": 13210.000000, "pop_year": -99.000000, "lastcensus": 2000.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99.000000, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16.000000, "long_len": 16.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 155.88002566957843, -6.81999684003776 ], [ 155.599991082988794, -6.919990736522493 ], [ 155.166994256815116, -6.535931491729301 ], [ 154.729191522438356, -5.900828138862209 ], [ 154.514114211239672, -5.139117526880014 ], [ 154.652503696917364, -5.04243092206184 ], [ 154.759990676084414, -5.339983819198494 ], [ 155.062917922179366, -5.566791680527487 ], [ 155.547746209941721, -6.200654799019659 ], [ 156.019965448224781, -6.540013929880388 ], [ 155.88002566957843, -6.81999684003776 ] ] ], [ [ [ 151.98279585185449, -5.478063246282346 ], [ 151.459106887008687, -5.560280450058741 ], [ 151.301390415653913, -5.840728448106702 ], [ 150.754447056276689, -6.083762709175389 ], [ 150.241196730753842, -6.317753594592986 ], [ 149.709963006793345, -6.316513360218053 ], [ 148.89006473205049, -6.026040134305433 ], [ 148.318936802360753, -5.74714242922613 ], [ 148.401825799756892, -5.437755629094724 ], [ 149.298411900020852, -5.583741550319218 ], [ 149.845561965127246, -5.505503431829339 ], [ 149.996250441690307, -5.026101169457675 ], [ 150.139755894164949, -5.001348158389789 ], [ 150.236907586873514, -5.532220147324281 ], [ 150.807467075808091, -5.455842380396888 ], [ 151.089672072554009, -5.113692722192368 ], [ 151.647880894170868, -4.757073662946169 ], [ 151.537861769821546, -4.16780730552189 ], [ 152.136791620084381, -4.14879037843852 ], [ 152.338743117481016, -4.312966403829762 ], [ 152.318692661751783, -4.86766122805075 ], [ 151.98279585185449, -5.478063246282346 ] ] ], [ [ [ 147.191873814074967, -7.38802418378998 ], [ 148.084635858349401, -8.044108168167611 ], [ 148.734105259393601, -9.104663588093757 ], [ 149.306835158484461, -9.071435642130069 ], [ 149.266630894161352, -9.514406019736029 ], [ 150.038728469034339, -9.684318129111702 ], [ 149.73879845601229, -9.872937106977005 ], [ 150.801627638959161, -10.293686618697421 ], [ 150.690574985963877, -10.582712904505868 ], [ 150.028393182575854, -10.652476088099931 ], [ 149.782310012002, -10.393267103723943 ], [ 148.923137648717244, -10.280922539921363 ], [ 147.913018426708021, -10.130440769087471 ], [ 147.135443150012264, -9.492443536012019 ], [ 146.567880894150647, -8.942554619994155 ], [ 146.048481073184945, -8.06741423913131 ], [ 144.744167922138018, -7.630128269077474 ], [ 143.89708784400969, -7.915330498896282 ], [ 143.286375767184296, -8.245491224809058 ], [ 143.413913202080693, -8.983068942910947 ], [ 142.628431431244252, -9.326820570516503 ], [ 142.068258905200224, -9.159595635620036 ], [ 141.033851760013903, -9.117892754760419 ], [ 141.017056919519035, -5.859021905138022 ], [ 141.000210402591875, -2.600151055515624 ], [ 142.7352466167915, -3.289152927263217 ], [ 144.583970982033264, -3.861417738463402 ], [ 145.273179559509998, -4.373737888205028 ], [ 145.829786411725678, -4.876497897972683 ], [ 145.981921828392984, -5.465609226100014 ], [ 147.648073358347602, -6.083659356310804 ], [ 147.891107619416204, -6.614014580922316 ], [ 146.97090538959489, -6.721656589386257 ], [ 147.191873814074967, -7.38802418378998 ] ] ], [ [ [ 153.140037876598768, -4.499983412294114 ], [ 152.827292108368312, -4.766427097190999 ], [ 152.638673130503008, -4.176127211120928 ], [ 152.406025832324957, -3.789742526874562 ], [ 151.953236932583565, -3.462062269711822 ], [ 151.384279413050052, -3.035421644710112 ], [ 150.662049595338857, -2.741486097833956 ], [ 150.939965448204561, -2.500002129734028 ], [ 151.479984165654542, -2.779985039891386 ], [ 151.820015090135115, -2.999971612157907 ], [ 152.239989455371102, -3.240008640153661 ], [ 152.640016717742554, -3.659983005389648 ], [ 153.01999352438466, -3.980015150573294 ], [ 153.140037876598768, -4.499983412294114 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0.000000, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0.000000, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0.000000, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "brk_group": null, "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Poland", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 7.000000, "mapcolor9": 1.000000, "mapcolor13": 2.000000, "pop_est": 38482919.000000, "gdp_md_est": 667900.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99.000000, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.016995883858669, 51.10667409932158 ], [ 14.607098422919535, 51.745188096719971 ], [ 14.685026482815687, 52.089947414755201 ], [ 14.437599725002201, 52.62485016540839 ], [ 14.074521111719491, 52.981262518925433 ], [ 14.353315463934138, 53.248171291712971 ], [ 14.119686313542587, 53.75702912049104 ], [ 14.802900424873458, 54.050706285205749 ], [ 16.363477003655731, 54.513158677785725 ], [ 17.622831658608675, 54.851535956432912 ], [ 18.620858595461641, 54.682605699270781 ], [ 18.696254510175464, 54.43871877706929 ], [ 19.660640089606403, 54.426083889373928 ], [ 20.892244500418627, 54.312524929412533 ], [ 22.731098667092652, 54.327536932993326 ], [ 23.243987257589509, 54.220566718149144 ], [ 23.484127638449849, 53.912497667041137 ], [ 23.527535841575002, 53.470121568406555 ], [ 23.804934930117781, 53.089731350306074 ], [ 23.799198846133379, 52.691099351606567 ], [ 23.199493849386187, 52.486977444053672 ], [ 23.508002150168693, 52.023646552124731 ], [ 23.527070753684374, 51.57845408793024 ], [ 24.029985792748903, 50.705406602575181 ], [ 23.922757195743262, 50.424881089878753 ], [ 23.426508416444392, 50.308505764357456 ], [ 22.518450148211603, 49.476773586619743 ], [ 22.776418898212626, 49.027395331409622 ], [ 22.558137648211755, 49.085738023467144 ], [ 21.607808058364213, 49.470107326854091 ], [ 20.887955356538413, 49.32877228453583 ], [ 20.415839471119853, 49.431453355499769 ], [ 19.825022820726872, 49.217125352569226 ], [ 19.320712517990472, 49.571574001659194 ], [ 18.909574822676319, 49.435845852244576 ], [ 18.853144158613617, 49.496229763377642 ], [ 18.392913852622172, 49.988628648470751 ], [ 17.649445021238989, 50.049038397819956 ], [ 17.554567091551121, 50.362145901076417 ], [ 16.868769158605659, 50.47397370055603 ], [ 16.719475945714436, 50.215746568393541 ], [ 16.176253289462267, 50.422607326857907 ], [ 16.238626743238569, 50.697732652379841 ], [ 15.490972120839729, 50.784729926143207 ], [ 15.016995883858669, 51.10667409932158 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0.000000, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0.000000, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0.000000, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "brk_group": null, "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "formal_fr": null, "note_adm0": "Commonwealth of U.S.A.", "note_brk": null, "name_sort": "Puerto Rico", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 5.000000, "mapcolor9": 1.000000, "mapcolor13": 1.000000, "pop_est": 3971020.000000, "gdp_md_est": 70230.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99.000000, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11.000000, "long_len": 11.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": -99.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.282434455008215, 18.514761664295364 ], [ -65.7713028632093, 18.426679185453878 ], [ -65.591003790942949, 18.228034979723915 ], [ -65.847163865813769, 17.975905666571862 ], [ -66.599934455009489, 17.981822618069273 ], [ -67.184162360285271, 17.946553453030077 ], [ -67.242427537694354, 18.374460150622937 ], [ -67.10067908391774, 18.520601101144351 ], [ -66.282434455008215, 18.514761664295364 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0.000000, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0.000000, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0.000000, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "brk_group": null, "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Korea, Dem. Rep.", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 5.000000, "mapcolor9": 3.000000, "mapcolor13": 9.000000, "pop_est": 22665345.000000, "gdp_md_est": 40000.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99.000000, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15.000000, "long_len": 15.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.640015903852429, 42.395009467125277 ], [ 130.78000735893113, 42.22000722916885 ], [ 130.400030552289024, 42.280003567059708 ], [ 129.965948521037262, 41.94136790625106 ], [ 129.667362095254816, 41.601104437825228 ], [ 129.705189243692473, 40.882827867184332 ], [ 129.188114862179987, 40.661807766271991 ], [ 129.010399611528214, 40.485436102859815 ], [ 128.63336836152672, 40.189846910150308 ], [ 127.96741417858135, 40.025412502597561 ], [ 127.533435500194173, 39.756850083976701 ], [ 127.502119582225305, 39.323930772451533 ], [ 127.385434198110275, 39.213472398427655 ], [ 127.783342726757724, 39.050898342437421 ], [ 128.349716424676615, 38.61224294692785 ], [ 128.205745884311455, 38.370397243801889 ], [ 127.780035435091008, 38.304535630845891 ], [ 127.07330854706737, 38.2561148137884 ], [ 126.683719924018931, 37.804772854151182 ], [ 126.237338901881756, 37.840377916000278 ], [ 126.174758742376241, 37.74968577732804 ], [ 125.689103631697208, 37.940010077459021 ], [ 125.568439162295704, 37.752088731429623 ], [ 125.275330438336198, 37.669070542952724 ], [ 125.240087111513162, 37.857224432927438 ], [ 124.981033156433966, 37.94882090916478 ], [ 124.71216067921938, 38.10834605564979 ], [ 124.985994093933982, 38.54847422947968 ], [ 125.221948683778706, 38.665857245430672 ], [ 125.132858514507518, 38.848559271798592 ], [ 125.386589797060594, 39.387957872061165 ], [ 125.321115757346817, 39.55138458918421 ], [ 124.737482131042398, 39.660344346671621 ], [ 124.265624627785314, 39.928493353834156 ], [ 125.079941847840644, 40.569823716792449 ], [ 126.18204511932943, 41.107336127276369 ], [ 126.869083286649868, 41.81656932226619 ], [ 127.343782993683021, 41.503151760415967 ], [ 128.208433058790661, 41.466771552082491 ], [ 128.05221520397231, 41.994284572917948 ], [ 129.596668735879518, 42.424981797854556 ], [ 129.994267205933227, 42.985386867843786 ], [ 130.640015903852429, 42.395009467125277 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0.000000, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1.000000, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0.000000, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "brk_group": null, "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Portugal", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 7.000000, "mapcolor9": 1.000000, "mapcolor13": 4.000000, "pop_est": 10707924.000000, "gdp_md_est": 208627.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": 0.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99.000000, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.034817674180246, 41.880570583659676 ], [ -8.67194576662672, 42.134689439454959 ], [ -8.263856980817792, 42.28046865495034 ], [ -8.013174607769912, 41.790886135417125 ], [ -7.422512986673795, 41.792074693359837 ], [ -7.251308966490824, 41.918346055665047 ], [ -6.668605515967656, 41.883386949219584 ], [ -6.389087693700915, 41.381815497394655 ], [ -6.851126674822552, 41.111082668617527 ], [ -6.864019944679385, 40.330871893874829 ], [ -7.026413133156595, 40.184524237624245 ], [ -7.066591559263529, 39.711891587882775 ], [ -7.498632371439726, 39.629571031241809 ], [ -7.098036668313128, 39.030072740223787 ], [ -7.374092169616318, 38.373058580064921 ], [ -7.029281175148796, 38.075764065089771 ], [ -7.166507941099865, 37.803894354802225 ], [ -7.537105475281024, 37.428904323876239 ], [ -7.453725551778092, 37.097787583966067 ], [ -7.855613165711986, 36.838268540996268 ], [ -8.382816127953689, 36.978880113262463 ], [ -8.898856980820327, 36.868809312480778 ], [ -8.746101446965554, 37.651345526676607 ], [ -8.83999752443988, 38.266243394517616 ], [ -9.287463751655224, 38.358485826158599 ], [ -9.526570603869715, 38.737429104154913 ], [ -9.446988898140233, 39.39206614842837 ], [ -9.048305223008427, 39.755093085278773 ], [ -8.977353481471681, 40.159306138665812 ], [ -8.768684047877102, 40.760638943030187 ], [ -8.79085323733031, 41.184334011391257 ], [ -8.990789353867569, 41.543459377603639 ], [ -9.034817674180246, 41.880570583659676 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0.000000, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0.000000, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0.000000, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "brk_group": null, "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Paraguay", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 3.000000, "mapcolor9": 6.000000, "mapcolor13": 2.000000, "pop_est": 6995655.000000, "gdp_md_est": 28890.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99.000000, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.685057135657885, -22.249029229422387 ], [ -62.291179368729225, -21.051634616787393 ], [ -62.265961269770798, -20.513734633061276 ], [ -61.786326463453769, -19.633736667562964 ], [ -60.043564622626491, -19.342746677327426 ], [ -59.115042487206111, -19.356906019775401 ], [ -58.183471442280506, -19.868399346600363 ], [ -58.166392381408045, -20.176700941653678 ], [ -57.8706739976178, -20.732687676681952 ], [ -57.937155727761294, -22.090175876557172 ], [ -56.881509568902899, -22.282153822521479 ], [ -56.473317430229393, -22.086300144135283 ], [ -55.797958136606908, -22.356929620047822 ], [ -55.610682745981144, -22.655619398694846 ], [ -55.517639329639636, -23.571997572526637 ], [ -55.400747239795422, -23.956935316668805 ], [ -55.02790178080955, -24.001273695575229 ], [ -54.652834235235133, -23.839578138933959 ], [ -54.292959560754518, -24.021014092710729 ], [ -54.293476325077449, -24.570799655863965 ], [ -54.428946092330591, -25.162184747012166 ], [ -54.625290696823576, -25.739255466415514 ], [ -54.788794928595053, -26.621785577096134 ], [ -55.695845506398157, -27.387837009390864 ], [ -56.486701626192996, -27.548499037386293 ], [ -57.609759690976141, -27.395898532828387 ], [ -58.618173590719749, -27.123718763947096 ], [ -57.633660040911131, -25.603656508081642 ], [ -57.777217169817938, -25.16233977630904 ], [ -58.807128465394982, -24.771459242453311 ], [ -60.02896603050403, -24.032796319273274 ], [ -60.846564704009914, -23.880712579038292 ], [ -62.685057135657885, -22.249029229422387 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1.000000, "level": 2.000000, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0.000000, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0.000000, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0.000000, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "brk_group": null, "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "formal_fr": null, "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 2.000000, "mapcolor9": 5.000000, "mapcolor13": 8.000000, "pop_est": 4119083.000000, "gdp_md_est": 11950.770000, "pop_year": -99.000000, "lastcensus": 2007.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99.000000, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": -99.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.545665317534542, 32.393992011030576 ], [ 35.545251906076203, 31.782504787720839 ], [ 35.397560662586045, 31.489086005167582 ], [ 34.927408481594568, 31.353435370401414 ], [ 34.970506626125996, 31.61677846936081 ], [ 35.22589155451243, 31.754341132121766 ], [ 34.974640740709333, 31.866582343059722 ], [ 35.183930291491436, 32.532510687788943 ], [ 35.545665317534542, 32.393992011030576 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0.000000, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0.000000, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0.000000, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "brk_group": null, "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Qatar", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 6.000000, "mapcolor9": 2.000000, "mapcolor13": 4.000000, "pop_est": 833285.000000, "gdp_md_est": 91330.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99.000000, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.810108270069577, 24.754742539971378 ], [ 50.743910760303692, 25.482424221289396 ], [ 51.013351678273494, 26.006991685484195 ], [ 51.286461622936059, 26.114582017515868 ], [ 51.589078810437258, 25.801112779233382 ], [ 51.606700473848811, 25.215670477798739 ], [ 51.38960778179063, 24.627385972588058 ], [ 51.112415398977021, 24.556330878186724 ], [ 50.810108270069577, 24.754742539971378 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0.000000, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0.000000, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0.000000, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "brk_group": null, "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Romania", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 3.000000, "mapcolor13": 13.000000, "pop_est": 22215421.000000, "gdp_md_est": 271400.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99.000000, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.710531447040495, 47.882193915389408 ], [ 23.142236362406805, 48.096341050806949 ], [ 23.760958286237411, 47.985598456405455 ], [ 24.402056105250381, 47.981877753280429 ], [ 24.866317172960578, 47.737525743188314 ], [ 25.207743361112989, 47.891056423527473 ], [ 25.945941196402401, 47.987148749374214 ], [ 26.197450392366932, 48.220881252630349 ], [ 26.619336785597795, 48.220726223333472 ], [ 26.924176059687568, 48.123264472030996 ], [ 27.233872918412743, 47.826770941756379 ], [ 27.551166212684848, 47.405117092470832 ], [ 28.128030226359044, 46.810476386088254 ], [ 28.160017937947714, 46.371562608417221 ], [ 28.054442986775399, 45.944586086605625 ], [ 28.233553501099042, 45.488283189468376 ], [ 28.679779493939382, 45.304030870131704 ], [ 29.149724969201653, 45.464925442072456 ], [ 29.603289015427436, 45.293308010431126 ], [ 29.626543409958771, 45.035390936862399 ], [ 29.141611769331835, 44.820210272799045 ], [ 28.8378577003202, 44.913873806328056 ], [ 28.558081495891997, 43.707461656258133 ], [ 27.970107049275075, 43.812468166675217 ], [ 27.242399529740908, 44.175986029632405 ], [ 26.065158725699746, 43.943493760751267 ], [ 25.569271681426926, 43.688444729174719 ], [ 24.100679152124172, 43.741051337247853 ], [ 23.332302280376325, 43.897010809904714 ], [ 22.944832391051847, 43.82378530534713 ], [ 22.657149692482989, 44.234923000661283 ], [ 22.474008416440601, 44.409227606781769 ], [ 22.705725538837356, 44.578002834647023 ], [ 22.459022251075936, 44.702517198254299 ], [ 22.145087924902811, 44.478422349620587 ], [ 21.562022739353608, 44.7689472519655 ], [ 21.483526238702236, 45.18117015235778 ], [ 20.874312778413355, 45.416375433934235 ], [ 20.762174920339987, 45.734573065771443 ], [ 20.220192498462836, 46.127468980486555 ], [ 21.021952345471249, 46.316087958351901 ], [ 21.626514926853872, 46.994237779318162 ], [ 22.099767693782837, 47.672439276716702 ], [ 22.710531447040495, 47.882193915389408 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0.000000, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0.000000, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0.000000, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 5.000000, "mapcolor9": 7.000000, "mapcolor13": 7.000000, "pop_est": 140041247.000000, "gdp_md_est": 2266000.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99.000000, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 18.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.648007440362875, 50.747600409541519 ], [ 144.654147577085638, 48.976390692737596 ], [ 143.173927850517231, 49.306551418650372 ], [ 142.558668247650104, 47.861575018904915 ], [ 143.533492466404056, 46.836728013692493 ], [ 143.505277134372619, 46.137907619809482 ], [ 142.747700636973917, 46.740764878926569 ], [ 142.092030064054512, 45.966755276058791 ], [ 141.906925083585037, 46.805928860046549 ], [ 142.018442824470895, 47.780132961612935 ], [ 141.904444614835057, 48.85918854429957 ], [ 142.135800002205684, 49.615163072297463 ], [ 142.179983351815309, 50.952342434281917 ], [ 141.594075962490052, 51.935434882202543 ], [ 141.68254601457366, 53.301966457728781 ], [ 142.606934035410774, 53.762145087287905 ], [ 142.209748976815405, 54.225475979216867 ], [ 142.65478641171299, 54.365880845753878 ], [ 142.914615513276573, 53.704577541714741 ], [ 143.260847609632066, 52.740760403039047 ], [ 143.235267775647657, 51.756660264688747 ], [ 143.648007440362875, 50.747600409541519 ] ] ], [ [ [ 22.731098667092652, 54.327536932993326 ], [ 20.892244500418656, 54.312524929412575 ], [ 19.660640089606403, 54.426083889373984 ], [ 19.888481479581344, 54.866160386771497 ], [ 21.268448927503499, 55.190481675835287 ], [ 22.315723504330606, 55.0152985703659 ], [ 22.757763706155288, 54.856574408581423 ], [ 22.651051873472568, 54.582740993866707 ], [ 22.731098667092652, 54.327536932993326 ] ] ], [ [ [ -175.01425, 66.58435 ], [ -174.33983, 66.33556 ], [ -174.57182, 67.06219 ], [ -171.85731, 66.91308 ], [ -169.89958, 65.97724 ], [ -170.89107, 65.54139 ], [ -172.53025, 65.43791 ], [ -172.555, 64.46079 ], [ -172.95533, 64.25269 ], [ -173.89184, 64.2826 ], [ -174.65392, 64.63125 ], [ -175.98353, 64.92288 ], [ -176.20716, 65.35667 ], [ -177.22266, 65.52024 ], [ -178.35993, 65.39052 ], [ -178.90332, 65.74044 ], [ -178.68611, 66.11211 ], [ -179.88377, 65.87456 ], [ -179.43268, 65.40411 ], [ -179.99999999999, 64.979708702198366 ], [ -179.99999999999, 68.963636363636368 ], [ -177.55, 68.2 ], [ -174.92825, 67.20589 ], [ -175.01425, 66.58435 ] ] ], [ [ [ 180.000000000000142, 70.832199208546683 ], [ 178.903425000000112, 70.78114 ], [ 178.7253, 71.0988 ], [ 180.000000000000142, 71.51571433642826 ], [ 180.000000000000142, 70.832199208546683 ] ] ], [ [ [ -178.69378, 70.89302 ], [ -179.99999999999, 70.832199208546683 ], [ -179.99999999999, 71.51571433642826 ], [ -179.871875, 71.55762 ], [ -179.02433, 71.55553 ], [ -177.577945, 71.26948 ], [ -177.663575, 71.13277 ], [ -178.69378, 70.89302 ] ] ], [ [ [ 143.60385, 73.21244 ], [ 142.08763, 73.20544 ], [ 140.038155, 73.31692 ], [ 139.86312, 73.36983 ], [ 140.81171, 73.76506 ], [ 142.06207, 73.85758 ], [ 143.48283, 73.47525 ], [ 143.60385, 73.21244 ] ] ], [ [ [ 150.73167, 75.08406 ], [ 149.575925, 74.68892 ], [ 147.977465, 74.778355 ], [ 146.11919, 75.17298 ], [ 146.358485, 75.49682 ], [ 148.22223, 75.345845 ], [ 150.73167, 75.08406 ] ] ], [ [ [ 145.086285, 75.562625 ], [ 144.3, 74.82 ], [ 140.61381, 74.84768 ], [ 138.95544, 74.61148 ], [ 136.97439, 75.26167 ], [ 137.51176, 75.94917 ], [ 138.831075, 76.13676 ], [ 141.471615, 76.09289 ], [ 145.086285, 75.562625 ] ] ], [ [ [ 57.5356925799924, 70.72046397570216 ], [ 56.944979282463947, 70.632743231886678 ], [ 53.677375115784201, 70.76265778266847 ], [ 53.412016635965387, 71.206661688920207 ], [ 51.601894565645722, 71.474759019650492 ], [ 51.455753615124223, 72.014881089965144 ], [ 52.478275180883571, 72.22944163684096 ], [ 52.444168735570855, 72.774731350384855 ], [ 54.427613559797663, 73.627547512497586 ], [ 53.50828982932515, 73.749813951300155 ], [ 55.902458937407658, 74.627486477345343 ], [ 55.631932814359715, 75.081412258597169 ], [ 57.868643833248854, 75.609390367323215 ], [ 61.170044386647504, 76.251883450008137 ], [ 64.498368361270224, 76.439055487769281 ], [ 66.210977003855106, 76.809782213031241 ], [ 68.157059767534832, 76.939696763812918 ], [ 68.852211134725138, 76.544811306454619 ], [ 68.180572544227658, 76.23364166940911 ], [ 64.637326287703019, 75.737754625136233 ], [ 61.583507521414759, 75.260884507946798 ], [ 58.47708214705338, 74.309056301562833 ], [ 56.986785516188007, 73.333043524866241 ], [ 55.419335971910954, 72.371267605265984 ], [ 55.622837762276305, 71.54059479439033 ], [ 57.5356925799924, 70.72046397570216 ] ] ], [ [ [ 106.970130000000125, 76.97419 ], [ 107.240000000000151, 76.48 ], [ 108.1538, 76.723350000000153 ], [ 111.077260000000166, 76.71 ], [ 113.33151, 76.22224 ], [ 114.13417, 75.84764 ], [ 113.88539, 75.327790000000135 ], [ 112.77918, 75.03186 ], [ 110.151250000000203, 74.47673 ], [ 109.4, 74.18 ], [ 110.64, 74.04 ], [ 112.11919, 73.787740000000127 ], [ 113.019540000000262, 73.976930000000152 ], [ 113.529580000000323, 73.335050000000109 ], [ 113.96881, 73.594880000000103 ], [ 115.56782, 73.75285 ], [ 118.776330000000229, 73.58772 ], [ 119.02, 73.12 ], [ 123.200660000000113, 72.97122 ], [ 123.257770000000193, 73.735030000000108 ], [ 125.380000000000194, 73.56 ], [ 126.97644, 73.56549 ], [ 128.59126, 73.03871 ], [ 129.05157, 72.39872 ], [ 128.460000000000122, 71.98 ], [ 129.715990000000232, 71.19304 ], [ 131.28858000000028, 70.786990000000117 ], [ 132.253500000000173, 71.836300000000108 ], [ 133.857660000000322, 71.386420000000157 ], [ 135.56193, 71.655250000000137 ], [ 137.49755, 71.34763 ], [ 138.23409000000018, 71.62803 ], [ 139.869830000000121, 71.487830000000145 ], [ 139.14791, 72.416190000000114 ], [ 140.46817, 72.849410000000148 ], [ 149.5, 72.2 ], [ 150.351180000000198, 71.60643 ], [ 152.968900000000218, 70.84222 ], [ 157.00688, 71.03141 ], [ 158.99779, 70.86672 ], [ 159.830310000000253, 70.45324 ], [ 159.70866, 69.72198 ], [ 160.940530000000336, 69.437280000000101 ], [ 162.279070000000132, 69.64204 ], [ 164.052480000000145, 69.66823 ], [ 165.940370000000229, 69.47199 ], [ 167.83567, 69.58269 ], [ 169.577630000000198, 68.6938 ], [ 170.816880000000282, 69.01363 ], [ 170.008200000000187, 69.65276 ], [ 170.453450000000288, 70.09703 ], [ 173.643910000000261, 69.81743 ], [ 175.724030000000226, 69.877250000000231 ], [ 178.6, 69.4 ], [ 180.000000000000142, 68.963636363636567 ], [ 180.000000000000142, 64.979708702198479 ], [ 179.99281, 64.97433 ], [ 178.707200000000256, 64.53493 ], [ 177.411280000000176, 64.60821 ], [ 178.313000000000244, 64.07593 ], [ 178.908250000000209, 63.251970000000142 ], [ 179.37034, 62.982620000000111 ], [ 179.48636, 62.56894 ], [ 179.228250000000145, 62.304100000000147 ], [ 177.3643, 62.5219 ], [ 174.569290000000223, 61.76915 ], [ 173.68013, 61.65261 ], [ 172.15, 60.95 ], [ 170.698500000000109, 60.33618 ], [ 170.330850000000311, 59.88177 ], [ 168.90046, 60.57355 ], [ 166.294980000000322, 59.788550000000214 ], [ 165.840000000000231, 60.16 ], [ 164.87674, 59.7316 ], [ 163.539290000000136, 59.86871 ], [ 163.217110000000247, 59.21101 ], [ 162.017330000000101, 58.24328 ], [ 162.05297, 57.83912 ], [ 163.19191, 57.615030000000104 ], [ 163.057940000000173, 56.159240000000125 ], [ 162.129580000000232, 56.12219 ], [ 161.70146, 55.285680000000156 ], [ 162.117490000000174, 54.85514 ], [ 160.368770000000353, 54.34433 ], [ 160.021730000000247, 53.20257 ], [ 158.530940000000186, 52.958680000000243 ], [ 158.23118, 51.94269 ], [ 156.789790000000295, 51.01105 ], [ 156.420000000000158, 51.7 ], [ 155.99182, 53.15895 ], [ 155.433660000000117, 55.381030000000123 ], [ 155.91442000000032, 56.767920000000146 ], [ 156.75815, 57.3647 ], [ 156.810350000000113, 57.83204 ], [ 158.364330000000194, 58.05575 ], [ 160.150640000000152, 59.314770000000124 ], [ 161.87204, 60.343000000000131 ], [ 163.66969, 61.140900000000101 ], [ 164.473550000000131, 62.55061 ], [ 163.2584200000002, 62.46627 ], [ 162.65791, 61.6425 ], [ 160.121480000000105, 60.54423 ], [ 159.30232, 61.773960000000102 ], [ 156.720680000000101, 61.43442 ], [ 154.218060000000349, 59.758180000000124 ], [ 155.04375, 59.14495 ], [ 152.81185, 58.88385 ], [ 151.265730000000275, 58.78089 ], [ 151.338150000000127, 59.50396 ], [ 149.78371, 59.655730000000148 ], [ 148.54481, 59.16448 ], [ 145.48722, 59.33637 ], [ 142.197820000000178, 59.03998 ], [ 138.958480000000321, 57.08805 ], [ 135.12619, 54.72959 ], [ 136.70171, 54.603550000000126 ], [ 137.19342, 53.97732 ], [ 138.1647, 53.755010000000254 ], [ 138.80463, 54.254550000000108 ], [ 139.90151, 54.18968000000018 ], [ 141.34531, 53.089570000000123 ], [ 141.37923, 52.23877 ], [ 140.597420000000199, 51.239670000000103 ], [ 140.51308, 50.045530000000127 ], [ 140.061930000000217, 48.446710000000166 ], [ 138.554720000000231, 46.99965 ], [ 138.21971, 46.30795 ], [ 136.86232, 45.143500000000188 ], [ 135.515350000000211, 43.989 ], [ 134.869390000000266, 43.39821 ], [ 133.536870000000278, 42.81147 ], [ 132.906270000000148, 42.798490000000101 ], [ 132.27807000000027, 43.284560000000113 ], [ 130.935870000000165, 42.55274 ], [ 130.78, 42.220000000000198 ], [ 130.640000000000185, 42.395 ], [ 130.63386640840983, 42.903014634770557 ], [ 131.14468794161499, 42.929989732426947 ], [ 131.288555129115622, 44.111519680348266 ], [ 131.025190000000265, 44.96796 ], [ 131.88345421765959, 45.321161607436522 ], [ 133.097120000000217, 45.14409 ], [ 133.769643996313192, 46.116926988299156 ], [ 134.112350000000191, 47.212480000000141 ], [ 134.50081, 47.578450000000146 ], [ 135.026311476786788, 48.478229885443909 ], [ 133.373595819228029, 48.183441677434843 ], [ 132.506690000000134, 47.78896 ], [ 130.987260000000134, 47.79013 ], [ 130.582293328982672, 48.729687404976204 ], [ 129.397817824420514, 49.440600084015614 ], [ 127.657400000000365, 49.76027 ], [ 127.287455682484932, 50.739797268265448 ], [ 126.939156528837856, 51.35389415140591 ], [ 126.564399041857001, 51.784255479532703 ], [ 125.946348911646481, 52.79279857035695 ], [ 125.068211297710462, 53.161044826868931 ], [ 123.57147, 53.4588 ], [ 122.245747918793057, 53.431725979213695 ], [ 121.003084751470368, 53.251401068731241 ], [ 120.177088657716894, 52.753886216841209 ], [ 120.725789015792003, 52.516226304730907 ], [ 120.7382, 51.96411 ], [ 120.182080000000184, 51.64355 ], [ 119.27939, 50.58292 ], [ 119.288460728025854, 50.142882798861962 ], [ 117.879244419426499, 49.510983384797044 ], [ 116.678800897286209, 49.888531399121405 ], [ 115.485695428531443, 49.805177313834747 ], [ 114.962109816550395, 50.140247300815133 ], [ 114.362456496235353, 50.248302720737485 ], [ 112.897739699354389, 49.543565375356991 ], [ 111.581230910286678, 49.377968248077678 ], [ 110.662010532678863, 49.130128078805853 ], [ 109.402449171996722, 49.292960516957692 ], [ 108.475167270951289, 49.282547715850711 ], [ 107.86817589725112, 49.793705145865886 ], [ 106.888804152455322, 50.27429596618029 ], [ 105.886591424586896, 50.406019192092174 ], [ 104.62158, 50.275320000000164 ], [ 103.676545444760364, 50.089966132195144 ], [ 102.255890000000107, 50.510560000000112 ], [ 102.06521, 51.259910000000104 ], [ 100.889480421962645, 51.516855780638423 ], [ 99.981732212323578, 51.634006252643957 ], [ 98.861490513100506, 52.047366034546712 ], [ 97.825739780674525, 51.01099518493325 ], [ 98.231761509191728, 50.42240062112873 ], [ 97.259760000000227, 49.72605 ], [ 95.81402000000017, 49.977460000000121 ], [ 94.815949334698786, 50.013433335970888 ], [ 94.147566359435615, 50.480536607457168 ], [ 93.10421, 50.49529 ], [ 92.23471154171969, 50.802170722041751 ], [ 90.713667433640779, 50.331811835321105 ], [ 88.805566847695587, 49.470520738312473 ], [ 87.751264276076853, 49.297197984405557 ], [ 87.359970330762707, 49.214980780629162 ], [ 86.829356723989662, 49.82667470966814 ], [ 85.5412699726825, 49.692858588248157 ], [ 85.11555952346211, 50.117302964877638 ], [ 84.416377394553052, 50.311399644565824 ], [ 83.935114780618932, 50.889245510453577 ], [ 83.383003778012466, 51.069182847693895 ], [ 81.945985548839957, 50.812195949906339 ], [ 80.56844689323546, 51.388336493528442 ], [ 80.035559523441719, 50.864750881547224 ], [ 77.800915561844334, 53.404414984747547 ], [ 76.525179477854778, 54.177003485727141 ], [ 76.891100294913457, 54.490524400441927 ], [ 74.384820000000133, 53.54685000000012 ], [ 73.425678745420527, 53.489810289109755 ], [ 73.508516066384374, 54.035616766976602 ], [ 72.224150018202209, 54.376655381886792 ], [ 71.180131056609497, 54.133285224008262 ], [ 70.865266554655165, 55.169733588270105 ], [ 69.068166945272907, 55.385250149143502 ], [ 68.169100376258911, 54.97039175070438 ], [ 65.666870000000102, 54.601250000000164 ], [ 65.178533563095954, 54.354227810272079 ], [ 61.436600000000141, 54.00625 ], [ 60.97806644068325, 53.664993394579142 ], [ 61.699986199800634, 52.979996446334269 ], [ 60.739993117114551, 52.719986477257748 ], [ 60.927268507740251, 52.447548326215014 ], [ 59.967533807215574, 51.960420437215674 ], [ 61.588003371024143, 51.272658799843185 ], [ 61.337424350841019, 50.799070136104262 ], [ 59.932807244715576, 50.842194118851836 ], [ 59.642282342370578, 50.545442206415714 ], [ 58.36332000000013, 51.06364 ], [ 56.77798, 51.04355 ], [ 55.716940000000108, 50.621710000000149 ], [ 54.532878452376195, 51.026239732459373 ], [ 52.328723585831057, 51.718652248738096 ], [ 50.766648390512188, 51.692762356159875 ], [ 48.702381626181051, 50.605128485712839 ], [ 48.577841424357615, 49.874759629915644 ], [ 47.549480421749394, 50.454698391311126 ], [ 46.751596307162771, 49.356005764353739 ], [ 47.043671502476599, 49.152038886097586 ], [ 46.466445753776298, 48.39415233010493 ], [ 47.315240000000159, 47.71585 ], [ 48.05725, 47.74377 ], [ 48.694733514201886, 47.075628160177899 ], [ 48.593250000000154, 46.561040000000105 ], [ 49.101160000000135, 46.399330000000106 ], [ 48.645410000000112, 45.80629 ], [ 47.67591, 45.641490000000118 ], [ 46.68201, 44.609200000000101 ], [ 47.59094, 43.660160000000133 ], [ 47.49252, 42.98658 ], [ 48.584370000000177, 41.80888 ], [ 47.98728315612604, 41.405819200194401 ], [ 47.81566572448466, 41.151416124021353 ], [ 47.373315464066394, 41.219732367511142 ], [ 46.686070591016716, 41.827137152669906 ], [ 46.404950799348939, 41.860675157227433 ], [ 45.7764, 42.092440000000238 ], [ 45.470279168485916, 42.502780666670049 ], [ 44.537622918482072, 42.711992702803684 ], [ 43.931210000000107, 42.554960000000108 ], [ 43.755990000000196, 42.74083 ], [ 42.394400000000161, 43.2203 ], [ 40.922190000000143, 43.382150000000138 ], [ 40.076964959479852, 43.553104153002494 ], [ 39.955008579271095, 43.434997666999294 ], [ 38.68, 44.28 ], [ 37.539120000000111, 44.65721 ], [ 36.675460000000129, 45.24469 ], [ 37.40317, 45.404510000000101 ], [ 38.23295, 46.24087 ], [ 37.67372, 46.63657 ], [ 39.14767, 47.044750000000136 ], [ 39.12120000000013, 47.26336 ], [ 38.223538038899477, 47.102189846375978 ], [ 38.255112339029807, 47.54640045835697 ], [ 38.77057, 47.825620000000242 ], [ 39.738277622238996, 47.898937079452082 ], [ 39.89562000000015, 48.23241 ], [ 39.67465, 48.783820000000134 ], [ 40.080789015469492, 49.307429917999372 ], [ 40.069040000000115, 49.60105 ], [ 38.59498823421356, 49.926461900423732 ], [ 38.010631137857075, 49.915661526074729 ], [ 37.393459506995242, 50.383953355503678 ], [ 36.626167840325394, 50.225590928745135 ], [ 35.356116163888117, 50.577197374059153 ], [ 35.37791, 50.77394 ], [ 35.022183058417937, 51.207572333371502 ], [ 34.224815708154409, 51.255993150428935 ], [ 34.141978387190619, 51.566413479206204 ], [ 34.391730584457235, 51.768881740925906 ], [ 33.752699822735877, 52.33507457133166 ], [ 32.71576053236717, 52.238465481162166 ], [ 32.412058139787774, 52.288694973349777 ], [ 32.159440000000217, 52.061250000000115 ], [ 31.78597, 52.10168 ], [ 31.540018344862261, 52.742052313846443 ], [ 31.305200636527985, 53.073995876673308 ], [ 31.49764, 53.167430000000138 ], [ 32.304519484188376, 53.132726141972853 ], [ 32.693643019346126, 53.351420803432148 ], [ 32.405598585751164, 53.618045355842014 ], [ 31.731272820774592, 53.794029446012019 ], [ 31.791424187962406, 53.974638576872195 ], [ 31.384472283663825, 54.157056382862379 ], [ 30.757533807098781, 54.811770941784403 ], [ 30.971835971813249, 55.081547756564134 ], [ 30.873909132620071, 55.550976467503517 ], [ 29.896294386522442, 55.789463202530499 ], [ 29.37157189303079, 55.670090643936277 ], [ 29.229513380660393, 55.918344224666413 ], [ 28.17670942557794, 56.169129950578792 ], [ 27.855282016722526, 56.759326483784378 ], [ 27.770015903440992, 57.244258124411203 ], [ 27.288184848751655, 57.474528306703917 ], [ 27.716685825315778, 57.79189911562446 ], [ 27.420150000000206, 58.724570000000142 ], [ 28.131699253051863, 59.300825100330997 ], [ 27.98112, 59.47537 ], [ 29.1177, 60.028050000000121 ], [ 28.07, 60.503520000000151 ], [ 30.211107212044652, 61.780027777749694 ], [ 31.139991082491036, 62.357692776124452 ], [ 31.516092156711267, 62.867687486412905 ], [ 30.035872430142803, 63.552813625738565 ], [ 30.44468468600374, 64.204453436939076 ], [ 29.544429559047018, 64.948671576590556 ], [ 30.21765, 65.80598 ], [ 29.054588657352383, 66.944286200622031 ], [ 29.977426385220696, 67.698297024192755 ], [ 28.445943637818772, 68.364612942164001 ], [ 28.591929559043365, 69.064776923286701 ], [ 29.39955, 69.156920000000184 ], [ 31.10108000000011, 69.55811 ], [ 32.132720000000262, 69.905950000000246 ], [ 33.77547, 69.301420000000121 ], [ 36.51396, 69.06342 ], [ 40.292340000000166, 67.9324 ], [ 41.059870000000132, 67.45713000000012 ], [ 41.125950000000188, 66.791580000000124 ], [ 40.01583, 66.266180000000134 ], [ 38.38295, 65.999530000000107 ], [ 33.918710000000175, 66.75961 ], [ 33.18444, 66.63253 ], [ 34.81477, 65.900150000000139 ], [ 34.878574253078767, 65.436212877048206 ], [ 34.943910000000159, 64.414370000000162 ], [ 36.23129, 64.10945 ], [ 37.012730000000118, 63.849830000000111 ], [ 37.141970000000157, 64.33471 ], [ 36.539579035089815, 64.76446 ], [ 37.176040000000143, 65.143220000000127 ], [ 39.59345, 64.520790000000176 ], [ 40.435600000000107, 64.76446 ], [ 39.762600000000162, 65.49682 ], [ 42.093090000000103, 66.47623 ], [ 43.016040000000118, 66.418580000000105 ], [ 43.949750000000137, 66.06908 ], [ 44.53226, 66.756340000000137 ], [ 43.69839, 67.35245 ], [ 44.187950000000143, 67.95051 ], [ 43.45282, 68.57079 ], [ 46.250000000000142, 68.25 ], [ 46.821340000000163, 67.68997 ], [ 45.55517, 67.56652 ], [ 45.562020000000103, 67.010050000000206 ], [ 46.349150000000151, 66.667670000000101 ], [ 47.894160000000255, 66.884550000000161 ], [ 48.13876, 67.52238 ], [ 50.227660000000157, 67.998670000000146 ], [ 53.717430000000178, 68.85738000000012 ], [ 54.47171, 68.80815 ], [ 53.485820000000132, 68.20131 ], [ 54.72628, 68.09702 ], [ 55.442680000000138, 68.43866 ], [ 57.317020000000156, 68.46628 ], [ 58.80200000000022, 68.88082 ], [ 59.941420000000193, 68.278440000000103 ], [ 61.07784000000018, 68.94069 ], [ 60.03, 69.52 ], [ 60.55, 69.85 ], [ 63.504000000000161, 69.54739 ], [ 64.888115, 69.234835000000146 ], [ 68.512160000000137, 68.092330000000175 ], [ 69.18068, 68.615630000000124 ], [ 68.16444, 69.14436 ], [ 68.13522, 69.35649 ], [ 66.930080000000117, 69.454610000000116 ], [ 67.25976, 69.92873 ], [ 66.724920000000139, 70.708890000000139 ], [ 66.69466, 71.028970000000243 ], [ 68.540060000000125, 71.934500000000241 ], [ 69.196360000000112, 72.84336000000016 ], [ 69.94, 73.040000000000134 ], [ 72.58754, 72.776290000000103 ], [ 72.79603, 72.22006 ], [ 71.848110000000105, 71.40898 ], [ 72.47011, 71.09019 ], [ 72.79188, 70.39114 ], [ 72.564700000000215, 69.02085 ], [ 73.66787, 68.4079 ], [ 73.2387, 67.7404 ], [ 71.280000000000115, 66.320000000000164 ], [ 72.423010000000176, 66.172670000000181 ], [ 72.82077, 66.53267 ], [ 73.92099000000016, 66.789460000000133 ], [ 74.186510000000197, 67.28429 ], [ 75.052, 67.760470000000169 ], [ 74.469260000000162, 68.32899 ], [ 74.935840000000127, 68.98918 ], [ 73.84236, 69.07146 ], [ 73.601870000000218, 69.62763 ], [ 74.3998, 70.63175 ], [ 73.1011, 71.447170000000256 ], [ 74.890820000000218, 72.12119 ], [ 74.65926, 72.83227 ], [ 75.158010000000189, 72.854970000000122 ], [ 75.68351, 72.300560000000132 ], [ 75.288980000000123, 71.33556 ], [ 76.35911, 71.152870000000149 ], [ 75.903130000000175, 71.87401 ], [ 77.576650000000114, 72.26717 ], [ 79.652020000000135, 72.32011 ], [ 81.5, 71.75 ], [ 80.610710000000125, 72.582850000000121 ], [ 80.51109, 73.6482 ], [ 82.25, 73.850000000000108 ], [ 84.65526, 73.805910000000182 ], [ 86.82230000000024, 73.93688 ], [ 86.00956, 74.459670000000159 ], [ 87.166820000000172, 75.11643 ], [ 88.315710000000109, 75.14393 ], [ 90.26, 75.64 ], [ 92.90058, 75.77333 ], [ 93.234210000000161, 76.0472 ], [ 95.860000000000156, 76.1400000000001 ], [ 96.67821, 75.91548 ], [ 98.922540000000225, 76.44689 ], [ 100.759670000000227, 76.43028 ], [ 101.03532, 76.86189 ], [ 101.990840000000134, 77.287540000000206 ], [ 104.351600000000104, 77.69792 ], [ 106.066640000000149, 77.37389 ], [ 104.70500000000024, 77.1274 ], [ 106.970130000000125, 76.97419 ] ] ], [ [ [ 105.07547, 78.30689 ], [ 99.43814, 77.921 ], [ 101.2649, 79.23399 ], [ 102.08635, 79.34641 ], [ 102.837815, 79.28129 ], [ 105.37243, 78.71334 ], [ 105.07547, 78.30689 ] ] ], [ [ [ 51.13618655783128, 80.547280178540944 ], [ 49.793684523320707, 80.415427761548216 ], [ 48.894411248577541, 80.339566758943704 ], [ 48.754936557821765, 80.175468248200843 ], [ 47.586119012244154, 80.010181179515342 ], [ 46.502825962109654, 80.247246812654367 ], [ 47.072455275262911, 80.559424140129465 ], [ 44.846958042181114, 80.589809882317184 ], [ 46.799138624871233, 80.771917629713641 ], [ 48.318477410684665, 80.784009914869955 ], [ 48.522806023966695, 80.514568996900152 ], [ 49.097189568890911, 80.753985907708426 ], [ 50.039767693894618, 80.918885403151819 ], [ 51.522932977103693, 80.69972565380192 ], [ 51.13618655783128, 80.547280178540944 ] ] ], [ [ [ 99.93976, 78.88094 ], [ 97.75794, 78.7562 ], [ 94.97259, 79.044745 ], [ 93.31288, 79.4265 ], [ 92.5454, 80.14379 ], [ 91.18107, 80.34146 ], [ 93.77766, 81.0246 ], [ 95.940895, 81.2504 ], [ 97.88385, 80.746975 ], [ 100.186655, 79.780135 ], [ 99.93976, 78.88094 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0.000000, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0.000000, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0.000000, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "brk_group": null, "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Rwanda", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 2.000000, "mapcolor9": 3.000000, "mapcolor13": 10.000000, "pop_est": 10473282.000000, "gdp_md_est": 9706.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99.000000, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.419104852019245, -1.134659112150416 ], [ 30.816134881317712, -1.698914076345389 ], [ 30.758308953583111, -2.287250257988369 ], [ 30.469696079232989, -2.413857517103459 ], [ 29.938359002407939, -2.348486830254238 ], [ 29.632176141078588, -2.917857761246097 ], [ 29.024926385216787, -2.839257907730158 ], [ 29.117478875451553, -2.292211195488385 ], [ 29.254834832483343, -2.215109958508911 ], [ 29.291886834436614, -1.620055840667987 ], [ 29.579466180140884, -1.341313164885626 ], [ 29.821518588996014, -1.443322442229785 ], [ 30.419104852019245, -1.134659112150416 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7.000000, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0.000000, "level": 2.000000, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0.000000, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0.000000, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1.000000, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "brk_group": null, "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "formal_fr": null, "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 7.000000, "mapcolor9": 4.000000, "mapcolor13": 4.000000, "pop_est": -99.000000, "gdp_md_est": -99.000000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99.000000, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9.000000, "long_len": 14.000000, "abbrev_len": 7.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.794883999049077, 27.120696316022507 ], [ -8.817828334986672, 27.656425889592356 ], [ -8.665589565454809, 27.656425889592356 ], [ -8.665124477564191, 27.589479071558227 ], [ -8.684399786809053, 27.395744126896005 ], [ -8.6872936670174, 25.881056219988906 ], [ -11.969418911171161, 25.933352769468268 ], [ -11.937224493853321, 23.374594224536168 ], [ -12.874221564169575, 23.284832261645178 ], [ -13.118754441774712, 22.771220201096256 ], [ -12.929101935263532, 21.327070624267563 ], [ -16.845193650773993, 21.333323472574879 ], [ -17.063423224342571, 20.999752102130827 ], [ -17.020428432675743, 21.422310288981478 ], [ -17.002961798561088, 21.420734157796577 ], [ -14.750954555713534, 21.500600083903663 ], [ -14.630832688851072, 21.860939846274903 ], [ -14.221167771857253, 22.310163072188161 ], [ -13.891110398809047, 23.691009019459305 ], [ -12.50096269372537, 24.7701162785782 ], [ -12.030758836301615, 26.030866197203043 ], [ -11.718219773800357, 26.104091701760623 ], [ -11.392554897496979, 26.883423977154365 ], [ -10.551262579785273, 26.990807603456886 ], [ -10.189424200877582, 26.860944729107405 ], [ -9.735343390328879, 26.860944729107405 ], [ -9.413037482124466, 27.088476060488517 ], [ -8.794883999049077, 27.120696316022507 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0.000000, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0.000000, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0.000000, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "brk_group": null, "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Saudi Arabia", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 1.000000, "mapcolor9": 6.000000, "mapcolor13": 7.000000, "pop_est": 28686633.000000, "gdp_md_est": 576500.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99.000000, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12.000000, "long_len": 12.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.77933230975097, 16.347891343648683 ], [ 42.649572788266084, 16.774635321514964 ], [ 42.347989129410713, 17.075805568912003 ], [ 42.270887892431226, 17.474721787989125 ], [ 41.754381951673963, 17.833046169500975 ], [ 41.22139122901558, 18.67159963630121 ], [ 40.93934126156654, 19.486485297111756 ], [ 40.247652215339826, 20.174634507726491 ], [ 39.801684604660949, 20.338862209550058 ], [ 39.139399448408284, 21.291904812092934 ], [ 39.023695916506796, 21.986875311770195 ], [ 39.066328973147591, 22.57965566659027 ], [ 38.492772251140082, 23.688451036060854 ], [ 38.023860304523623, 24.078685614512935 ], [ 37.483634881344386, 24.285494696545015 ], [ 37.154817742671185, 24.858482977797308 ], [ 37.209491408036001, 25.084541530858107 ], [ 36.93162723160259, 25.602959499610179 ], [ 36.639603712721225, 25.826227525327223 ], [ 36.249136590323815, 26.570135606384881 ], [ 35.640181512196392, 27.376520494083422 ], [ 35.130186801907882, 28.063351955674719 ], [ 34.632336053207979, 28.058546047471566 ], [ 34.787778761541944, 28.607427273059699 ], [ 34.832220493312946, 28.957483425404845 ], [ 34.956037225084259, 29.356554673778845 ], [ 36.068940870922063, 29.197494615184453 ], [ 36.50121422704359, 29.505253607698705 ], [ 36.74052778498725, 29.86528331147619 ], [ 37.503581984209035, 30.003776150018407 ], [ 37.668119744626381, 30.338665269485901 ], [ 37.998848911294374, 30.508499864213135 ], [ 37.002165561681011, 31.508412990844747 ], [ 39.004885695152552, 32.010216986614978 ], [ 39.195468377444968, 32.161008816042667 ], [ 40.399994337736246, 31.889991766887935 ], [ 41.889980910007836, 31.190008653278369 ], [ 44.709498732284743, 29.178891099559383 ], [ 46.568713413281756, 29.09902517345229 ], [ 47.459821811722833, 29.002519436147224 ], [ 47.708850538937384, 28.526062730416143 ], [ 48.416094191283946, 28.55200429942667 ], [ 48.807594842327177, 27.689627997339883 ], [ 49.299554477745829, 27.461218166609811 ], [ 49.470913527225662, 27.109999294538085 ], [ 50.152422316290881, 26.689663194275997 ], [ 50.212935418504685, 26.277026882425375 ], [ 50.113303257045942, 25.943972276304251 ], [ 50.239858839728754, 25.608049628190926 ], [ 50.527386509000735, 25.327808335872103 ], [ 50.660556675016892, 24.999895534764022 ], [ 50.810108270069577, 24.754742539971378 ], [ 51.112415398977021, 24.556330878186724 ], [ 51.38960778179063, 24.627385972588058 ], [ 51.579518670463273, 24.245497137951105 ], [ 51.617707553926977, 24.014219265228832 ], [ 52.000733270074335, 23.00115448657894 ], [ 55.006803012924905, 22.496947536707136 ], [ 55.208341098863194, 22.708329982997046 ], [ 55.666659376859826, 22.000001125572339 ], [ 54.999981723862362, 19.999994004796108 ], [ 52.000009800022241, 19.000003363516058 ], [ 49.116671583864871, 18.616667588774945 ], [ 48.183343540241339, 18.166669216377315 ], [ 47.466694777217633, 17.116681626854884 ], [ 47.000004917189756, 16.949999294497445 ], [ 46.749994337761649, 17.283338120996177 ], [ 46.366658563020536, 17.233315334537636 ], [ 45.399999220568759, 17.333335069238558 ], [ 45.216651238797191, 17.433328965723334 ], [ 44.062613152855079, 17.410358791569593 ], [ 43.791518589051918, 17.319976711491108 ], [ 43.380794305196105, 17.579986680567671 ], [ 43.115797560403358, 17.088440456607373 ], [ 43.218375278502748, 16.66688996018641 ], [ 42.77933230975097, 16.347891343648683 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0.000000, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0.000000, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0.000000, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "brk_group": null, "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Sudan", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 6.000000, "mapcolor9": 4.000000, "mapcolor13": 1.000000, "pop_est": 25946220.000000, "gdp_md_est": 88080.000000, "pop_year": -99.000000, "lastcensus": 2008.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99.000000, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.963392794971185, 9.464285229420625 ], [ 33.824963480907513, 9.484060845715362 ], [ 33.842130853028152, 9.981914637215993 ], [ 33.721959248183111, 10.325262079630193 ], [ 33.206938084561784, 10.720111638406593 ], [ 33.086766479716744, 11.441141267476496 ], [ 33.206938084561784, 12.179338268667095 ], [ 32.743419037302544, 12.248007757149992 ], [ 32.674749548819648, 12.02483191958072 ], [ 32.073891524594785, 11.973329803218519 ], [ 32.314234734284753, 11.681484477166521 ], [ 32.400071594888345, 11.080626452941488 ], [ 31.850715687025513, 10.531270545078826 ], [ 31.352861895524882, 9.810240916008695 ], [ 30.837840731903384, 9.70723668328452 ], [ 29.996639497988554, 10.290927335388687 ], [ 29.618957311332849, 10.084918869940225 ], [ 29.515953078608618, 9.793073543888056 ], [ 29.000931914987177, 9.604232450560289 ], [ 28.966597170745786, 9.398223985111656 ], [ 27.970889587744352, 9.398223985111656 ], [ 27.833550610778786, 9.604232450560289 ], [ 27.112520981708883, 9.638567194801624 ], [ 26.752006167173818, 9.466893473594496 ], [ 26.477328213242515, 9.552730334198088 ], [ 25.962307049621018, 10.136420986302426 ], [ 25.790633328413946, 10.411098940233728 ], [ 25.069603699343986, 10.273759963267992 ], [ 24.794925745412684, 9.810240916008695 ], [ 24.53741516360202, 8.91753756573172 ], [ 24.19406772118765, 8.728696472403897 ], [ 23.886979580860668, 8.619729712933065 ], [ 23.805813429466752, 8.666318874542526 ], [ 23.459012892355986, 8.954285793489021 ], [ 23.394779087017298, 9.265067857292252 ], [ 23.557249790142919, 9.68121816653877 ], [ 23.554304233502194, 10.08925527591532 ], [ 22.977543572692753, 10.71446259199854 ], [ 22.864165480244253, 11.142395127807617 ], [ 22.87622, 11.384610000000123 ], [ 22.50869, 11.67936 ], [ 22.49762, 12.26024 ], [ 22.28801, 12.64605 ], [ 21.93681, 12.588180000000136 ], [ 22.03759, 12.95546 ], [ 22.29658, 13.37232 ], [ 22.18329, 13.78648 ], [ 22.51202, 14.09318 ], [ 22.30351, 14.32682 ], [ 22.56795000000011, 14.944290000000137 ], [ 23.024590000000103, 15.68072 ], [ 23.886890000000108, 15.61084 ], [ 23.837660000000142, 19.580470000000105 ], [ 23.850000000000136, 20.0 ], [ 25.000000000000114, 20.00304 ], [ 25.000000000000114, 22.0 ], [ 29.02, 22.0 ], [ 32.9, 22.0 ], [ 36.86623, 22.0 ], [ 37.188720000000103, 21.01885 ], [ 36.96941, 20.837440000000129 ], [ 37.114700000000141, 19.80796 ], [ 37.481790000000103, 18.61409 ], [ 37.86276, 18.36786 ], [ 38.410089959473225, 17.998307399970315 ], [ 37.90400000000011, 17.42754 ], [ 37.16747, 17.263140000000135 ], [ 36.852530000000115, 16.95655 ], [ 36.75389, 16.29186 ], [ 36.32322, 14.82249 ], [ 36.42951, 14.42211 ], [ 36.27022, 13.563330000000121 ], [ 35.86363, 12.57828 ], [ 35.26049, 12.08286 ], [ 34.831630000000132, 11.318960000000118 ], [ 34.731150000000127, 10.910170000000107 ], [ 34.25745, 10.63009 ], [ 33.96162, 9.58358 ], [ 33.963392794971185, 9.464285229420625 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0.000000, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0.000000, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0.000000, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "brk_group": null, "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "South Sudan", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 3.000000, "mapcolor9": 3.000000, "mapcolor13": 5.000000, "pop_est": 10625176.000000, "gdp_md_est": 13227.000000, "pop_year": -99.000000, "lastcensus": 2008.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99.000000, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8.000000, "long_len": 11.000000, "abbrev_len": 7.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.963392794971185, 9.464285229420625 ], [ 33.97498, 8.68456 ], [ 33.825500000000147, 8.37916 ], [ 33.294800000000123, 8.35458 ], [ 32.95418, 7.784970000000101 ], [ 33.568290000000104, 7.71334 ], [ 34.0751, 7.22595 ], [ 34.25032, 6.82607 ], [ 34.70702, 6.594220000000121 ], [ 35.298007118233102, 5.506 ], [ 34.620196267853942, 4.847122742082036 ], [ 34.005, 4.249884947362148 ], [ 33.3900000000001, 3.79 ], [ 32.68642, 3.79232 ], [ 31.881450000000143, 3.55827 ], [ 31.24556, 3.7819 ], [ 30.83385, 3.50917 ], [ 29.95349, 4.1737 ], [ 29.71599531425602, 4.600804755060153 ], [ 29.159078403446642, 4.389267279473245 ], [ 28.696677687298802, 4.455077215996994 ], [ 28.428993768026999, 4.287154649264608 ], [ 27.979977247842953, 4.408413397637389 ], [ 27.374226108517632, 5.233944403500175 ], [ 27.213409051225256, 5.550953477394614 ], [ 26.465909458123292, 5.946717434101856 ], [ 26.21341840994512, 6.546603298362129 ], [ 25.796647983511264, 6.97931590415817 ], [ 25.124130893664812, 7.500085150579423 ], [ 25.114932488716875, 7.825104071479245 ], [ 24.567369012152199, 8.229187933785454 ], [ 23.886979580860668, 8.619729712933065 ], [ 24.19406772118765, 8.728696472403897 ], [ 24.53741516360202, 8.91753756573172 ], [ 24.794925745412684, 9.810240916008695 ], [ 25.069603699343986, 10.273759963267992 ], [ 25.790633328413946, 10.411098940233728 ], [ 25.962307049621018, 10.136420986302426 ], [ 26.477328213242515, 9.552730334198088 ], [ 26.752006167173818, 9.466893473594496 ], [ 27.112520981708883, 9.638567194801624 ], [ 27.833550610778786, 9.604232450560289 ], [ 27.970889587744352, 9.398223985111656 ], [ 28.966597170745786, 9.398223985111656 ], [ 29.000931914987177, 9.604232450560289 ], [ 29.515953078608618, 9.793073543888056 ], [ 29.618957311332849, 10.084918869940225 ], [ 29.996639497988554, 10.290927335388687 ], [ 30.837840731903384, 9.70723668328452 ], [ 31.352861895524882, 9.810240916008695 ], [ 31.850715687025513, 10.531270545078826 ], [ 32.400071594888345, 11.080626452941488 ], [ 32.314234734284753, 11.681484477166521 ], [ 32.073891524594785, 11.973329803218519 ], [ 32.674749548819648, 12.02483191958072 ], [ 32.743419037302544, 12.248007757149992 ], [ 33.206938084561784, 12.179338268667095 ], [ 33.086766479716744, 11.441141267476496 ], [ 33.206938084561784, 10.720111638406593 ], [ 33.721959248183111, 10.325262079630193 ], [ 33.842130853028152, 9.981914637215993 ], [ 33.824963480907513, 9.484060845715362 ], [ 33.963392794971185, 9.464285229420625 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0.000000, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0.000000, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0.000000, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "brk_group": null, "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Senegal", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 6.000000, "mapcolor9": 5.000000, "mapcolor13": 5.000000, "pop_est": 13711597.000000, "gdp_md_est": 21980.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99.000000, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.713728807023472, 13.594958604379855 ], [ -17.126106736712615, 14.373515733289224 ], [ -17.625042690490659, 14.729540513564073 ], [ -17.185172898822231, 14.919477240452862 ], [ -16.700706346085923, 15.621527411354108 ], [ -16.463098110407884, 16.13503611903846 ], [ -16.120690070041931, 16.455662543193384 ], [ -15.623666144258692, 16.369337063049812 ], [ -15.135737270558819, 16.587282416240782 ], [ -14.577347581428981, 16.598263658102809 ], [ -14.099521450242179, 16.304302273010492 ], [ -13.435737677453062, 16.039383042866191 ], [ -12.830658331747516, 15.303691514542948 ], [ -12.170750291380301, 14.616834214735505 ], [ -12.124887457721259, 13.994727484589788 ], [ -11.927716030311615, 13.422075100147396 ], [ -11.553397793005431, 13.141213690641067 ], [ -11.467899135778524, 12.754518947800975 ], [ -11.513942836950591, 12.442987575729418 ], [ -11.658300950557932, 12.386582749882836 ], [ -12.203564825885634, 12.465647691289405 ], [ -12.27859900557344, 12.354440008997287 ], [ -12.499050665730564, 12.332089952031057 ], [ -13.217818162478238, 12.575873521367967 ], [ -13.700476040084325, 12.586182969610194 ], [ -15.54847693527401, 12.628170070847347 ], [ -15.816574266004254, 12.515567124883347 ], [ -16.147716844130585, 12.547761542201187 ], [ -16.677451951554573, 12.384851589401052 ], [ -16.841524624081273, 13.151393947802561 ], [ -15.931295945692211, 13.130284125211332 ], [ -15.691000535534995, 13.270353094938457 ], [ -15.511812506562933, 13.278569647672867 ], [ -15.141163295949468, 13.509511623585238 ], [ -14.712197231494628, 13.298206691943777 ], [ -14.277701788784555, 13.280585028532244 ], [ -13.844963344772408, 13.505041612192002 ], [ -14.046992356817482, 13.794067898000449 ], [ -14.376713833055788, 13.625680243377374 ], [ -14.687030808968487, 13.630356960499784 ], [ -15.081735398813819, 13.876491807505985 ], [ -15.39877031092446, 13.860368760630919 ], [ -15.624596320039942, 13.623587347869559 ], [ -16.713728807023472, 13.594958604379855 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0.000000, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0.000000, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0.000000, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "brk_group": null, "abbrev": "S. Is.", "postal": "SB", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Solomon Islands", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 6.000000, "pop_est": 595613.000000, "gdp_md_est": 1078.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99.000000, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11.000000, "long_len": 15.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.11902469304087, -10.482719008021135 ], [ 162.398645868172224, -10.826367282762121 ], [ 161.700032180018383, -10.820011081590224 ], [ 161.319796991214758, -10.204751478723125 ], [ 161.91738325423799, -10.446700534713656 ], [ 162.11902469304087, -10.482719008021135 ] ] ], [ [ [ 160.85222863183796, -9.872937106977005 ], [ 160.462588332357285, -9.895209649294841 ], [ 159.849447463214204, -9.794027194867368 ], [ 159.640002883135168, -9.639979750205271 ], [ 159.702944777666659, -9.242949720906779 ], [ 160.362956170898457, -9.400304457235535 ], [ 160.688517694337207, -9.610162448772812 ], [ 160.85222863183796, -9.872937106977005 ] ] ], [ [ [ 161.679981724289149, -9.599982191611375 ], [ 161.529396600590559, -9.784312025596435 ], [ 160.788253208660564, -8.91754322676492 ], [ 160.579997186524366, -8.320008640173967 ], [ 160.920028111004939, -8.320008640173967 ], [ 161.280006138349989, -9.120011488484451 ], [ 161.679981724289149, -9.599982191611375 ] ] ], [ [ [ 159.875027297198613, -8.337320244991716 ], [ 159.917401971678004, -8.538289890174866 ], [ 159.133677199539392, -8.1141814103554 ], [ 158.586113722974716, -7.754823500197716 ], [ 158.211149530264862, -7.421872246941149 ], [ 158.359977655265453, -7.320017998893917 ], [ 158.820001255527728, -7.560003350457393 ], [ 159.640002883135168, -8.020026950719569 ], [ 159.875027297198613, -8.337320244991716 ] ] ], [ [ [ 157.538425734689298, -7.347819919466929 ], [ 157.339419793933274, -7.404767347852555 ], [ 156.902030471014797, -7.176874281445393 ], [ 156.491357863591332, -6.765943291860395 ], [ 156.542827590153962, -6.59933847415148 ], [ 157.140000441718911, -7.021638278840655 ], [ 157.538425734689298, -7.347819919466929 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0.000000, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0.000000, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0.000000, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "brk_group": null, "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Sierra Leone", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 7.000000, "pop_est": 6440053.000000, "gdp_md_est": 4285.000000, "pop_year": -99.000000, "lastcensus": 2004.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99.000000, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12.000000, "long_len": 12.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.438779466182055, 6.785916856305747 ], [ -11.70819454593574, 6.860098374860726 ], [ -12.428098924193819, 7.26294200279203 ], [ -12.949049038128194, 7.798645738145738 ], [ -13.124025437868482, 8.163946438016978 ], [ -13.246550258832515, 8.903048610871508 ], [ -12.71195756677308, 9.342711696810767 ], [ -12.59671912276221, 9.620188300001971 ], [ -12.425928514037565, 9.835834051955956 ], [ -12.150338100625005, 9.858571682164381 ], [ -11.917277390988659, 10.046983954300558 ], [ -11.11748124840733, 10.045872911006285 ], [ -10.839151984083301, 9.688246161330369 ], [ -10.622395188835041, 9.267910061068278 ], [ -10.654770473665891, 8.977178452994195 ], [ -10.494315151399633, 8.715540676300435 ], [ -10.505477260774668, 8.348896389189605 ], [ -10.23009355309128, 8.406205552601293 ], [ -10.695594855176481, 7.939464016141088 ], [ -11.146704270868383, 7.396706447779536 ], [ -11.199801805048279, 7.105845648624737 ], [ -11.438779466182055, 6.785916856305747 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0.000000, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0.000000, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0.000000, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "brk_group": null, "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "El Salvador", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 6.000000, "mapcolor13": 8.000000, "pop_est": 7185218.000000, "gdp_md_est": 43630.000000, "pop_year": -99.000000, "lastcensus": 2007.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99.000000, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11.000000, "long_len": 11.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.793111131526572, 13.384480495655055 ], [ -87.904112108089521, 13.149016831917137 ], [ -88.48330156121682, 13.163951320849492 ], [ -88.84322791212972, 13.259733588102478 ], [ -89.256742723329296, 13.458532823129303 ], [ -89.812393561547665, 13.520622056527998 ], [ -90.095554572290979, 13.735337632700734 ], [ -90.064677903996596, 13.881969509328925 ], [ -89.721933966820728, 14.134228013561696 ], [ -89.534219326520514, 14.244815578666305 ], [ -89.587342698916558, 14.36258616785949 ], [ -89.3533259752828, 14.424132798719114 ], [ -89.058511929057659, 14.340029405164087 ], [ -88.843072882832843, 14.140506700085171 ], [ -88.541230841816002, 13.980154730683479 ], [ -88.503997972349708, 13.845485948130857 ], [ -88.065342576840138, 13.964625962779778 ], [ -87.859515347021599, 13.893312486216983 ], [ -87.723502977229401, 13.785050360565506 ], [ -87.793111131526572, 13.384480495655055 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0.000000, "level": 2.000000, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0.000000, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0.000000, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1.000000, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "brk_group": null, "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "formal_fr": null, "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 6.000000, "mapcolor9": 5.000000, "mapcolor13": 2.000000, "pop_est": 3500000.000000, "gdp_md_est": 12250.000000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99.000000, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.938129510296505, 9.451748968946674 ], [ 48.486735874227008, 8.837626247589981 ], [ 47.78942, 8.003 ], [ 46.948328484897957, 7.996876532417389 ], [ 43.67875, 9.18358000000012 ], [ 43.296975132018758, 9.540477403191744 ], [ 42.92812, 10.021940000000143 ], [ 42.55876, 10.57258000000013 ], [ 42.776851841000962, 10.92687856693442 ], [ 43.145304803242141, 11.462039699748857 ], [ 43.470659620951665, 11.277709865763882 ], [ 43.666668328634842, 10.864169216348159 ], [ 44.11780358254282, 10.445538438351605 ], [ 44.614259067570856, 10.442205308468942 ], [ 45.556940545439147, 10.698029486529776 ], [ 46.645401238803004, 10.816549383991173 ], [ 47.525657586462785, 11.12722809492999 ], [ 48.021596307167783, 11.193063869669743 ], [ 48.37878380716927, 11.375481675660126 ], [ 48.948206414593471, 11.41062164961852 ], [ 48.942005242718437, 11.394266058798166 ], [ 48.938491245322609, 10.982327378783452 ], [ 48.93823286316109, 9.973500067581483 ], [ 48.938129510296505, 9.451748968946674 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0.000000, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0.000000, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0.000000, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "brk_group": null, "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Somalia", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 8.000000, "mapcolor9": 6.000000, "mapcolor13": 7.000000, "pop_est": 9832017.000000, "gdp_md_est": 5524.000000, "pop_year": -99.000000, "lastcensus": 1987.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99.000000, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.72862, 11.5789 ], [ 50.25878, 11.67957 ], [ 50.73202, 12.0219 ], [ 51.1112, 12.02464 ], [ 51.13387, 11.74815 ], [ 51.04153, 11.16651 ], [ 51.04531, 10.6409 ], [ 50.83418, 10.27972 ], [ 50.55239, 9.19874 ], [ 50.07092, 8.08173 ], [ 49.4527, 6.80466 ], [ 48.59455, 5.33911 ], [ 47.74079, 4.2194 ], [ 46.56476, 2.85529 ], [ 45.56399, 2.04576 ], [ 44.06815, 1.05283 ], [ 43.13597, 0.2922 ], [ 42.04157, -0.91916 ], [ 41.81095, -1.44647 ], [ 41.58513, -1.68325 ], [ 40.993, -0.85829 ], [ 40.98105, 2.78452 ], [ 41.855083092643973, 3.918911920483727 ], [ 42.12861, 4.23413 ], [ 42.76967, 4.25259 ], [ 43.66087, 4.95755 ], [ 44.9636, 5.00162 ], [ 47.78942, 8.003 ], [ 48.486735874226952, 8.837626247589995 ], [ 48.938129510296449, 9.451748968946617 ], [ 48.938232863161033, 9.973500067581512 ], [ 48.938491245322496, 10.982327378783467 ], [ 48.942005242718352, 11.394266058798138 ], [ 48.948204758509739, 11.410617281697963 ], [ 49.26776, 11.43033 ], [ 49.72862, 11.5789 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0.000000, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0.000000, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0.000000, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "brk_group": null, "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Serbia", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 3.000000, "mapcolor9": 2.000000, "mapcolor13": 10.000000, "pop_est": 7379339.000000, "gdp_md_est": 80340.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99.000000, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.874312778413412, 45.41637543393432 ], [ 21.483526238702211, 45.181170152357879 ], [ 21.562022739353722, 44.768947251965642 ], [ 22.145087924902896, 44.478422349620587 ], [ 22.459022251075965, 44.702517198254441 ], [ 22.705725538837441, 44.578002834647009 ], [ 22.474008416440654, 44.409227606781769 ], [ 22.657149692483074, 44.234923000661354 ], [ 22.410446404721597, 44.008063462900054 ], [ 22.500156691180223, 43.642814439461006 ], [ 22.986018507588483, 43.211161200527101 ], [ 22.604801466571359, 42.898518785161116 ], [ 22.436594679461393, 42.580321153323951 ], [ 22.54501183440965, 42.46136200618804 ], [ 22.380525750424681, 42.320259507815081 ], [ 21.917080000000112, 42.30364 ], [ 21.576635989402121, 42.245224397061861 ], [ 21.54332, 42.320250000000101 ], [ 21.66292, 42.43922 ], [ 21.77505, 42.6827 ], [ 21.63302, 42.67717 ], [ 21.43866, 42.86255 ], [ 21.27421, 42.90959 ], [ 21.143395, 43.06868500000013 ], [ 20.95651, 43.13094 ], [ 20.81448, 43.27205 ], [ 20.63508, 43.21671 ], [ 20.49679, 42.88469 ], [ 20.25758, 42.812750000000108 ], [ 20.3398, 42.89852 ], [ 19.95857, 43.10604 ], [ 19.63, 43.213779970270537 ], [ 19.48389, 43.35229 ], [ 19.21852, 43.52384 ], [ 19.454, 43.568100000000129 ], [ 19.59976, 44.03847 ], [ 19.11761, 44.423070000000109 ], [ 19.36803, 44.863 ], [ 19.00548, 44.86023 ], [ 19.390475701584592, 45.236515611342384 ], [ 19.072768995854176, 45.521511135432092 ], [ 18.82982, 45.90888 ], [ 19.59604454924164, 46.171729844744561 ], [ 20.220192498462893, 46.127468980486583 ], [ 20.762174920339987, 45.734573065771485 ], [ 20.874312778413412, 45.41637543393432 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0.000000, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0.000000, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0.000000, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "brk_group": null, "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Suriname", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 7.000000, "mapcolor13": 6.000000, "pop_est": 481267.000000, "gdp_md_est": 4254.000000, "pop_year": -99.000000, "lastcensus": 2004.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99.000000, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.147436489476888, 5.973149929219161 ], [ -55.9493184067898, 5.772877915872002 ], [ -55.841779751190415, 5.95312531170606 ], [ -55.033250291551774, 6.025291449401664 ], [ -53.958044603070903, 5.756548163267765 ], [ -54.478632981979231, 4.896755682795586 ], [ -54.399542202356514, 4.212611395683467 ], [ -54.006930508019011, 3.620037746592558 ], [ -54.181726040246275, 3.189779771330421 ], [ -54.269705166223197, 2.732391669115046 ], [ -54.524754197799716, 2.311848863123785 ], [ -55.097587449755139, 2.523748073736613 ], [ -55.569755011605999, 2.421506252447131 ], [ -55.973322109589375, 2.510363877773017 ], [ -56.073341844290297, 2.220794989425499 ], [ -55.905600145070885, 2.02199575439866 ], [ -55.995698004771754, 1.817667141116601 ], [ -56.539385748914555, 1.899522609866921 ], [ -57.150097825739913, 2.768926906745406 ], [ -57.28143347840971, 3.333491929534119 ], [ -57.60156897645787, 3.334654649260685 ], [ -58.044694383360678, 4.060863552258382 ], [ -57.860209520078698, 4.57680105226045 ], [ -57.914288906472137, 4.812626451024414 ], [ -57.307245856339506, 5.073566595882227 ], [ -57.147436489476888, 5.973149929219161 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0.000000, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0.000000, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0.000000, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "brk_group": null, "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Slovak Republic", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 4.000000, "mapcolor9": 4.000000, "mapcolor13": 9.000000, "pop_est": 5463046.000000, "gdp_md_est": 119500.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99.000000, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.853144158613617, 49.496229763377642 ], [ 18.909574822676319, 49.435845852244576 ], [ 19.320712517990472, 49.571574001659194 ], [ 19.825022820726872, 49.217125352569226 ], [ 20.415839471119853, 49.431453355499769 ], [ 20.887955356538413, 49.32877228453583 ], [ 21.607808058364213, 49.470107326854091 ], [ 22.558137648211755, 49.085738023467144 ], [ 22.28084191253356, 48.825392157580673 ], [ 22.085608351334855, 48.422264309271789 ], [ 21.872236362401736, 48.319970811550021 ], [ 20.801293979584926, 48.623854071642384 ], [ 20.473562045989866, 48.562850043321816 ], [ 20.239054396249347, 48.327567247096923 ], [ 19.769470656013112, 48.202691148463614 ], [ 19.661363559658497, 48.266614895208662 ], [ 19.174364861739889, 48.111378892603867 ], [ 18.777024773847671, 48.081768296900634 ], [ 18.696512892336926, 47.880953681014404 ], [ 17.857132602620027, 47.758428860050373 ], [ 17.48847293464982, 47.867466132186216 ], [ 16.979666782304037, 48.123497015976305 ], [ 16.879982944413001, 48.47001333270947 ], [ 16.960288120194576, 48.5969823268506 ], [ 17.101984897538898, 48.816968899117114 ], [ 17.545006951577108, 48.80001902932537 ], [ 17.886484816161811, 48.903475246773709 ], [ 17.913511590250465, 48.996492824899086 ], [ 18.104972771891852, 49.043983466175312 ], [ 18.170498488037964, 49.271514797556435 ], [ 18.399993523846177, 49.315000515330041 ], [ 18.554971144289482, 49.495015367218784 ], [ 18.853144158613617, 49.496229763377642 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0.000000, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0.000000, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0.000000, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "brk_group": null, "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Slovenia", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 3.000000, "mapcolor9": 2.000000, "mapcolor13": 12.000000, "pop_est": 2005692.000000, "gdp_md_est": 59340.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99.000000, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.806475457421527, 46.509306138691215 ], [ 14.632471551174829, 46.431817328469549 ], [ 15.137091912504985, 46.65870270444703 ], [ 16.011663852612656, 46.683610744811702 ], [ 16.202298211337364, 46.852385972676963 ], [ 16.370504998447416, 46.841327216166505 ], [ 16.564808383864857, 46.50375092221983 ], [ 15.768732944408553, 46.238108222023449 ], [ 15.671529575267556, 45.834153550797879 ], [ 15.323953891672405, 45.73178253842768 ], [ 15.327674594797429, 45.452316392593232 ], [ 14.935243767972935, 45.471695054702685 ], [ 14.595109490627806, 45.634940904312714 ], [ 14.411968214585414, 45.46616567644746 ], [ 13.715059848697223, 45.500323798192376 ], [ 13.937630242578308, 45.591015936864622 ], [ 13.698109978905478, 46.016778062517353 ], [ 13.806475457421527, 46.509306138691215 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0.000000, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0.000000, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0.000000, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "brk_group": null, "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Sweden", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 2.000000, "mapcolor13": 4.000000, "pop_est": 9059651.000000, "gdp_md_est": 344300.000000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99.000000, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.18317345550193, 65.723740546320172 ], [ 21.21351687997722, 65.026005357515274 ], [ 21.369631381930958, 64.413587958424287 ], [ 19.77887576669022, 63.609554348395037 ], [ 17.847779168375212, 62.74940013289681 ], [ 17.119554884518124, 61.341165676510968 ], [ 17.831346062906391, 60.636583360427409 ], [ 18.787721795332089, 60.081914374422595 ], [ 17.86922488777634, 58.953766181058697 ], [ 16.829185011470088, 58.719826972073392 ], [ 16.447709588291474, 57.041118069071885 ], [ 15.879785597403783, 56.104301866268663 ], [ 14.666681349352075, 56.200885118222175 ], [ 14.100721062891465, 55.407781073622651 ], [ 12.942910597392057, 55.361737372450577 ], [ 12.625100538797028, 56.30708018658197 ], [ 11.787942335668674, 57.441817125063068 ], [ 11.027368605196868, 58.856149400459358 ], [ 11.468271925511146, 59.432393296946039 ], [ 12.300365838274899, 60.117932847730032 ], [ 12.631146681375185, 61.293571682370136 ], [ 11.992064243221563, 61.80036245385655 ], [ 11.930569288794231, 63.128317572676977 ], [ 12.579935336973934, 64.066218980558332 ], [ 13.571916131248713, 64.04911408146971 ], [ 13.919905226302204, 64.44542064071608 ], [ 13.555689731509091, 64.787027696381514 ], [ 15.108411492583002, 66.193866889095474 ], [ 16.108712192456778, 67.302455552836889 ], [ 16.768878614985482, 68.013936672631402 ], [ 17.729181756265348, 68.010551866316277 ], [ 17.993868442464333, 68.567391262477358 ], [ 19.878559604581255, 68.407194322372575 ], [ 20.025268995857886, 69.065138658312705 ], [ 20.645592889089528, 69.106247260200874 ], [ 21.978534783626117, 68.616845608180697 ], [ 23.539473097434438, 67.93600861273525 ], [ 23.565879754335583, 66.396050930437426 ], [ 23.903378533633802, 66.006927395279618 ], [ 22.18317345550193, 65.723740546320172 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0.000000, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0.000000, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0.000000, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "brk_group": null, "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Swaziland", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 6.000000, "mapcolor9": 2.000000, "mapcolor13": 5.000000, "pop_est": 1123913.000000, "gdp_md_est": 5702.000000, "pop_year": -99.000000, "lastcensus": 2007.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99.000000, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.071665480281069, -26.733820082304909 ], [ 31.86806033705108, -27.177927341421277 ], [ 31.282773064913329, -27.285879408478998 ], [ 30.68596194837448, -26.743845310169533 ], [ 30.67660851412964, -26.398078301704608 ], [ 30.949666782359913, -26.022649021104151 ], [ 31.044079624157149, -25.731452325139443 ], [ 31.333157586397903, -25.66019052500895 ], [ 31.83777794772806, -25.843331801051349 ], [ 31.985779249811969, -26.291779880480227 ], [ 32.071665480281069, -26.733820082304909 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0.000000, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0.000000, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0.000000, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "brk_group": null, "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Syrian Arab Republic", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 6.000000, "mapcolor9": 2.000000, "mapcolor13": 6.000000, "pop_est": 20178485.000000, "gdp_md_est": 98830.000000, "pop_year": -99.000000, "lastcensus": 2004.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99.000000, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792340529136084, 33.378686428352225 ], [ 36.834062127435544, 32.312937526980775 ], [ 35.719918247222751, 32.709192409794866 ], [ 35.700797967274752, 32.716013698857381 ], [ 35.836396925608625, 32.868123277308513 ], [ 35.821100701650238, 33.277426459276299 ], [ 36.066460402172055, 33.82491242119255 ], [ 36.611750115715893, 34.201788641897181 ], [ 36.448194207512103, 34.593935248344067 ], [ 35.998402540843642, 34.644914048800004 ], [ 35.905023227692226, 35.410009467097325 ], [ 36.149762811026534, 35.821534735653671 ], [ 36.417550083163036, 36.04061697035506 ], [ 36.685389031731802, 36.259699205056464 ], [ 36.739494256341402, 36.817520453431086 ], [ 37.066761102045831, 36.623036200500621 ], [ 38.167727492024198, 36.901210435527773 ], [ 38.699891391765902, 36.712927354472342 ], [ 39.522580193852548, 36.716053778625991 ], [ 40.673259311695688, 37.091276353497292 ], [ 41.212089471203051, 37.074352321921694 ], [ 42.349591098811771, 37.229872544904097 ], [ 41.837064243340961, 36.605853786763575 ], [ 41.289707472505455, 36.358814602192268 ], [ 41.383965285005814, 35.628316555314356 ], [ 41.006158888519934, 34.419372260062119 ], [ 38.792340529136084, 33.378686428352225 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0.000000, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0.000000, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0.000000, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "brk_group": null, "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Chad", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 1.000000, "mapcolor9": 8.000000, "mapcolor13": 6.000000, "pop_est": 10329208.000000, "gdp_md_est": 15860.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99.000000, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4.000000, "long_len": 4.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.495787387762903, 12.859396267137356 ], [ 14.595781284247607, 13.330426947477861 ], [ 13.95447675950561, 13.353448798063766 ], [ 13.956698846094127, 13.996691189016929 ], [ 13.540393507550789, 14.367133693901224 ], [ 13.97217, 15.68437 ], [ 15.247731154041844, 16.627305813050782 ], [ 15.300441114979719, 17.927949937405003 ], [ 15.685740594147774, 19.957180080642388 ], [ 15.903246697664315, 20.387618923417506 ], [ 15.487148064850146, 20.730414537025638 ], [ 15.47106, 21.04845 ], [ 15.096887648181848, 21.308518785074909 ], [ 14.8513, 22.862950000000126 ], [ 15.86085, 23.40972 ], [ 19.84926, 21.49509 ], [ 23.837660000000142, 19.580470000000105 ], [ 23.886890000000108, 15.61084 ], [ 23.024590000000103, 15.68072 ], [ 22.56795000000011, 14.944290000000137 ], [ 22.30351, 14.32682 ], [ 22.51202, 14.09318 ], [ 22.18329, 13.78648 ], [ 22.29658, 13.37232 ], [ 22.03759, 12.95546 ], [ 21.93681, 12.588180000000136 ], [ 22.28801, 12.64605 ], [ 22.49762, 12.26024 ], [ 22.50869, 11.67936 ], [ 22.87622, 11.384610000000123 ], [ 22.864165480244253, 11.142395127807617 ], [ 22.23112918466876, 10.97188873946061 ], [ 21.723821648859541, 10.567055568885962 ], [ 21.000868361096309, 9.47598521569148 ], [ 20.059685499764271, 9.012706000194839 ], [ 19.094008009526078, 9.074846910025769 ], [ 18.812009718509273, 8.982914536978626 ], [ 18.911021762780592, 8.630894680206438 ], [ 18.389554884523307, 8.281303615751881 ], [ 17.964929640380888, 7.890914008002994 ], [ 16.705988396886369, 7.508327541529979 ], [ 16.456184523187403, 7.73477366783294 ], [ 16.290561557691888, 7.754307359239419 ], [ 16.106231723706742, 7.497087917506462 ], [ 15.279460483469165, 7.421924546738012 ], [ 15.436091749745742, 7.692812404811889 ], [ 15.120865512765306, 8.382150173369439 ], [ 14.979995558337691, 8.796104234243444 ], [ 14.544466586981855, 8.96586131432224 ], [ 13.954218377344091, 9.549494940626687 ], [ 14.171466098699113, 10.021378282100045 ], [ 14.62720055508106, 9.920919297724595 ], [ 14.9093538753948, 9.99212942142276 ], [ 15.467872755605242, 9.982336737503545 ], [ 14.923564894275046, 10.891325181517516 ], [ 14.960151808337685, 11.555574042197236 ], [ 14.89336, 12.21905 ], [ 14.495787387762903, 12.859396267137356 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0.000000, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0.000000, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0.000000, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "brk_group": null, "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "note_adm0": null, "note_brk": null, "name_sort": "Togo", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 1.000000, "mapcolor9": 3.000000, "mapcolor13": 5.000000, "pop_est": 6019877.000000, "gdp_md_est": 5118.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99.000000, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4.000000, "long_len": 4.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.865240512712319, 6.142157701029731 ], [ 1.060121697604927, 5.928837388528876 ], [ 0.836931186536333, 6.279978745952149 ], [ 0.570384148774849, 6.914358628767189 ], [ 0.490957472342245, 7.411744289576475 ], [ 0.712029249686879, 8.312464504423829 ], [ 0.461191847342121, 8.677222601756014 ], [ 0.365900506195885, 9.465003973829482 ], [ 0.367579990245389, 10.19121287682718 ], [ -0.049784715159944, 10.706917832883931 ], [ 0.023802524423701, 11.018681748900804 ], [ 0.899563022474069, 10.99733938236426 ], [ 0.772335646171484, 10.470808213742359 ], [ 1.077795037448738, 10.175606594275024 ], [ 1.425060662450136, 9.825395412633 ], [ 1.46304284018467, 9.334624335157088 ], [ 1.664477573258381, 9.128590399609379 ], [ 1.618950636409238, 6.832038072126238 ], [ 1.865240512712319, 6.142157701029731 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0.000000, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0.000000, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0.000000, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "brk_group": null, "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Thailand", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 6.000000, "mapcolor9": 8.000000, "mapcolor13": 1.000000, "pop_est": 65905410.000000, "gdp_md_est": 547400.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99.000000, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.584932489026698, 12.186594956913282 ], [ 101.687157830819956, 12.645740057826572 ], [ 100.831809523524868, 12.627084865769206 ], [ 100.978467238369205, 13.412721665902566 ], [ 100.097797479251113, 13.406856390837433 ], [ 100.018732537844556, 12.307001044153354 ], [ 99.47892052612363, 10.846366685423547 ], [ 99.153772414143162, 9.963061428258555 ], [ 99.222398716226763, 9.239255479362427 ], [ 99.873831821698133, 9.20786204674512 ], [ 100.279646844486223, 8.295152899606052 ], [ 100.459274123132758, 7.429572658717177 ], [ 101.017327915452725, 6.856868597842478 ], [ 101.62307905477806, 6.74062246340192 ], [ 102.141186964936381, 6.221636053894628 ], [ 101.814281854257985, 5.810808417174242 ], [ 101.154218784593866, 5.691384182147715 ], [ 101.075515578213356, 6.204867051615921 ], [ 100.259596388756961, 6.642824815289543 ], [ 100.085756870527106, 6.464489447450291 ], [ 99.690690545655755, 6.848212795433597 ], [ 99.519641554769635, 7.34345388430276 ], [ 98.988252801512303, 7.907993068875328 ], [ 98.503786248775995, 8.382305202666288 ], [ 98.339661899817003, 7.794511623562386 ], [ 98.150009393305822, 8.350007432483878 ], [ 98.259150018306258, 8.973922837759801 ], [ 98.553550653073046, 9.932959906448545 ], [ 99.038120558673981, 10.960545762572437 ], [ 99.587286004639722, 11.892762762901697 ], [ 99.196353794351666, 12.80474843998867 ], [ 99.212011753336085, 13.269293728076464 ], [ 99.097755161538757, 13.827502549693278 ], [ 98.430819126379873, 14.622027696180837 ], [ 98.192074009191401, 15.123702500870351 ], [ 98.537375929765716, 15.308497422746084 ], [ 98.903348423256759, 16.177824204976119 ], [ 98.49376102091135, 16.837835598207931 ], [ 97.859122755934862, 17.567946071843664 ], [ 97.375896437573545, 18.445437730375815 ], [ 97.797782830804408, 18.627080389881755 ], [ 98.25372399291561, 19.708203029860044 ], [ 98.959675734454876, 19.752980658440947 ], [ 99.543309360759309, 20.186597601802063 ], [ 100.115987583417848, 20.417849636308187 ], [ 100.548881056726884, 20.109237982661128 ], [ 100.606293573003157, 19.508344427971224 ], [ 101.282014601651696, 19.462584947176765 ], [ 101.035931431077771, 18.408928330961615 ], [ 101.059547560635167, 17.51249725999449 ], [ 102.113591750092482, 18.109101670804165 ], [ 102.413004998791621, 17.932781683824288 ], [ 102.998705682387708, 17.961694647691601 ], [ 103.20019209189374, 18.309632066312773 ], [ 103.956476678485302, 18.240954087796879 ], [ 104.716947056092494, 17.428858954330082 ], [ 104.779320509868796, 16.441864935771449 ], [ 105.589038527450157, 15.570316066952858 ], [ 105.544338413517693, 14.723933620660418 ], [ 105.218776890078885, 14.273211778210694 ], [ 104.281418084736615, 14.416743068901367 ], [ 102.988422072361629, 14.225721136934467 ], [ 102.348099399833018, 13.394247341358223 ], [ 102.584932489026698, 12.186594956913282 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0.000000, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0.000000, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0.000000, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "brk_group": null, "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Tajikistan", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 6.000000, "mapcolor9": 2.000000, "mapcolor13": 5.000000, "pop_est": 7349145.000000, "gdp_md_est": 13160.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99.000000, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.01419803252017, 40.244365546218233 ], [ 70.648018833299972, 39.935753892571171 ], [ 69.559609816368521, 40.103211371412982 ], [ 69.46488691597753, 39.526683254548701 ], [ 70.549161818325615, 39.604197902986499 ], [ 71.784693637992007, 39.27946320246437 ], [ 73.675379266254794, 39.431236884105601 ], [ 73.928852166646436, 38.505815334622739 ], [ 74.257514276022732, 38.606506862943448 ], [ 74.864815708316826, 38.378846340481601 ], [ 74.829985792952101, 37.990007025701402 ], [ 74.980002475895418, 37.419990139305895 ], [ 73.9486959166465, 37.4215662704908 ], [ 73.260055779925011, 37.495256862939002 ], [ 72.636889682917285, 37.047558091778356 ], [ 72.193040805962397, 36.948287665345674 ], [ 71.844638299450594, 36.738171291646921 ], [ 71.448693475230243, 37.06564484308052 ], [ 71.541917759084782, 37.905774441065645 ], [ 71.239403924448169, 37.953265082341886 ], [ 71.348131137990265, 38.258905341132163 ], [ 70.806820509732887, 38.486281643216415 ], [ 70.376304152309302, 38.138395901027522 ], [ 70.270574171840138, 37.735164699854025 ], [ 70.116578403610333, 37.588222764632093 ], [ 69.518785434857961, 37.60899669041342 ], [ 69.196272820924378, 37.151143500307427 ], [ 68.859445835245936, 37.344335842430596 ], [ 68.135562371701383, 37.023115139304309 ], [ 67.829999627559516, 37.144994004864685 ], [ 68.392032505165957, 38.157025254868742 ], [ 68.176025018185925, 38.901553453113905 ], [ 67.442219679641312, 39.140143541005486 ], [ 67.701428664017357, 39.580478420564532 ], [ 68.536416456989429, 39.533452867178937 ], [ 69.011632928345506, 40.086158148756667 ], [ 69.329494663372827, 40.727824408524853 ], [ 70.666622348925046, 40.960213324541414 ], [ 70.458159621059622, 40.496494859370287 ], [ 70.601406691372688, 40.218527330072291 ], [ 71.01419803252017, 40.244365546218233 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0.000000, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0.000000, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0.000000, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "brk_group": null, "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Turkmenistan", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 2.000000, "mapcolor9": 1.000000, "mapcolor13": 9.000000, "pop_est": 4884887.000000, "gdp_md_est": 29780.000000, "pop_year": -99.000000, "lastcensus": 1995.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99.000000, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12.000000, "long_len": 12.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.210817091725744, 35.650072333309225 ], [ 61.123070509694145, 36.491597194966246 ], [ 60.377637973883878, 36.527383124328367 ], [ 59.234761997316809, 37.412987982730343 ], [ 58.436154412678206, 37.522309475243802 ], [ 57.330433790928986, 38.02922943781094 ], [ 56.619366082592819, 38.121394354803485 ], [ 56.180374790273333, 37.93512665460743 ], [ 55.511578403551908, 37.964117133123167 ], [ 54.800303989486565, 37.392420762678185 ], [ 53.921597934795557, 37.198918361961262 ], [ 53.735511102112518, 37.906136176091692 ], [ 53.880928582581845, 38.952093003895357 ], [ 53.101027866432901, 39.290573635407128 ], [ 53.35780805849123, 39.975286363274449 ], [ 52.693972609269821, 40.033629055331971 ], [ 52.915251092343624, 40.876523342444727 ], [ 53.858139275941134, 40.631034450842179 ], [ 54.73684533063215, 40.951014919593462 ], [ 54.008310988181314, 41.551210842447418 ], [ 53.72171349469059, 42.12319143327003 ], [ 52.916749708880076, 41.868116563477329 ], [ 52.814688755103617, 41.135370591794711 ], [ 52.502459751196149, 41.78331553808637 ], [ 52.944293247291654, 42.116034247397593 ], [ 54.079417759014952, 42.324109402020831 ], [ 54.755345493392639, 42.043971462566574 ], [ 55.45525109235377, 41.25985911718584 ], [ 55.968191359282912, 41.308641669269363 ], [ 57.096391229079103, 41.322310085610567 ], [ 56.932215203687804, 41.826026109375604 ], [ 57.786529982337079, 42.170552883465518 ], [ 58.62901085799146, 42.751551011723052 ], [ 59.976422153569786, 42.223081976890207 ], [ 60.083340691981675, 41.425146185871405 ], [ 60.465952996670694, 41.220326646482548 ], [ 61.547178989513561, 41.266370347654615 ], [ 61.882714064384693, 41.084856879229406 ], [ 62.374260288345006, 40.053886216790389 ], [ 63.518014764261032, 39.363256537425642 ], [ 64.170223016216767, 38.892406724598246 ], [ 65.215998976507393, 38.4026950139843 ], [ 66.546150343700219, 37.974684963526869 ], [ 66.51860680528867, 37.362784328758792 ], [ 66.217384881459338, 37.39379018813392 ], [ 65.745630731066825, 37.661164048812068 ], [ 65.588947788357842, 37.305216783185642 ], [ 64.746105177677407, 37.111817735333304 ], [ 64.546479119733903, 36.312073269184268 ], [ 63.98289594915871, 36.007957465146603 ], [ 63.193538445900352, 35.857165635718914 ], [ 62.98466230657661, 35.404040839167621 ], [ 62.230651483005886, 35.270663967422294 ], [ 61.210817091725744, 35.650072333309225 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0.000000, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0.000000, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0.000000, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "brk_group": null, "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 4.000000, "mapcolor13": 3.000000, "pop_est": 1131612.000000, "gdp_md_est": 2520.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99.000000, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11.000000, "long_len": 11.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.968682489116233, -8.892790215697083 ], [ 125.086246372580263, -8.65688730228468 ], [ 125.947072381698263, -8.432094821815035 ], [ 126.644704217638548, -8.398246758663852 ], [ 126.957243280139835, -8.273344821814398 ], [ 127.33592817597463, -8.397316582882603 ], [ 126.967991978056546, -8.668256117388893 ], [ 125.925885044458596, -9.106007175333353 ], [ 125.088520135601087, -9.393173109579294 ], [ 125.070019972840612, -9.089987481322872 ], [ 124.968682489116233, -8.892790215697083 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0.000000, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0.000000, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0.000000, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "brk_group": null, "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Trinidad and Tobago", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 6.000000, "mapcolor9": 2.000000, "mapcolor13": 5.000000, "pop_est": 1310000.000000, "gdp_md_est": 29010.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99.000000, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19.000000, "long_len": 19.000000, "abbrev_len": 5.000000, "tiny": 2.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.68, 10.76 ], [ -61.105, 10.89 ], [ -60.895, 10.855 ], [ -60.935, 10.11 ], [ -61.77, 10.0 ], [ -61.95, 10.09 ], [ -61.66, 10.365 ], [ -61.68, 10.76 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0.000000, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0.000000, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0.000000, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "brk_group": null, "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Tunisia", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 3.000000, "mapcolor9": 3.000000, "mapcolor13": 2.000000, "pop_est": 10486339.000000, "gdp_md_est": 81710.000000, "pop_year": -99.000000, "lastcensus": 2004.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99.000000, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.482139926805274, 30.307556057246188 ], [ 9.055602654668149, 32.102691962201291 ], [ 8.439102817426118, 32.506284898400821 ], [ 8.430472853233368, 32.748337307255952 ], [ 7.612641635782182, 33.344114895148962 ], [ 7.524481642292244, 34.09737641045146 ], [ 8.140981479534304, 34.65514598239379 ], [ 8.376367628623768, 35.479876003555944 ], [ 8.217824334352315, 36.433176988260286 ], [ 8.420964389691676, 36.946427313783161 ], [ 9.509993523810607, 37.349994411766545 ], [ 10.210002475636317, 37.230001735984814 ], [ 10.180650262094531, 36.724037787415085 ], [ 11.02886722173335, 37.092103176413957 ], [ 11.100025668999251, 36.899996039368915 ], [ 10.600004510143094, 36.410000108377375 ], [ 10.593286573945138, 35.947444362932814 ], [ 10.939518670300687, 35.698984076473494 ], [ 10.807847120821009, 34.83350718844919 ], [ 10.149592726287125, 34.330773016897709 ], [ 10.339658644256616, 33.785741685515319 ], [ 10.856836378633687, 33.768740139291282 ], [ 11.108500603895122, 33.293342800422195 ], [ 11.488787469131012, 33.136995754523141 ], [ 11.432253452203696, 32.368903103152874 ], [ 10.944789666394456, 32.081814683555365 ], [ 10.636901482799487, 31.761420803345757 ], [ 9.950225050505082, 31.376069647745258 ], [ 10.056575148161755, 30.961831366493598 ], [ 9.970017124072854, 30.53932485607524 ], [ 9.482139926805274, 30.307556057246188 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0.000000, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0.000000, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0.000000, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "brk_group": null, "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Turkey", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 3.000000, "mapcolor9": 8.000000, "mapcolor13": 4.000000, "pop_est": 76805524.000000, "gdp_md_est": 902700.000000, "pop_year": -99.000000, "lastcensus": 2000.000000, "gdp_year": -99.000000, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99.000000, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.913127068842158, 41.335358384764305 ], [ 38.347664829264517, 40.948586127275718 ], [ 39.512606642420252, 41.102762763018575 ], [ 40.373432651538252, 41.013672593747344 ], [ 41.554084100110714, 41.535656236327611 ], [ 42.619548781104555, 41.583172715819927 ], [ 43.582745802592711, 41.092143256182567 ], [ 43.752657911968498, 40.740200914058818 ], [ 43.65643639504097, 40.253563951166171 ], [ 44.400008579288766, 40.005000311842309 ], [ 44.793989699082005, 39.713002631177034 ], [ 44.109225294782362, 39.428136298168056 ], [ 44.421402622257602, 38.281281236314527 ], [ 44.225755649600529, 37.971584377589352 ], [ 44.772699008977753, 37.170444647768448 ], [ 44.293451775902867, 37.00151439060636 ], [ 43.942258742047358, 37.256227525372935 ], [ 42.779125604021857, 37.385263576805812 ], [ 42.349591098811771, 37.229872544904111 ], [ 41.212089471203029, 37.074352321921737 ], [ 40.673259311695716, 37.091276353497364 ], [ 39.522580193852519, 36.716053778626019 ], [ 38.699891391765931, 36.712927354472328 ], [ 38.16772749202417, 36.901210435527787 ], [ 37.066761102045831, 36.623036200500621 ], [ 36.739494256341374, 36.817520453431115 ], [ 36.68538903173183, 36.259699205056506 ], [ 36.417550083163093, 36.040616970355103 ], [ 36.149762811026591, 35.821534735653671 ], [ 35.782084995269855, 36.274995429014922 ], [ 36.160821567537056, 36.650605577128374 ], [ 35.550936313628341, 36.565442816711339 ], [ 34.714553256984374, 36.795532131490916 ], [ 34.02689497247647, 36.219960028623973 ], [ 32.509158156064103, 36.1075637883892 ], [ 31.699595167779563, 36.644275214172609 ], [ 30.621624790171069, 36.677864895162315 ], [ 30.391096225717121, 36.26298065850699 ], [ 29.699975620245567, 36.144357408181008 ], [ 28.732902866335394, 36.676831366516438 ], [ 27.64118655773737, 36.658822129862756 ], [ 27.048767937943296, 37.653360907536012 ], [ 26.318218214633049, 38.208133246405396 ], [ 26.804700148228733, 38.985760199533559 ], [ 26.170785353304382, 39.463612168936464 ], [ 27.280019972449395, 40.420013739578309 ], [ 28.81997765474722, 40.460011298172219 ], [ 29.240003696415584, 41.219990749672689 ], [ 31.145933872204438, 41.087621568357065 ], [ 32.347979363745793, 41.736264146484643 ], [ 33.513282911927519, 42.018960069337311 ], [ 35.16770389175187, 42.040224921225445 ], [ 36.913127068842158, 41.335358384764305 ] ] ], [ [ [ 27.192376743282409, 40.690565700842455 ], [ 26.35800906749779, 40.151993923496491 ], [ 26.043351271272542, 40.617753607743168 ], [ 26.056942172965336, 40.824123440100749 ], [ 26.294602085075695, 40.936261298174173 ], [ 26.604195590936285, 41.56211456966102 ], [ 26.117041863720829, 41.826904608724561 ], [ 27.135739373490509, 42.141484890301314 ], [ 27.996720411905414, 42.007358710287775 ], [ 28.115524529744448, 41.622886054036286 ], [ 28.98844282401879, 41.299934190428189 ], [ 28.806438429486747, 41.054962063148537 ], [ 27.619017368284119, 40.999823309893117 ], [ 27.192376743282409, 40.690565700842455 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0.000000, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0.000000, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1.000000, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "brk_group": null, "abbrev": "Taiwan", "postal": "TW", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 5.000000, "mapcolor9": 7.000000, "mapcolor13": 2.000000, "pop_est": 22974347.000000, "gdp_md_est": 712000.000000, "pop_year": -99.000000, "lastcensus": -99.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99.000000, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.777817824389928, 24.3942735865194 ], [ 121.175632358892742, 22.790857245367167 ], [ 120.747079705896226, 21.970571397382113 ], [ 120.220083449383679, 22.814860948166739 ], [ 120.106188592612398, 23.556262722258236 ], [ 120.694679803552248, 24.538450832613737 ], [ 121.495044386888779, 25.295458889257386 ], [ 121.951243931161457, 24.997595933527037 ], [ 121.777817824389928, 24.3942735865194 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0.000000, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0.000000, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0.000000, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "brk_group": null, "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Tanzania", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 6.000000, "mapcolor9": 2.000000, "mapcolor13": 2.000000, "pop_est": 41048532.000000, "gdp_md_est": 54250.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99.000000, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903711197104599, -0.95 ], [ 34.07262, -1.05982 ], [ 37.69869, -3.09699 ], [ 37.7669, -3.67712 ], [ 39.20222, -4.67677 ], [ 38.74054, -5.90895 ], [ 38.79977, -6.47566 ], [ 39.44, -6.839999999999861 ], [ 39.470000000000141, -7.1 ], [ 39.19469, -7.7039 ], [ 39.25203, -8.00781 ], [ 39.18652, -8.48551 ], [ 39.53574, -9.112369999999885 ], [ 39.9496, -10.0984 ], [ 40.31659, -10.317099999999868 ], [ 39.521, -10.89688 ], [ 38.427556593587781, -11.285202325081627 ], [ 37.82764, -11.26879 ], [ 37.47129, -11.56876 ], [ 36.775150994622891, -11.594537448780784 ], [ 36.514081658684404, -11.720938002166747 ], [ 35.312397902169153, -11.439146416879169 ], [ 34.559989047999466, -11.520020033415847 ], [ 34.28, -10.16 ], [ 33.940837724096525, -9.693673841980285 ], [ 33.73972, -9.41715 ], [ 32.75937544122138, -9.230599053589003 ], [ 32.191864861791942, -8.930358981973257 ], [ 31.556348097466639, -8.762048841998649 ], [ 31.157751336950071, -8.594578747317314 ], [ 30.74, -8.34 ], [ 30.2, -7.08 ], [ 29.62, -6.52 ], [ 29.419992710088309, -5.939998874539299 ], [ 29.51998660657307, -5.419978936386258 ], [ 29.339997592900374, -4.499983412294114 ], [ 29.753512404099865, -4.452389418153302 ], [ 30.11632, -4.09012 ], [ 30.50554, -3.56858 ], [ 30.75224, -3.35931 ], [ 30.74301, -3.03431 ], [ 30.52766, -2.80762 ], [ 30.46967, -2.41383 ], [ 30.758308953583139, -2.287250257988376 ], [ 30.816134881317851, -1.698914076345375 ], [ 30.419104852019302, -1.134659112150416 ], [ 30.769860000000108, -1.01455 ], [ 31.86617, -1.02736 ], [ 33.903711197104599, -0.95 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0.000000, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0.000000, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0.000000, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "brk_group": null, "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Uganda", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 3.000000, "mapcolor9": 6.000000, "mapcolor13": 4.000000, "pop_est": 32369558.000000, "gdp_md_est": 39380.000000, "pop_year": -99.000000, "lastcensus": 2002.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99.000000, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.86617, -1.02736 ], [ 30.769860000000108, -1.01455 ], [ 30.419104852019302, -1.134659112150416 ], [ 29.821518588996128, -1.443322442229771 ], [ 29.579466180141026, -1.341313164885605 ], [ 29.587837762172171, -0.587405694179381 ], [ 29.8195, -0.2053 ], [ 29.875778842902434, 0.597379868976361 ], [ 30.086153598762792, 1.062312730306417 ], [ 30.468507521290292, 1.583805446779706 ], [ 30.85267011894814, 1.849396470543752 ], [ 31.17414920423596, 2.204465236821306 ], [ 30.77332, 2.339890000000139 ], [ 30.83385, 3.50917 ], [ 31.24556, 3.7819 ], [ 31.88145, 3.55827 ], [ 32.68642, 3.79232 ], [ 33.3900000000001, 3.79 ], [ 34.005, 4.249884947362148 ], [ 34.47913, 3.5556 ], [ 34.59607, 3.053740000000118 ], [ 35.03599, 1.90584 ], [ 34.6721, 1.17694 ], [ 34.18, 0.515 ], [ 33.893568969667001, 0.109813537861839 ], [ 33.903711197104599, -0.95 ], [ 31.86617, -1.02736 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0.000000, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0.000000, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0.000000, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "brk_group": null, "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ukraine", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 1.000000, "mapcolor9": 6.000000, "mapcolor13": 3.000000, "pop_est": 45700395.000000, "gdp_md_est": 339800.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99.000000, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.785998162571587, 52.101677964885454 ], [ 32.159412062312668, 52.061266994833218 ], [ 32.412058139787632, 52.288694973349749 ], [ 32.715760532366971, 52.238465481162052 ], [ 33.752699822735707, 52.335074571331695 ], [ 34.391730584457008, 51.768881740925792 ], [ 34.141978387190392, 51.566413479206233 ], [ 34.224815708154267, 51.255993150428957 ], [ 35.02218305841788, 51.207572333371459 ], [ 35.377923618315123, 50.77395539001035 ], [ 35.356116163887947, 50.577197374059061 ], [ 36.626167840325337, 50.225590928745135 ], [ 37.393459506995072, 50.383953355503593 ], [ 38.010631137856905, 49.915661526074629 ], [ 38.594988234213417, 49.926461900423632 ], [ 40.069058465339111, 49.601055406281702 ], [ 40.08078901546935, 49.307429917999286 ], [ 39.674663934087533, 48.783818467801879 ], [ 39.895632358567582, 48.232405097031432 ], [ 39.738277622238826, 47.89893707945199 ], [ 38.7705847511412, 47.825608222029814 ], [ 38.255112339029751, 47.546400458356814 ], [ 38.22353803889942, 47.102189846375886 ], [ 37.425137159989987, 47.022220567404204 ], [ 36.75985477066439, 46.698700263040934 ], [ 35.823684523264831, 46.645964463887069 ], [ 34.962341749823878, 46.273196519549643 ], [ 35.020787794745985, 45.651218980484657 ], [ 35.510008579253167, 45.409993394546191 ], [ 36.529997999830158, 45.469989732437057 ], [ 36.33471276219916, 45.113215643893966 ], [ 35.239999220528119, 44.939996242851606 ], [ 33.882511020652885, 44.361478583344073 ], [ 33.326420932760044, 44.564877020844889 ], [ 33.546924269349461, 45.03477081967489 ], [ 32.454174432105503, 45.327466132176077 ], [ 32.630804477679135, 45.519185695978912 ], [ 33.588162062318389, 45.851568508480241 ], [ 33.298567335754711, 46.080598456397844 ], [ 31.744140252415178, 46.333347886737386 ], [ 31.675307244602408, 46.706245022155542 ], [ 30.748748813609101, 46.583100084004002 ], [ 30.377608676888883, 46.03241018328567 ], [ 29.603289015427436, 45.293308010431126 ], [ 29.149724969201653, 45.464925442072456 ], [ 28.679779493939382, 45.304030870131704 ], [ 28.233553501099042, 45.488283189468376 ], [ 28.485269402792767, 45.596907050145902 ], [ 28.659987420371579, 45.939986884131642 ], [ 28.933717482221624, 46.258830471372498 ], [ 28.862972446414062, 46.437889309263831 ], [ 29.072106967899291, 46.517677720722496 ], [ 29.170653924279886, 46.3792623968287 ], [ 29.759971958136394, 46.349987697935362 ], [ 30.024658644335375, 46.42393667254504 ], [ 29.838210076626297, 46.525325832701689 ], [ 29.908851759569302, 46.674360663431457 ], [ 29.559674106573112, 46.928582872091326 ], [ 29.415135125452736, 47.346645209332578 ], [ 29.050867954227328, 47.510226955752501 ], [ 29.122698195113031, 47.849095160506465 ], [ 28.670891147585166, 48.118148505234103 ], [ 28.259546746541844, 48.155562242213421 ], [ 27.522537469195157, 48.467119452501116 ], [ 26.857823520624805, 48.368210761094495 ], [ 26.619336785597795, 48.220726223333472 ], [ 26.197450392366932, 48.220881252630349 ], [ 25.945941196402401, 47.987148749374214 ], [ 25.207743361112989, 47.891056423527473 ], [ 24.866317172960578, 47.737525743188314 ], [ 24.402056105250381, 47.981877753280429 ], [ 23.760958286237411, 47.985598456405455 ], [ 23.142236362406805, 48.096341050806949 ], [ 22.710531447040495, 47.882193915389408 ], [ 22.640819939878753, 48.150239569687358 ], [ 22.085608351334855, 48.422264309271789 ], [ 22.28084191253356, 48.825392157580673 ], [ 22.558137648211755, 49.085738023467144 ], [ 22.776418898212626, 49.027395331409622 ], [ 22.518450148211603, 49.476773586619743 ], [ 23.426508416444392, 50.308505764357456 ], [ 23.922757195743262, 50.424881089878753 ], [ 24.029985792748903, 50.705406602575181 ], [ 23.527070753684374, 51.57845408793024 ], [ 24.00507775238421, 51.617443956094462 ], [ 24.553106316839518, 51.888461005249184 ], [ 25.327787713327009, 51.910656032918553 ], [ 26.337958611768556, 51.832288723347929 ], [ 27.454066196408434, 51.592303371784467 ], [ 28.241615024536571, 51.572227077839067 ], [ 28.617612745892249, 51.427713934934843 ], [ 28.992835320763533, 51.602044379271476 ], [ 29.254938185347925, 51.368234361366895 ], [ 30.157363722460897, 51.416138414101468 ], [ 30.555117221811457, 51.319503485715657 ], [ 30.619454380014844, 51.822806098022376 ], [ 30.927549269338982, 52.04235342061439 ], [ 31.785998162571587, 52.101677964885454 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0.000000, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0.000000, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0.000000, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "brk_group": null, "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Uruguay", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 2.000000, "mapcolor9": 2.000000, "mapcolor13": 10.000000, "pop_est": 3494382.000000, "gdp_md_est": 43160.000000, "pop_year": -99.000000, "lastcensus": 2004.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99.000000, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.625133429582959, -30.216294854454262 ], [ -56.976025763564735, -30.109686374636127 ], [ -55.973244594940937, -30.883075860316303 ], [ -55.601510179249345, -30.853878676071393 ], [ -54.572451544805119, -31.494511407193748 ], [ -53.787951626182192, -32.047242526987624 ], [ -53.209588995971544, -32.727666110974724 ], [ -53.650543992718099, -33.20200408298183 ], [ -53.373661668498244, -33.768377780900764 ], [ -53.806425950726535, -34.396814874002231 ], [ -54.93586605489773, -34.952646579733624 ], [ -55.674089728403288, -34.752658786764073 ], [ -56.215297003796067, -34.859835707337417 ], [ -57.139685024633103, -34.430456231424245 ], [ -57.81786068381551, -34.462547295877499 ], [ -58.427074144104388, -33.909454441057576 ], [ -58.349611172098875, -33.263188978815407 ], [ -58.132647671121447, -33.040566908502015 ], [ -58.142440355040762, -32.044503676076154 ], [ -57.874937303281882, -31.016556084926208 ], [ -57.625133429582959, -30.216294854454262 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1.000000, "level": 2.000000, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0.000000, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0.000000, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0.000000, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 5.000000, "mapcolor9": 1.000000, "mapcolor13": 1.000000, "pop_est": 313973000.000000, "gdp_md_est": 15094000.000000, "pop_year": 0.000000, "lastcensus": 2010.000000, "gdp_year": 0.000000, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0.000000, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99.000000, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13.000000, "long_len": 13.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.54211, 19.08348 ], [ -155.68817, 18.91619 ], [ -155.93665, 19.05939 ], [ -155.90806, 19.33888 ], [ -156.07347, 19.70294 ], [ -156.02368, 19.81422 ], [ -155.85008, 19.97729 ], [ -155.91907, 20.17395 ], [ -155.86108, 20.26721 ], [ -155.78505, 20.2487 ], [ -155.40214, 20.07975 ], [ -155.22452, 19.99302 ], [ -155.06226, 19.8591 ], [ -154.80741, 19.50871 ], [ -154.83147, 19.45328 ], [ -155.22217, 19.23972 ], [ -155.54211, 19.08348 ] ] ], [ [ [ -156.07926, 20.64397 ], [ -156.41445, 20.57241 ], [ -156.58673, 20.783 ], [ -156.70167, 20.8643 ], [ -156.71055, 20.92676 ], [ -156.61258, 21.01249 ], [ -156.25711, 20.91745 ], [ -155.99566, 20.76404 ], [ -156.07926, 20.64397 ] ] ], [ [ [ -156.75824, 21.17684 ], [ -156.78933, 21.06873 ], [ -157.32521, 21.09777 ], [ -157.25027, 21.21958 ], [ -156.75824, 21.17684 ] ] ], [ [ [ -157.65283, 21.32217 ], [ -157.70703, 21.26442 ], [ -157.7786, 21.27729 ], [ -158.12667, 21.31244 ], [ -158.2538, 21.53919 ], [ -158.29265, 21.57912 ], [ -158.0252, 21.71696 ], [ -157.94161, 21.65272 ], [ -157.65283, 21.32217 ] ] ], [ [ [ -159.34512, 21.982 ], [ -159.46372, 21.88299 ], [ -159.80051, 22.06533 ], [ -159.74877, 22.1382 ], [ -159.5962, 22.23618 ], [ -159.36569, 22.21494 ], [ -159.34512, 21.982 ] ] ], [ [ [ -94.81758, 49.38905 ], [ -94.639999999999873, 48.840000000000117 ], [ -94.32914, 48.670740000000109 ], [ -93.63087, 48.60926 ], [ -92.61, 48.45 ], [ -91.64, 48.14 ], [ -90.83, 48.27 ], [ -89.6, 48.010000000000105 ], [ -89.272917446636683, 48.019808254582841 ], [ -88.378114183286527, 48.30291758889382 ], [ -87.439792623300235, 47.94 ], [ -86.46199083122815, 47.553338019392044 ], [ -85.65236324740323, 47.220218817730512 ], [ -84.876079881514869, 46.900083319682381 ], [ -84.779238247399832, 46.637101955749131 ], [ -84.543748745445669, 46.538684190449231 ], [ -84.6049, 46.4396 ], [ -84.3367, 46.408770000000118 ], [ -84.142119513673293, 46.512225857115737 ], [ -84.091851264161477, 46.27541860613826 ], [ -83.890765347005669, 46.116926988299156 ], [ -83.616130947590506, 46.116926988299156 ], [ -83.469550747394635, 45.994686387712591 ], [ -83.592850714843081, 45.81689362241255 ], [ -82.550924648758183, 45.34751658790546 ], [ -82.337763125431081, 44.44 ], [ -82.13764238150398, 43.571087551440002 ], [ -82.43, 42.980000000000103 ], [ -82.899999999999892, 42.430000000000149 ], [ -83.119999999999891, 42.08 ], [ -83.141999681312569, 41.975681057293002 ], [ -83.029810146806938, 41.832795722006011 ], [ -82.690089280920176, 41.675105088867326 ], [ -82.439277716791622, 41.675105088867326 ], [ -81.277746548167073, 42.209025987306859 ], [ -80.247447679347857, 42.366199856122677 ], [ -78.939362148743697, 42.863611355148123 ], [ -78.92, 42.965 ], [ -79.009999999999877, 43.27 ], [ -79.171673550111876, 43.466339423184309 ], [ -78.720279914042379, 43.62508942318496 ], [ -77.737885097957616, 43.629055589363389 ], [ -76.820034145805579, 43.628784288093755 ], [ -76.5, 44.018458893758606 ], [ -76.375, 44.09631 ], [ -75.31821, 44.816450000000174 ], [ -74.867, 45.000480000000124 ], [ -73.34783, 45.00738 ], [ -71.505059999999872, 45.008200000000102 ], [ -71.405, 45.255000000000138 ], [ -71.08482, 45.305240000000168 ], [ -70.659999999999798, 45.46 ], [ -70.305, 45.915 ], [ -69.99997, 46.69307 ], [ -69.237216, 47.447781 ], [ -68.905, 47.185 ], [ -68.23444, 47.35486 ], [ -67.79046, 47.06636 ], [ -67.79134, 45.702810000000142 ], [ -67.13741, 45.13753 ], [ -66.96466, 44.809700000000163 ], [ -68.03252, 44.3252 ], [ -69.059999999999889, 43.98 ], [ -70.11617, 43.684050000000155 ], [ -70.645475633410996, 43.09023834896405 ], [ -70.81489, 42.8653 ], [ -70.825, 42.335 ], [ -70.495, 41.805 ], [ -70.08, 41.78 ], [ -70.185, 42.145 ], [ -69.88497, 41.922830000000118 ], [ -69.96503, 41.637170000000168 ], [ -70.64, 41.475 ], [ -71.12039, 41.494450000000171 ], [ -71.859999999999843, 41.32 ], [ -72.295, 41.27 ], [ -72.87643, 41.22065 ], [ -73.71, 40.931102351654488 ], [ -72.24126, 41.119480000000152 ], [ -71.944999999999823, 40.93 ], [ -73.345, 40.63 ], [ -73.982, 40.628 ], [ -73.952325, 40.75075 ], [ -74.25671, 40.47351 ], [ -73.96244, 40.42763 ], [ -74.17838, 39.70926 ], [ -74.90604, 38.93954 ], [ -74.98041, 39.1964 ], [ -75.20002, 39.248450000000105 ], [ -75.52805, 39.4985 ], [ -75.32, 38.96 ], [ -75.071834764789799, 38.782032230179283 ], [ -75.05673, 38.40412000000012 ], [ -75.37747, 38.01551 ], [ -75.94023, 37.21689 ], [ -76.03127, 37.2566 ], [ -75.722049999999797, 37.937050000000113 ], [ -76.23287, 38.319215 ], [ -76.35, 39.15 ], [ -76.542725, 38.717615000000109 ], [ -76.32933, 38.08326 ], [ -76.989997931613544, 38.239991766913391 ], [ -76.30162, 37.917945 ], [ -76.25874, 36.966400000000107 ], [ -75.9718, 36.89726 ], [ -75.868039999999837, 36.55125 ], [ -75.72749, 35.550740000000133 ], [ -76.36318, 34.808540000000136 ], [ -77.397634999999894, 34.51201 ], [ -78.05496, 33.92547 ], [ -78.554349999999829, 33.861330000000123 ], [ -79.06067, 33.49395 ], [ -79.20357, 33.15839 ], [ -80.301325, 32.509355 ], [ -80.86498, 32.0333 ], [ -81.33629, 31.44049 ], [ -81.49042, 30.729990000000129 ], [ -81.31371, 30.035520000000105 ], [ -80.98, 29.180000000000121 ], [ -80.535584999999884, 28.47213 ], [ -80.529999999999802, 28.040000000000106 ], [ -80.056539284977561, 26.880000000000138 ], [ -80.088015, 26.205765 ], [ -80.131559999999865, 25.816775 ], [ -80.38103, 25.20616 ], [ -80.679999999999893, 25.08 ], [ -81.17213, 25.201260000000133 ], [ -81.33, 25.64 ], [ -81.709999999999809, 25.87 ], [ -82.24, 26.730000000000132 ], [ -82.70515, 27.49504 ], [ -82.85526, 27.88624 ], [ -82.65, 28.550000000000153 ], [ -82.929999999999893, 29.100000000000136 ], [ -83.70959, 29.93656 ], [ -84.1, 30.090000000000117 ], [ -85.10882, 29.63615 ], [ -85.28784, 29.68612000000013 ], [ -85.7731, 30.152610000000124 ], [ -86.399999999999892, 30.400000000000119 ], [ -87.53036, 30.27433 ], [ -88.41782, 30.3849 ], [ -89.18049, 30.31598 ], [ -89.593831178419777, 30.159994004836847 ], [ -89.413735, 29.89419 ], [ -89.43, 29.48864 ], [ -89.21767, 29.29108 ], [ -89.40823, 29.15961 ], [ -89.77928, 29.307140000000146 ], [ -90.15463, 29.11743 ], [ -90.880225, 29.148535000000123 ], [ -91.62678499999987, 29.677000000000135 ], [ -92.49906, 29.5523 ], [ -93.22637, 29.78375 ], [ -93.84842, 29.71363 ], [ -94.69, 29.480000000000132 ], [ -95.60026, 28.73863 ], [ -96.59404, 28.30748 ], [ -97.139999999999816, 27.83 ], [ -97.37, 27.38 ], [ -97.379999999999882, 26.69 ], [ -97.33, 26.210000000000122 ], [ -97.139999999999816, 25.87 ], [ -97.529999999999887, 25.84 ], [ -98.24, 26.060000000000116 ], [ -99.019999999999882, 26.37 ], [ -99.3, 26.84 ], [ -99.519999999999868, 27.54 ], [ -100.11, 28.110000000000127 ], [ -100.45584, 28.696120000000121 ], [ -100.9576, 29.380710000000136 ], [ -101.6624, 29.77930000000012 ], [ -102.48, 29.76 ], [ -103.11, 28.97 ], [ -103.94, 29.27 ], [ -104.456969999999842, 29.57196 ], [ -104.70575, 30.12173 ], [ -105.03737, 30.64402 ], [ -105.63159, 31.08383000000012 ], [ -106.1429, 31.39995 ], [ -106.507589999999823, 31.75452 ], [ -108.24, 31.754853718166402 ], [ -108.24194, 31.34222 ], [ -109.035, 31.341940000000164 ], [ -111.02361, 31.33472 ], [ -113.30498, 32.03914 ], [ -114.815, 32.52528 ], [ -114.721389999999872, 32.72083 ], [ -115.99135, 32.612390000000147 ], [ -117.127759999999796, 32.53534 ], [ -117.295937691273892, 33.046224615203897 ], [ -117.944, 33.621236431201396 ], [ -118.410602275897503, 33.740909223124504 ], [ -118.519894822799714, 34.027781577575752 ], [ -119.081, 34.078 ], [ -119.438840642016686, 34.348477178284298 ], [ -120.36778, 34.44711 ], [ -120.62286, 34.60855 ], [ -120.74433, 35.156860000000108 ], [ -121.714569999999881, 36.16153 ], [ -122.54747, 37.551760000000115 ], [ -122.51201, 37.783390000000139 ], [ -122.95319, 38.113710000000111 ], [ -123.7272, 38.951660000000118 ], [ -123.86517, 39.766990000000135 ], [ -124.39807, 40.3132 ], [ -124.17886, 41.142020000000116 ], [ -124.2137, 41.999640000000142 ], [ -124.53284, 42.765990000000102 ], [ -124.14214, 43.70838 ], [ -124.020535, 44.615895 ], [ -123.89893, 45.52341 ], [ -124.079635, 46.86475 ], [ -124.39567, 47.72017000000011 ], [ -124.687210083007827, 48.184432983398551 ], [ -124.566101074218764, 48.379714965820398 ], [ -123.12, 48.04 ], [ -122.58736, 47.096 ], [ -122.34, 47.36 ], [ -122.5, 48.18 ], [ -122.84, 49.000000000000114 ], [ -120.0, 49.000000000000114 ], [ -117.03121, 49.000000000000114 ], [ -116.04818, 49.000000000000114 ], [ -113.0, 49.000000000000114 ], [ -110.049999999999841, 49.000000000000114 ], [ -107.05, 49.000000000000114 ], [ -104.04826, 48.99986 ], [ -100.65, 49.000000000000114 ], [ -97.228720000004728, 49.000700000000109 ], [ -95.159069509171957, 49.000000000000114 ], [ -95.15609, 49.38425 ], [ -94.81758, 49.38905 ] ] ], [ [ [ -153.006314053336894, 57.115842190165893 ], [ -154.005090298458128, 56.734676825581062 ], [ -154.516402757770095, 56.992748928446701 ], [ -154.670992804971149, 57.4611957871725 ], [ -153.762779507441479, 57.81657461204378 ], [ -153.228729417921102, 57.968968410872435 ], [ -152.564790615835136, 57.901427313866975 ], [ -152.14114722390633, 57.591058661521998 ], [ -153.006314053336894, 57.115842190165893 ] ] ], [ [ [ -165.579164191733582, 59.90998688418756 ], [ -166.192770148767266, 59.754440822988983 ], [ -166.848337368822001, 59.941406155020957 ], [ -167.455277066090076, 60.213069159579391 ], [ -166.467792121424623, 60.384169826897789 ], [ -165.674429694663672, 60.293606879306253 ], [ -165.579164191733582, 59.90998688418756 ] ] ], [ [ [ -171.731656867539414, 63.78251536727592 ], [ -171.114433560245232, 63.592191067144995 ], [ -170.491112433940714, 63.694975490973519 ], [ -169.682505459653584, 63.431115627691156 ], [ -168.68943946030069, 63.297506212000599 ], [ -168.771940884454608, 63.188598130945451 ], [ -169.529439867205042, 62.976931464277897 ], [ -170.290556200215974, 63.194437567794466 ], [ -170.671385667990876, 63.375821845138972 ], [ -171.55306311753867, 63.317789211675091 ], [ -171.791110602891195, 63.405845852300502 ], [ -171.731656867539414, 63.78251536727592 ] ] ], [ [ [ -155.06779029032424, 71.147776394323699 ], [ -154.344165208941234, 70.696408596470206 ], [ -153.90000627339262, 70.889988511835696 ], [ -152.210006069935304, 70.829992173944845 ], [ -152.270002407826155, 70.600006212029854 ], [ -150.739992438744537, 70.430016588005714 ], [ -149.720003018167517, 70.530010484490447 ], [ -147.613361579357075, 70.214034939241799 ], [ -145.689989800225305, 70.120009670686755 ], [ -144.920010959076421, 69.989991767040493 ], [ -143.589446180425199, 70.152514146598321 ], [ -142.072510348713422, 69.851938178172645 ], [ -140.98598752156073, 69.711998399526379 ], [ -140.985988329004897, 69.711998399526379 ], [ -140.992498752029405, 66.000028591568679 ], [ -140.997769748123147, 60.3063967962986 ], [ -140.012997816153103, 60.276837877027589 ], [ -139.039000420315858, 60.000007229240026 ], [ -138.34089, 59.56211000000016 ], [ -137.4525, 58.905000000000115 ], [ -136.4797200000001, 59.46389 ], [ -135.47583, 59.78778 ], [ -134.945, 59.270560000000131 ], [ -134.27111, 58.86111 ], [ -133.355548882207216, 58.410285142645165 ], [ -132.73042, 57.692890000000119 ], [ -131.707809999999881, 56.55212 ], [ -130.00778, 55.91583 ], [ -129.979994263358293, 55.284997870497222 ], [ -130.536110189467252, 54.802753404349403 ], [ -131.085818237972148, 55.178906155002039 ], [ -131.967211467142306, 55.497775580459063 ], [ -132.250010742859473, 56.369996242897457 ], [ -133.539181084356414, 57.178887437562139 ], [ -134.078062920296048, 58.12306753196691 ], [ -135.038211032279065, 58.187714748763938 ], [ -136.628062309954657, 58.212209377670462 ], [ -137.800006279686045, 58.499995429103791 ], [ -139.86778704141301, 59.537761542389148 ], [ -140.825273817133052, 59.727517401765084 ], [ -142.574443535564455, 60.084446519604995 ], [ -143.958880994879905, 59.999180406323404 ], [ -145.92555681682785, 60.458609727614288 ], [ -147.114373949146682, 60.884656073644635 ], [ -148.224306200127671, 60.672989406977166 ], [ -148.018065558850765, 59.978328965893638 ], [ -148.570822516860886, 59.914172675203304 ], [ -149.727857835875881, 59.705658270905559 ], [ -150.60824337461645, 59.368211168039494 ], [ -151.716392788683322, 59.155821031319988 ], [ -151.859433153267162, 59.744984035879611 ], [ -151.409719001247197, 60.725802720779399 ], [ -150.346941494732533, 61.033587551509868 ], [ -150.621110806256979, 61.284424953854455 ], [ -151.895839199816862, 60.727197984451294 ], [ -152.578329841095609, 60.061657212964292 ], [ -154.019172126257615, 59.350279446034278 ], [ -153.287511359653195, 58.864727688219801 ], [ -154.232492438758499, 58.146373602930538 ], [ -155.307491421510235, 57.727794501366333 ], [ -156.30833472392311, 57.42277435976365 ], [ -156.556097378546326, 56.979984849670643 ], [ -158.117216559867757, 56.46360809999419 ], [ -158.433321296197164, 55.994153550838547 ], [ -159.603327399717443, 55.56668610292013 ], [ -160.289719611634212, 55.643580634170576 ], [ -161.223047655257801, 55.364734605523495 ], [ -162.237766079741078, 55.024186916720112 ], [ -163.069446581046407, 54.689737046927178 ], [ -164.785569221027203, 54.404173082082167 ], [ -164.942226325520039, 54.572224839895341 ], [ -163.848339606765677, 55.039431464246121 ], [ -162.870001390615926, 55.348043117893212 ], [ -161.804174974596037, 55.894986477270436 ], [ -160.563604702781163, 56.008054511125039 ], [ -160.070559862284512, 56.418055324928758 ], [ -158.684442918919444, 57.016675116597867 ], [ -158.461097378553973, 57.21692129172888 ], [ -157.722770352183886, 57.570000515363063 ], [ -157.550274421193592, 58.328326321030232 ], [ -157.041674974577006, 58.918884589261722 ], [ -158.194731208305484, 58.615802313869835 ], [ -158.517217984023091, 58.787781480537319 ], [ -159.058606126928737, 58.424186102931685 ], [ -159.711667040017346, 58.931390285876347 ], [ -159.981288825500201, 58.572549140041644 ], [ -160.355271165996527, 59.071123358793642 ], [ -161.355003425115058, 58.670837714260756 ], [ -161.96889360252635, 58.671664537177378 ], [ -162.054986538724677, 59.26692536074745 ], [ -161.874170702135359, 59.633621324290601 ], [ -162.518059048492091, 59.989723619213919 ], [ -163.818341437820152, 59.798055731843391 ], [ -164.662217577146464, 60.26748444278266 ], [ -165.346387702474829, 60.50749563256241 ], [ -165.350831875651863, 61.073895168697504 ], [ -166.121379157555964, 61.500019029376233 ], [ -165.734451870770528, 62.074996853271813 ], [ -164.919178636717845, 62.63307648380794 ], [ -164.562507901039368, 63.146378485763051 ], [ -163.753332485997021, 63.219448961023772 ], [ -163.067224494457889, 63.059458726648018 ], [ -162.260555386381725, 63.541935736741181 ], [ -161.534449836248598, 63.455816962326764 ], [ -160.772506680321129, 63.766108100023274 ], [ -160.958335130842556, 64.222798570402773 ], [ -161.518068407212212, 64.402787584075327 ], [ -160.777777676414757, 64.788603827566419 ], [ -161.391926235987626, 64.777235012462342 ], [ -162.453050096668846, 64.55944468856822 ], [ -162.757786017894091, 64.338605455168818 ], [ -163.546394212884309, 64.559160468190498 ], [ -164.96082984114517, 64.446945095468863 ], [ -166.425288255864501, 64.68667206487072 ], [ -166.845004238939055, 65.088895575614544 ], [ -168.110560065767174, 65.669997056736747 ], [ -166.705271166021959, 66.088317776139405 ], [ -164.474709642575505, 66.576660061297503 ], [ -163.652511766595666, 66.576660061297503 ], [ -163.788601651036174, 66.077207343196676 ], [ -161.67777442121016, 66.116119696712417 ], [ -162.489714525380009, 66.735565090595117 ], [ -163.719716966791111, 67.116394558370104 ], [ -164.43099138085654, 67.616338202577793 ], [ -165.39028683170676, 68.042772121850248 ], [ -166.764440680996017, 68.358876858179684 ], [ -166.204707404626618, 68.883030910916176 ], [ -164.430810513343488, 68.915535386827742 ], [ -163.168613654614518, 69.371114813912897 ], [ -162.930566169262022, 69.858061835399269 ], [ -161.908897264635527, 70.333329983187639 ], [ -160.934796515933698, 70.447689927849581 ], [ -159.039175788387155, 70.89164215766894 ], [ -158.119722866833968, 70.824721177851046 ], [ -156.580824551398052, 71.35776357694175 ], [ -155.06779029032424, 71.147776394323699 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0.000000, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0.000000, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0.000000, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "brk_group": null, "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Uzbekistan", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 3.000000, "mapcolor9": 5.000000, "mapcolor13": 4.000000, "pop_est": 27606007.000000, "gdp_md_est": 71670.000000, "pop_year": -99.000000, "lastcensus": 1989.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99.000000, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 4.000000, "tiny": 5.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.51860680528867, 37.362784328758792 ], [ 66.546150343700219, 37.974684963526869 ], [ 65.215998976507393, 38.4026950139843 ], [ 64.170223016216767, 38.892406724598246 ], [ 63.518014764261032, 39.363256537425642 ], [ 62.374260288345006, 40.053886216790389 ], [ 61.882714064384693, 41.084856879229406 ], [ 61.547178989513561, 41.266370347654615 ], [ 60.465952996670694, 41.220326646482548 ], [ 60.083340691981675, 41.425146185871405 ], [ 59.976422153569786, 42.223081976890207 ], [ 58.62901085799146, 42.751551011723052 ], [ 57.786529982337079, 42.170552883465518 ], [ 56.932215203687804, 41.826026109375604 ], [ 57.096391229079103, 41.322310085610567 ], [ 55.968191359282912, 41.308641669269363 ], [ 55.928917270741096, 44.995858466159113 ], [ 58.503127068928471, 45.586804307632832 ], [ 58.689989048095896, 45.500013739598629 ], [ 60.239971958258337, 44.784036770194732 ], [ 61.058319940032447, 44.405816962250512 ], [ 62.01330040878625, 43.504476630215649 ], [ 63.185786981056573, 43.650074978198006 ], [ 64.900824415959278, 43.728080552742583 ], [ 66.098012322865088, 42.997660020513095 ], [ 66.023391554635623, 41.994646307943981 ], [ 66.510648634715722, 41.987644151368443 ], [ 66.714047072216516, 41.1684435084615 ], [ 67.98585574735182, 41.13599070898222 ], [ 68.25989586779562, 40.662324530594901 ], [ 68.632482944620023, 40.668680731766813 ], [ 69.07002729683532, 41.38424428971237 ], [ 70.388964878220804, 42.081307684897453 ], [ 70.962314894499144, 42.266154283205495 ], [ 71.259247674448233, 42.167710679689463 ], [ 70.42002241402821, 41.519998277343142 ], [ 71.157858514291604, 41.143587144529121 ], [ 71.870114780570475, 41.392900092121266 ], [ 73.05541710804917, 40.866033026689465 ], [ 71.77487511585656, 40.145844428053778 ], [ 71.01419803252017, 40.244365546218233 ], [ 70.601406691372688, 40.218527330072291 ], [ 70.458159621059622, 40.496494859370287 ], [ 70.666622348925046, 40.960213324541414 ], [ 69.329494663372827, 40.727824408524853 ], [ 69.011632928345506, 40.086158148756667 ], [ 68.536416456989429, 39.533452867178937 ], [ 67.701428664017357, 39.580478420564532 ], [ 67.442219679641312, 39.140143541005486 ], [ 68.176025018185925, 38.901553453113905 ], [ 68.392032505165957, 38.157025254868742 ], [ 67.829999627559516, 37.144994004864685 ], [ 67.075782098259623, 37.356143907209287 ], [ 66.51860680528867, 37.362784328758792 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0.000000, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0.000000, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0.000000, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "brk_group": null, "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "note_adm0": null, "note_brk": null, "name_sort": "Venezuela, RB", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 3.000000, "mapcolor9": 1.000000, "mapcolor13": 4.000000, "pop_est": 26814843.000000, "gdp_md_est": 357400.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99.000000, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.331583624950298, 11.776284084515808 ], [ -71.360005662710819, 11.539993597861212 ], [ -71.947049933546509, 11.423282375530022 ], [ -71.620868292920193, 10.969459947142795 ], [ -71.633063930941091, 10.446494452349029 ], [ -72.074173956984509, 9.865651353388373 ], [ -71.695644090446535, 9.072263088411248 ], [ -71.264559292267734, 9.137194525585983 ], [ -71.03999935574339, 9.859992784052409 ], [ -71.350083787710787, 10.211935126176215 ], [ -71.400623338492238, 10.968969021036015 ], [ -70.155298834906517, 11.375481675660041 ], [ -70.29384334988103, 11.846822414594214 ], [ -69.943244594996827, 12.162307033736099 ], [ -69.584300096297468, 11.459610907431212 ], [ -68.882999233664449, 11.443384507691563 ], [ -68.23327145045873, 10.885744126829946 ], [ -68.194126552997631, 10.554653225135922 ], [ -67.296248541926332, 10.54586823164631 ], [ -66.227864142507997, 10.648626817258688 ], [ -65.655237596281751, 10.200798855017323 ], [ -64.89045223657817, 10.077214667191299 ], [ -64.329478725833738, 10.38959870039568 ], [ -64.318006557864948, 10.64141795495398 ], [ -63.079322475828732, 10.7017243514386 ], [ -61.880946010980196, 10.715625311725104 ], [ -62.730118984616411, 10.420268662960906 ], [ -62.388511928950976, 9.94820445397464 ], [ -61.58876746280194, 9.873066921422264 ], [ -60.830596686431718, 9.381339829948942 ], [ -60.671252407459733, 8.580174261911878 ], [ -60.15009558779618, 8.602756862823426 ], [ -59.758284878159195, 8.367034816924047 ], [ -60.5505879380582, 7.779602972846178 ], [ -60.637972785063766, 7.414999904810855 ], [ -60.295668097562398, 7.043911444522919 ], [ -60.543999192940987, 6.856584377464883 ], [ -61.159336310456482, 6.696077378766319 ], [ -61.139415045807951, 6.234296779806144 ], [ -61.410302903881956, 5.959068101419618 ], [ -60.733574184803722, 5.200277207861901 ], [ -60.601179165271944, 4.91809804933213 ], [ -60.966893276601539, 4.536467596856639 ], [ -62.085429653559132, 4.162123521334308 ], [ -62.804533047116706, 4.006965033377952 ], [ -63.093197597899106, 3.770571193858785 ], [ -63.888342861574159, 4.020530096854571 ], [ -64.628659430587547, 4.14848094320925 ], [ -64.816064012294021, 4.056445217297423 ], [ -64.368494432214106, 3.797210394705246 ], [ -64.408827887617917, 3.126786200366624 ], [ -64.269999152265797, 2.497005520025567 ], [ -63.422867397705119, 2.411067613124175 ], [ -63.368788011311665, 2.200899562993129 ], [ -64.083085496666087, 1.91636912679408 ], [ -64.199305792890513, 1.49285492594602 ], [ -64.611011928959869, 1.328730576987042 ], [ -65.354713304288367, 1.0952822941085 ], [ -65.548267381437569, 0.78925446207603 ], [ -66.325765143484958, 0.724452215982012 ], [ -66.87632585312258, 1.253360500489336 ], [ -67.18129431829307, 2.250638129074062 ], [ -67.447092047786313, 2.600280869960869 ], [ -67.809938117123707, 2.820655015469569 ], [ -67.303173183853445, 3.31845408773718 ], [ -67.337563849543685, 3.542342230641722 ], [ -67.621835903581285, 3.839481716319995 ], [ -67.823012254493548, 4.503937282728899 ], [ -67.744696621355217, 5.221128648291668 ], [ -67.521531948502755, 5.556870428891969 ], [ -67.341439581965574, 6.095468044454023 ], [ -67.695087246355016, 6.267318020040647 ], [ -68.26505245631823, 6.153268133972475 ], [ -68.985318569602356, 6.206804917826858 ], [ -69.389479946557117, 6.099860541198836 ], [ -70.093312954372422, 6.96037649172311 ], [ -70.674233567981517, 7.087784735538719 ], [ -71.960175747348643, 6.991614895043539 ], [ -72.198352423781884, 7.340430813013683 ], [ -72.444487270788073, 7.423784898300482 ], [ -72.479678921178845, 7.632506008327354 ], [ -72.360900641555972, 8.002638454617895 ], [ -72.439862230097958, 8.405275376820029 ], [ -72.660494757768106, 8.625287787302682 ], [ -72.788729824500393, 9.085027167187334 ], [ -73.304951544880055, 9.151999823437606 ], [ -73.027604132769568, 9.736770331252444 ], [ -72.905286017534706, 10.450344346554772 ], [ -72.614657762325209, 10.821975409381778 ], [ -72.227575446242938, 11.108702093953241 ], [ -71.973921678338286, 11.60867157637712 ], [ -71.331583624950298, 11.776284084515808 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0.000000, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0.000000, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0.000000, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "brk_group": null, "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Vietnam", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 6.000000, "mapcolor9": 5.000000, "mapcolor13": 4.000000, "pop_est": 86967524.000000, "gdp_md_est": 241700.000000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99.000000, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 5.000000, "tiny": 2.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.050180291782937, 21.552379869060118 ], [ 106.715067987090094, 20.696850694252021 ], [ 105.881682163519031, 19.752050482659698 ], [ 105.662005649846307, 19.05816518806057 ], [ 106.42681684776602, 18.004120998603227 ], [ 107.361953566519745, 16.697456569887052 ], [ 108.269495070429628, 16.079742336486149 ], [ 108.877106561317476, 15.27669057867044 ], [ 109.335269810017223, 13.426028347217724 ], [ 109.200135939573983, 11.666859239137764 ], [ 108.366129998815452, 11.008320624226272 ], [ 107.220928582795239, 10.364483954301832 ], [ 106.405112746203429, 9.530839748569321 ], [ 105.15826378786511, 8.599759629750494 ], [ 104.795185174582386, 9.241038316276502 ], [ 105.076201613385621, 9.918490505406808 ], [ 104.334334751403475, 10.48654368737523 ], [ 105.199914992292349, 10.889309800658097 ], [ 106.249670037869464, 10.961811835163587 ], [ 105.81052371625313, 11.567614650921229 ], [ 107.49140302941089, 12.337205918827948 ], [ 107.61454796756243, 13.535530707244206 ], [ 107.382727492301086, 14.202440904186972 ], [ 107.564525181103903, 15.202173163305559 ], [ 107.312705926545604, 15.908538316303179 ], [ 106.556007928495688, 16.604283962464805 ], [ 105.925762160264028, 17.485315456608959 ], [ 105.094598423281525, 18.66697459561108 ], [ 103.896532017026715, 19.265180975821806 ], [ 104.183387892678937, 19.624668077060221 ], [ 104.822573683697101, 19.886641750563882 ], [ 104.435000441508052, 20.758733221921531 ], [ 103.203861118586445, 20.766562201413748 ], [ 102.754896274834664, 21.675137233969465 ], [ 102.170435825613581, 22.464753119389304 ], [ 102.706992222100098, 22.708795070887675 ], [ 103.50451460166056, 22.703756618739209 ], [ 104.476858351664475, 22.819150092046968 ], [ 105.329209425886631, 23.352063300056912 ], [ 105.811247186305224, 22.976892401617903 ], [ 106.725403273548466, 22.794267889898421 ], [ 106.567273390735323, 22.218204860924772 ], [ 107.043420037872636, 21.811898912029914 ], [ 108.050180291782937, 21.552379869060118 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4.000000, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0.000000, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0.000000, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0.000000, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "brk_group": null, "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Vanuatu", "name_alt": null, "mapcolor7": 6.000000, "mapcolor8": 3.000000, "mapcolor9": 7.000000, "mapcolor13": 3.000000, "pop_est": 218519.000000, "gdp_md_est": 988.500000, "pop_year": -99.000000, "lastcensus": 2009.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99.000000, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": 2.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.844876743845106, -16.466333103097156 ], [ 167.515181105822904, -16.59784962327997 ], [ 167.18000776597782, -16.15999521247096 ], [ 167.216801385769628, -15.891846205308454 ], [ 167.844876743845106, -16.466333103097156 ] ] ], [ [ [ 167.107712437201513, -14.933920179913954 ], [ 167.270028111030257, -15.740020847234874 ], [ 167.001207310247963, -15.614602146062495 ], [ 166.793157993840879, -15.668810723536723 ], [ 166.649859247095577, -15.392703545801197 ], [ 166.629136997746485, -14.626497084209603 ], [ 167.107712437201513, -14.933920179913954 ] ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0.000000, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0.000000, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0.000000, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "brk_group": null, "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Yemen, Rep.", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 3.000000, "mapcolor9": 3.000000, "mapcolor13": 11.000000, "pop_est": 23822783.000000, "gdp_md_est": 55280.000000, "pop_year": -99.000000, "lastcensus": 2004.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99.000000, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5.000000, "long_len": 5.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.108572625547509, 16.651051133688952 ], [ 52.385205926325881, 16.382411200419654 ], [ 52.19172936382509, 15.93843313238402 ], [ 52.1681649107, 15.597420355689948 ], [ 51.172515089732485, 15.175249742081492 ], [ 49.57457645040315, 14.708766587782748 ], [ 48.679230584514158, 14.00320241948566 ], [ 48.238947381387419, 13.948089504446372 ], [ 47.938914015500785, 14.007233181204427 ], [ 47.354453566279716, 13.592219753468383 ], [ 46.717076450391744, 13.399699204965019 ], [ 45.877592807810267, 13.347764390511685 ], [ 45.625050083199881, 13.290946153206763 ], [ 45.406458774605255, 13.026905422411433 ], [ 45.144355910020863, 12.953938300015309 ], [ 44.989533318874415, 12.69958690027471 ], [ 44.494576450382851, 12.721652736863348 ], [ 44.175112745954493, 12.585950425664876 ], [ 43.482958611837127, 12.636800035040084 ], [ 43.222871128112132, 13.220950425667425 ], [ 43.25144819516953, 13.767583726450852 ], [ 43.087943963398061, 14.062630316621309 ], [ 42.892245314308724, 14.802249253798749 ], [ 42.60487267433362, 15.213335272680595 ], [ 42.805015496600049, 15.261962795467255 ], [ 42.702437778500659, 15.718885809791999 ], [ 42.823670688657415, 15.911742255105267 ], [ 42.77933230975097, 16.347891343648683 ], [ 43.218375278502748, 16.66688996018641 ], [ 43.115797560403358, 17.088440456607373 ], [ 43.380794305196105, 17.579986680567671 ], [ 43.791518589051918, 17.319976711491108 ], [ 44.062613152855079, 17.410358791569593 ], [ 45.216651238797191, 17.433328965723334 ], [ 45.399999220568759, 17.333335069238558 ], [ 46.366658563020536, 17.233315334537636 ], [ 46.749994337761649, 17.283338120996177 ], [ 47.000004917189756, 16.949999294497445 ], [ 47.466694777217633, 17.116681626854884 ], [ 48.183343540241339, 18.166669216377315 ], [ 49.116671583864871, 18.616667588774945 ], [ 52.000009800022241, 19.000003363516058 ], [ 52.782184279192052, 17.349742336491232 ], [ 53.108572625547509, 16.651051133688952 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2.000000, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0.000000, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0.000000, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0.000000, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "brk_group": null, "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "South Africa", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 3.000000, "mapcolor9": 4.000000, "mapcolor13": 2.000000, "pop_est": 49052489.000000, "gdp_md_est": 491000.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99.000000, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12.000000, "long_len": 12.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.521001417778876, -29.257386976846256 ], [ 31.325561150851001, -29.401977634398914 ], [ 30.901762729625347, -29.909956963828037 ], [ 30.622813348113819, -30.423775730106129 ], [ 30.055716180142781, -31.140269463832958 ], [ 28.925552605919538, -32.172041110972501 ], [ 28.2197558936771, -32.771952813448856 ], [ 27.464608188595975, -33.226963799778801 ], [ 26.419452345492825, -33.614950453426189 ], [ 25.909664340933489, -33.667040297176399 ], [ 25.780628289500697, -33.944646091448341 ], [ 25.172861769315972, -33.796851495093584 ], [ 24.677853224392123, -33.987175795224552 ], [ 23.594043409934642, -33.794474379208154 ], [ 22.988188917744736, -33.916430759416983 ], [ 22.574157342222236, -33.864082533505311 ], [ 21.542799106541025, -34.258838799782936 ], [ 20.689052768647002, -34.417175388325234 ], [ 20.071261020597632, -34.795136814107991 ], [ 19.616405063564571, -34.819166355123713 ], [ 19.193278435958717, -34.462598972309792 ], [ 18.85531456876987, -34.444305515278465 ], [ 18.42464318204938, -33.99787281670897 ], [ 18.377410922934615, -34.136520684548067 ], [ 18.24449913907992, -33.86775156019803 ], [ 18.250080193767445, -33.281430759414441 ], [ 17.925190463948439, -32.611290785453427 ], [ 18.247909783611192, -32.42913136162457 ], [ 18.221761508871481, -31.661632989225669 ], [ 17.566917758868868, -30.725721123987547 ], [ 17.064416131262703, -29.878641045859162 ], [ 17.062917514726223, -29.875953871379984 ], [ 16.344976840895242, -28.576705010697701 ], [ 16.824017368240902, -28.08216155366447 ], [ 17.218928663815404, -28.355943291946812 ], [ 17.387497185951503, -28.783514092729781 ], [ 17.83615197110953, -28.856377862261319 ], [ 18.464899122804752, -29.045461928017279 ], [ 19.002127312911085, -28.972443129188868 ], [ 19.894734327888614, -28.461104831660776 ], [ 19.895767856534434, -24.767790215760591 ], [ 20.165725538827189, -24.917961928000771 ], [ 20.758609246511838, -25.86813648855145 ], [ 20.66647016773544, -26.477453301704923 ], [ 20.889609002371738, -26.828542982695915 ], [ 21.605896030369394, -26.726533705351756 ], [ 22.105968865657868, -26.280256036079138 ], [ 22.579531691180591, -25.979447523708146 ], [ 22.824271274514899, -25.500458672794771 ], [ 23.312096795350186, -25.26868987396572 ], [ 23.73356977712271, -25.390129489851617 ], [ 24.211266717228796, -25.670215752873574 ], [ 25.025170525825786, -25.719670098576898 ], [ 25.664666375437719, -25.486816094669713 ], [ 25.76584882986521, -25.174845472923678 ], [ 25.941652052522159, -24.696373386333221 ], [ 26.485753208123299, -24.616326592713104 ], [ 26.786406691197413, -24.240690606383485 ], [ 27.119409620886245, -23.574323011979775 ], [ 28.017235955525251, -22.827753594659079 ], [ 29.43218834810904, -22.091312758067588 ], [ 29.839036899542972, -22.102216485281176 ], [ 30.322883335091774, -22.271611830333935 ], [ 30.65986535006709, -22.151567478119915 ], [ 31.191409132621288, -22.251509698172399 ], [ 31.670397983534656, -23.658969008073864 ], [ 31.930588820124253, -24.369416599222539 ], [ 31.752408481581881, -25.484283949487413 ], [ 31.83777794772806, -25.843331801051349 ], [ 31.333157586397903, -25.66019052500895 ], [ 31.044079624157149, -25.731452325139443 ], [ 30.949666782359913, -26.022649021104151 ], [ 30.67660851412964, -26.398078301704608 ], [ 30.68596194837448, -26.743845310169533 ], [ 31.282773064913329, -27.285879408478998 ], [ 31.86806033705108, -27.177927341421277 ], [ 32.071665480281069, -26.733820082304909 ], [ 32.830120477028885, -26.742191664336197 ], [ 32.580264926897684, -27.470157566031816 ], [ 32.462132602678452, -28.301011244420557 ], [ 32.203388706193039, -28.752404880490069 ], [ 31.521001417778876, -29.257386976846256 ] ], [ [ 28.978262566857243, -28.955596612261711 ], [ 28.541700066855498, -28.647501722937569 ], [ 28.074338413207784, -28.851468601193588 ], [ 27.532511020627478, -29.24271087007536 ], [ 26.999261915807637, -29.875953871379984 ], [ 27.749397006956485, -30.645105889612225 ], [ 28.107204624145425, -30.545732110314951 ], [ 28.29106937023991, -30.2262167294543 ], [ 28.848399692507741, -30.070050551068256 ], [ 29.018415154748027, -29.743765557577369 ], [ 29.325166456832591, -29.257386976846256 ], [ 28.978262566857243, -28.955596612261711 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0.000000, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0.000000, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0.000000, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "brk_group": null, "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Zambia", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 8.000000, "mapcolor9": 5.000000, "mapcolor13": 13.000000, "pop_est": 11862740.000000, "gdp_md_est": 17500.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99.000000, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 6.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.759375441221323, -9.23059905358906 ], [ 33.231387973775298, -9.676721693564801 ], [ 33.485687697083591, -10.525558770391115 ], [ 33.315310499817286, -10.796549981329697 ], [ 33.114289178201915, -11.607198174692314 ], [ 33.306422153463075, -12.435778090060218 ], [ 32.991764357237884, -12.783870537978274 ], [ 32.688165317523129, -13.712857761289277 ], [ 33.214024692525214, -13.971860039936153 ], [ 30.17948123548183, -14.796099134991529 ], [ 30.27425581230511, -15.507786960515213 ], [ 29.516834344203147, -15.644677829656388 ], [ 28.947463413211267, -16.04305144619444 ], [ 28.825868768028499, -16.389748630440614 ], [ 28.467906121542683, -16.468400160388846 ], [ 27.59824344250276, -17.290830580314008 ], [ 27.044427117630732, -17.938026218337434 ], [ 26.70677330903564, -17.961228936436484 ], [ 26.381935255648926, -17.846042168857899 ], [ 25.264225701608012, -17.736539808831417 ], [ 25.084443393664571, -17.661815687737374 ], [ 25.076950310982259, -17.578823337476621 ], [ 24.682349074001507, -17.353410739819473 ], [ 24.033861525170778, -17.295843194246324 ], [ 23.215048455506064, -17.523116143465984 ], [ 22.562478468524262, -16.898451429921813 ], [ 21.887842644953874, -16.08031015387688 ], [ 21.933886346125917, -12.898437188369359 ], [ 24.016136508894675, -12.911046237848574 ], [ 23.930922072045377, -12.565847670138856 ], [ 24.079905226342845, -12.191296888887365 ], [ 23.904153680118185, -11.722281589406322 ], [ 24.017893507592589, -11.23729827234709 ], [ 23.912215203555718, -10.926826267137514 ], [ 24.257155389103989, -10.951992689663657 ], [ 24.314516228947952, -11.26282642989927 ], [ 24.783169793402951, -11.238693536018964 ], [ 25.418118116973204, -11.330935967659961 ], [ 25.752309604604733, -11.784965101776358 ], [ 26.553087599399618, -11.924439792532127 ], [ 27.164419793412463, -11.608748467661075 ], [ 27.388798862423783, -12.132747491100666 ], [ 28.155108676879987, -12.272480564017897 ], [ 28.523561639121027, -12.698604424696683 ], [ 28.934285922976837, -13.248958428605135 ], [ 29.699613885219492, -13.257226657771831 ], [ 29.61600141777123, -12.178894545137311 ], [ 29.34154788586909, -12.360743910372413 ], [ 28.642417433392353, -11.971568698782315 ], [ 28.372253045370428, -11.793646742401393 ], [ 28.49606977714177, -10.789883721564046 ], [ 28.673681674928929, -9.605924981324932 ], [ 28.449871046672826, -9.164918308146085 ], [ 28.734866570762502, -8.526559340044578 ], [ 29.00291222506047, -8.407031752153472 ], [ 30.346086053190817, -8.238256524288218 ], [ 30.740015496551791, -8.340007419470915 ], [ 31.157751336950049, -8.594578747317366 ], [ 31.556348097466497, -8.762048841998642 ], [ 32.19186486179197, -8.930358981973278 ], [ 32.759375441221323, -9.23059905358906 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3.000000, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0.000000, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0.000000, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0.000000, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "brk_group": null, "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Zimbabwe", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 5.000000, "mapcolor9": 3.000000, "mapcolor13": 9.000000, "pop_est": 12619600.000000, "gdp_md_est": 9323.000000, "pop_year": 0.000000, "lastcensus": 2002.000000, "gdp_year": 0.000000, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99.000000, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.191409132621288, -22.251509698172399 ], [ 30.65986535006709, -22.151567478119915 ], [ 30.322883335091774, -22.271611830333935 ], [ 29.839036899542972, -22.102216485281176 ], [ 29.43218834810904, -22.091312758067588 ], [ 28.794656202924216, -21.639454034107452 ], [ 28.021370070108617, -21.485975030200585 ], [ 27.727227817503259, -20.851801853114715 ], [ 27.724747348753255, -20.499058526290391 ], [ 27.296504754350508, -20.391519870690999 ], [ 26.164790887158485, -19.293085625894939 ], [ 25.850391473094732, -18.714412937090536 ], [ 25.649163445750162, -18.536025892818991 ], [ 25.264225701608012, -17.736539808831417 ], [ 26.381935255648926, -17.846042168857899 ], [ 26.70677330903564, -17.961228936436484 ], [ 27.044427117630732, -17.938026218337434 ], [ 27.59824344250276, -17.290830580314008 ], [ 28.467906121542683, -16.468400160388846 ], [ 28.825868768028499, -16.389748630440614 ], [ 28.947463413211267, -16.04305144619444 ], [ 29.516834344203147, -15.644677829656388 ], [ 30.27425581230511, -15.507786960515213 ], [ 30.338954705534544, -15.880839125230246 ], [ 31.17306399915768, -15.860943698797874 ], [ 31.636498243951195, -16.071990248277885 ], [ 31.852040643040599, -16.319417006091378 ], [ 32.328238966610229, -16.392074069893752 ], [ 32.847638787575846, -16.713398125884616 ], [ 32.849860874164392, -17.979057305577179 ], [ 32.654885695127149, -18.672089939043495 ], [ 32.611994256324891, -19.419382826416275 ], [ 32.772707960752626, -19.715592136313298 ], [ 32.65974327976258, -20.304290052982317 ], [ 32.508693068173443, -20.395292250248307 ], [ 32.244988234188014, -21.116488539313693 ], [ 31.191409132621288, -22.251509698172399 ] ] ] } } ] } ================================================ FILE: test/fixtures/zero.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [ 0, 0 ], [ 0, 1 ], [ 1, 1 ], [ 1, 0 ], [ 0, 0 ] ] ] } ================================================ FILE: test/fixtures/zero_out.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, -0.35156029 ], [ 0, 0 ], [ 0.3515625, 0 ], [ 0.3515625, -0.35156029 ], [ 0, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 0 ], [ 0, 0.35156029 ], [ 0.3515625, 0.35156029 ], [ 0.3515625, 0 ], [ 0, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 0.35156029 ], [ 0, 0.70310735 ], [ 0.3515625, 0.70310735 ], [ 0.3515625, 0.35156029 ], [ 0, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 0.70310735 ], [ 0, 1.05462794 ], [ 0.3515625, 1.05462794 ], [ 0.3515625, 0.70310735 ], [ 0, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.3515625, -0.35156029 ], [ 0.3515625, 0 ], [ 0.703125, 0 ], [ 0.703125, -0.35156029 ], [ 0.3515625, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.3515625, 0 ], [ 0.3515625, 0.35156029 ], [ 0.703125, 0.35156029 ], [ 0.703125, 0 ], [ 0.3515625, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.3515625, 0.35156029 ], [ 0.3515625, 0.70310735 ], [ 0.703125, 0.70310735 ], [ 0.703125, 0.35156029 ], [ 0.3515625, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.3515625, 0.70310735 ], [ 0.3515625, 1.05462794 ], [ 0.703125, 1.05462794 ], [ 0.703125, 0.70310735 ], [ 0.3515625, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, -0.35156029 ], [ 0.703125, 0 ], [ 1.0546875, 0 ], [ 1.0546875, -0.35156029 ], [ 0.703125, -0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 0 ], [ 0.703125, 0.35156029 ], [ 1.0546875, 0.35156029 ], [ 1.0546875, 0 ], [ 0.703125, 0 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 0.35156029 ], [ 0.703125, 0.70310735 ], [ 1.0546875, 0.70310735 ], [ 1.0546875, 0.35156029 ], [ 0.703125, 0.35156029 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 0.70310735 ], [ 0.703125, 1.05462794 ], [ 1.0546875, 1.05462794 ], [ 1.0546875, 0.70310735 ], [ 0.703125, 0.70310735 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 0, 0 ], [ 0, 1 ], [ 1, 1 ], [ 1, 0 ], [ 0, 0 ] ] ] }, "properties": { "name": "original", "stroke": "#f44", "fill": "#f44" } } ] } ================================================ FILE: test/test.js ================================================ 'use strict'; var cover = require('../'), test = require('tape'), intersect = require('@turf/intersect'), union = require('@turf/union'), erase = require('@turf/difference'), area = require('@turf/area'), fs = require('fs'), path = require('path'); var REGEN = process.env.REGEN; test('point', function (t) { var point = { 'type': 'Feature', 'properties': {}, 'geometry': { 'type': 'Point', 'coordinates': [ 79.08096313476562, 21.135184856708992 ] } }; var limits = { min_zoom: 1, max_zoom: 15 }; t.ok(cover.geojson(point.geometry, limits), 'point geojson'); t.ok(cover.tiles(point.geometry, limits).length, 'point tiles'); t.ok(cover.indexes(point.geometry, limits).length, 'point indexes'); t.notEqual(cover.indexes(point.geometry, limits)[0], ''); t.equal(typeof cover.tiles(point.geometry, limits)[0][0], 'number'); t.equal(typeof cover.tiles(point.geometry, limits)[0][1], 'number'); t.equal(typeof cover.tiles(point.geometry, limits)[0][2], 'number'); compareFixture(t, point.geometry, limits, path.join(__dirname, '/fixtures/point_out.geojson')); verifyCover(t, point.geometry, limits); t.end(); }); test('line', function (t) { var line = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/line.geojson'))); var limits = { min_zoom: 1, max_zoom: 12 }; t.ok(cover.geojson(line.geometry, limits), 'line geojson'); t.ok(cover.tiles(line.geometry, limits).length, 'line tiles'); t.ok(cover.indexes(line.geometry, limits).length, 'line indexes'); compareFixture(t, line.geometry, limits, path.join(__dirname, '/fixtures/line_out.geojson')); verifyCover(t, line.geometry, limits); t.end(); }); test('edgeline', function (t) { var line = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/edgeline.geojson'))); var limits = { min_zoom: 14, max_zoom: 14 }; t.ok(cover.geojson(line.geometry, limits), 'edgeline geojson'); t.deepEqual(cover.tiles(line.geometry, limits), [[4543, 6612, 14], [4544, 6612, 14]], 'edgeline tiles'); t.deepEqual(cover.indexes(line.geometry, limits).length, 2, 'edgeline indexes'); compareFixture(t, line.geometry, limits, path.join(__dirname, '/fixtures/edgeline_out.geojson')); verifyCover(t, line.geometry, limits); t.end(); }); test('polygon', function (t) { var polygon = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/polygon.geojson'))); var limits = { min_zoom: 1, max_zoom: 15 }; t.ok(cover.geojson(polygon, limits), 'polygon geojson'); t.ok(cover.tiles(polygon, limits).length, 'polygon tiles'); t.ok(cover.indexes(polygon, limits).length, 'polygon indexes'); compareFixture(t, polygon, limits, path.join(__dirname, '/fixtures/polygon_out.geojson')); verifyCover(t, polygon, limits); t.end(); }); test('multipoint', function (t) { var multipoint = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/multipoint.geojson'))); var limits = { min_zoom: 1, max_zoom: 12 }; t.ok(cover.geojson(multipoint.geometry, limits), 'multipoint geojson'); t.ok(cover.tiles(multipoint.geometry, limits).length, 'multipoint tiles'); t.ok(cover.indexes(multipoint.geometry, limits).length, 'multipoint indexes'); t.notEqual(cover.indexes(multipoint.geometry, limits)[0], ''); t.equal(cover.tiles(multipoint.geometry, limits).length, 4); t.equal(cover.indexes(multipoint.geometry, limits).length, 4); t.equal(cover.geojson(multipoint.geometry, limits).features.length, 4); t.equal(typeof cover.tiles(multipoint.geometry, limits)[0][0], 'number'); t.equal(typeof cover.tiles(multipoint.geometry, limits)[0][1], 'number'); t.equal(typeof cover.tiles(multipoint.geometry, limits)[0][2], 'number'); compareFixture(t, multipoint.geometry, limits, path.join(__dirname, '/fixtures/multipoint_out.geojson')); verifyCover(t, multipoint.geometry, limits); t.end(); }); test('multiline', function (t) { var multiline = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/multiline.geojson'))); var limits = { min_zoom: 1, max_zoom: 8 }; t.ok(cover.geojson(multiline.geometry, limits), 'multiline geojson'); t.ok(cover.tiles(multiline.geometry, limits).length, 'multiline tiles'); t.ok(cover.indexes(multiline.geometry, limits).length, 'multiline indexes'); t.notEqual(cover.indexes(multiline.geometry, limits)[0], ''); t.equal(cover.tiles(multiline.geometry, limits).length, 20); t.equal(cover.indexes(multiline.geometry, limits).length, 20); t.equal(cover.geojson(multiline.geometry, limits).features.length, 20); t.equal(typeof cover.tiles(multiline.geometry, limits)[0][0], 'number'); t.equal(typeof cover.tiles(multiline.geometry, limits)[0][1], 'number'); t.equal(typeof cover.tiles(multiline.geometry, limits)[0][2], 'number'); compareFixture(t, multiline.geometry, limits, path.join(__dirname, '/fixtures/multiline_out.geojson')); verifyCover(t, multiline.geometry, limits); t.end(); }); test('uk', function (t) { var uk = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/uk.geojson'))); var limits = { min_zoom: 7, max_zoom: 9 }; t.ok(cover.geojson(uk.geometry, limits), 'uk geojson'); t.ok(cover.tiles(uk.geometry, limits).length, 'uk tiles'); t.ok(cover.indexes(uk.geometry, limits).length, 'uk indexes'); compareFixture(t, uk.geometry, limits, path.join(__dirname, '/fixtures/uk_out.geojson')); verifyCover(t, uk.geometry, limits); t.end(); }); test('building', function (t) { var building = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/building.geojson'))); var limits = { min_zoom: 18, max_zoom: 18 }; t.ok(cover.geojson(building, limits), 'building geojson'); t.ok(cover.tiles(building, limits).length, 'building tiles'); t.ok(cover.indexes(building, limits).length, 'building indexes'); compareFixture(t, building, limits, path.join(__dirname, '/fixtures/building_out.geojson')); verifyCover(t, building, limits); t.end(); }); test('donut', function (t) { var fixture = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/donut.geojson'))); var limits = { min_zoom: 16, max_zoom: 16 }; t.ok(cover.geojson(fixture, limits), 'donut geojson'); t.ok(cover.tiles(fixture, limits).length, 'donut tiles'); t.ok(cover.indexes(fixture, limits).length, 'donut indexes'); compareFixture(t, fixture, limits, path.join(__dirname, '/fixtures/donut_out.geojson')); verifyCover(t, fixture, limits); t.end(); }); test('russia', function (t) { var russia = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/russia.geojson'))); var limits = { min_zoom: 6, max_zoom: 6 }; t.ok(cover.geojson(russia, limits), 'russia geojson'); t.ok(cover.tiles(russia, limits).length, 'russia tiles'); t.ok(cover.indexes(russia, limits).length, 'russia indexes'); t.equal(cover.indexes(russia, limits).length, 259); compareFixture(t, russia, limits, path.join(__dirname, '/fixtures/russia_out.geojson')); verifyCover(t, russia, limits); t.end(); }); test('degenerate ring', function (t) { var fixture = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/degenring.geojson'))); var limits = { min_zoom: 11, max_zoom: 15 }; t.ok(cover.geojson(fixture, limits), 'geojson'); t.ok(cover.tiles(fixture, limits).length, 'tiles'); t.ok(cover.indexes(fixture, limits).length, 'indexes'); compareFixture(t, fixture, limits, path.join(__dirname, '/fixtures/degenring_out.geojson')); verifyCover(t, fixture, limits); t.end(); }); test('invalid polygon --- hourglass', function (t) { var invalid = { 'type': 'Polygon', 'coordinates': [ [ [ -12.034835815429688, 8.901183448260598 ], [ -12.060413360595701, 8.899826693726117 ], [ -12.036380767822266, 8.873199368734273 ], [ -12.059383392333983, 8.871418491385919 ], [ -12.034835815429688, 8.901183448260598 ] ] ] }; var limits = { min_zoom: 1, max_zoom: 12 }; try { cover.tiles(invalid, limits); } catch (err) { t.equal(err.toString(), 'Error: found non-noded intersection between LINESTRING ( -12.060413360595701 8.899826693726117, -12.036380767822266 8.873199368734273 ) and LINESTRING ( -12.059383392333983 8.871418491385919, -12.034835815429688 8.901183448260598 ) [ (-12.047632938440815, 8.885666404927512) ]'); } t.end(); }); test('high zoom', function (t) { var building = {'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-77.04474940896034, 38.90019399459534], [-77.04473063349724, 38.90019399459534], [-77.04473063349724, 38.90027122854152], [-77.04474672675133, 38.900273315944304], [-77.04474672675133, 38.900457007149065], [-77.04394474625587, 38.90017520794709], [-77.04394206404686, 38.900173120541425], [-77.04384550452232, 38.9001710331357], [-77.04384550452232, 38.900141809449025], [-77.04365238547325, 38.90007501240577], [-77.04365238547325, 38.89989340762676], [-77.04371139407158, 38.899916369176196], [-77.04371139407158, 38.89986209641103], [-77.04369261860847, 38.89986209641103], [-77.04369261860847, 38.89969927786663], [-77.04452946782112, 38.89969719044697], [-77.04460456967354, 38.89967214140626], [-77.04460725188255, 38.89969510302724], [-77.04474672675133, 38.89969719044697], [-77.04474940896034, 38.90019399459534], [-77.04474940896034, 38.90019399459534], [-77.04474940896034, 38.90019399459534]]]}, 'properties': {'osm_id': 0}}; building = building.geometry; var limits = { min_zoom: 23, max_zoom: 23 }; t.ok(cover.geojson(building, limits), 'building geojson'); t.ok(cover.tiles(building, limits).length, 'building tiles'); t.ok(cover.indexes(building, limits).length, 'building indexes'); compareFixture(t, building, limits, path.join(__dirname, '/fixtures/highzoom_out.geojson')); verifyCover(t, building, limits); t.end(); }); test('small polygon', function (t) { var building = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/small_poly.geojson'))); var limits = { min_zoom: 10, max_zoom: 10 }; t.ok(cover.geojson(building, limits), 'small_poly geojson'); t.ok(cover.tiles(building, limits).length, 'small_poly tiles'); t.ok(cover.indexes(building, limits).length, 'small_poly indexes'); compareFixture(t, building, limits, path.join(__dirname, '/fixtures/small_poly_out.geojson')); verifyCover(t, building, limits); t.end(); }); test('spiked polygon', function (t) { var spiked = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/spiked.geojson'))); var limits = { min_zoom: 10, max_zoom: 10 }; t.ok(cover.geojson(spiked, limits), 'spiked geojson'); t.ok(cover.tiles(spiked, limits).length, 'spiked tiles'); t.ok(cover.indexes(spiked, limits).length, 'spiked indexes'); compareFixture(t, spiked, limits, path.join(__dirname, '/fixtures/spiked_out.geojson')); verifyCover(t, spiked, limits); t.end(); }); test('blocky polygon', function (t) { var blocky = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/blocky.geojson'))); var limits = { min_zoom: 6, max_zoom: 6 }; t.ok(cover.geojson(blocky, limits), 'blocky geojson'); t.ok(cover.tiles(blocky, limits).length, 'blocky tiles'); t.equal(cover.indexes(blocky, limits).length, 31, 'blocky indexes'); compareFixture(t, blocky, limits, path.join(__dirname, '/fixtures/blocky_out.geojson')); verifyCover(t, blocky, limits); t.end(); }); test('pyramid polygon', function (t) { var pyramid = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/pyramid.geojson'))); var limits = { min_zoom: 10, max_zoom: 10 }; t.ok(cover.geojson(pyramid, limits), 'pyramid geojson'); t.ok(cover.tiles(pyramid, limits).length, 'pyramid tiles'); compareFixture(t, pyramid, limits, path.join(__dirname, '/fixtures/pyramid_out.geojson')); verifyCover(t, pyramid, limits); t.end(); }); test('tetris polygon', function (t) { var tetris = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/tetris.geojson'))); var limits = { min_zoom: 10, max_zoom: 10 }; t.ok(cover.geojson(tetris, limits), 'tetris geojson'); t.ok(cover.tiles(tetris, limits).length, 'tetris tiles'); compareFixture(t, tetris, limits, path.join(__dirname, '/fixtures/tetris_out.geojson')); verifyCover(t, tetris, limits); t.end(); }); test('0,0 polygon', function (t) { var zero = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/zero.geojson'))); var limits = { min_zoom: 10, max_zoom: 10 }; t.ok(cover.geojson(zero, limits), '0,0 geojson'); t.ok(cover.tiles(zero, limits).length, '0,0 tiles'); compareFixture(t, zero, limits, path.join(__dirname, '/fixtures/zero_out.geojson')); verifyCover(t, zero, limits); t.end(); }); function compareFixture(t, geom, limits, filepath) { var result = cover.geojson(geom, limits); result.features.push({ type: 'Feature', geometry: geom, properties: {name: 'original', stroke: '#f44', fill: '#f44'} }); // Sort features to ensure changes such that changes to tile cover // order is not considered significant. result.features.sort(function (a, b) { if (a.properties.name === 'original') return 1; if (b.properties.name === 'original') return -1; return a.geometry.coordinates[0][0] < b.geometry.coordinates[0][0] ? -1 : a.geometry.coordinates[0][0] > b.geometry.coordinates[0][0] ? 1 : a.geometry.coordinates[0][1] < b.geometry.coordinates[0][1] ? -1 : a.geometry.coordinates[0][1] > b.geometry.coordinates[0][1] ? 1 : 0; }); if (REGEN) fs.writeFileSync(filepath, JSON.stringify(result, roundify, 2)); var expected = JSON.parse(JSON.stringify(JSON.parse(fs.readFileSync(filepath)), roundify, 2)); // Skip the massive deepEquals diff if feature length is not the same. if (result.features.length !== expected.features.length) { t.equal(result.features.length, expected.features.length); } else { t.deepEqual(JSON.parse(JSON.stringify(result, roundify, 2)), expected); } } function roundify(key, val) { if (typeof val !== 'number') return val; return parseFloat(val.toFixed(8)); } function verifyCover(t, geom, limits) { var tiles = cover.geojson(geom, limits); // every tile should have something inside of it var emptyTile = false; tiles.features.forEach(function (tile) { // 'tile' is one feature object var overlap = intersect(tile, geom); if (!overlap) emptyTile = true; }); if (emptyTile) console.warn('Empty tile found'); // there should be no geometry not covered by a tile var mergedTiles = tiles.features.reduce(function (merged, feature) { return union(merged, feature); }); var knockout = erase(geom, mergedTiles); if (knockout) { // get area of overflow in meters var uncoveredArea = area(knockout); if (uncoveredArea > 0.001) t.fail('geometry left uncovered by tiles'); } else t.pass('tile-cover covers geometry'); } ================================================ FILE: test/world.js ================================================ 'use strict'; var cover = require('../'); var test = require('tape'); var fs = require('fs'); var intersect = require('@turf/intersect'); var union = require('@turf/union'); var erase = require('@turf/difference'); var path = require('path'); var REGEN = process.env.REGEN; test('the world', function (t) { var countries = fs.readdirSync(path.join(__dirname, '/fixtures/world')); // filter output files countries = countries.filter(function (c) { return c.indexOf('_out') === -1; }); countries.forEach(function (countryName) { var country = JSON.parse(fs.readFileSync(path.join(__dirname, '/fixtures/world/' + countryName))); if (country.features.length > 1) throw new Error('Invalid country; more than 1 feature: ' + countryName); var limits = { min_zoom: 1, max_zoom: 6 }; var countryGeom = country.features[0].geometry; //just the geometry from the country featureCollection var countryCover = cover.geojson(countryGeom, limits); // returns a feature collection of tiles var countryTiles = countryCover.features; // t.ok(countryCover, 'Create a cover'); var emptyTile = false; countryTiles.forEach(function (tile) { // 'tile' is one feature object var overlap = intersect(tile, countryGeom); if (!overlap) emptyTile = true; }); if (emptyTile) console.warn('Empty tile not found'); var countryBlock = countryTiles.reduce(function (merged, feature) { return union(merged, feature); }); if (!countryBlock) t.fail('Tile merge failed'); var knockout = erase(country.features[0], countryBlock); t.deepEqual(knockout, null, 'Cover left no exposed geometry'); compareFixture(t, countryGeom, limits, path.join(__dirname, '/fixtures/world/' + countryName.split('.')[0] + '_out.geojson')); }); t.end(); }); function compareFixture(t, geom, limits, filepath) { var result = cover.geojson(geom, limits); result.features.push({ type: 'Feature', properties: {name: 'original', stroke: '#f44', fill: '#f44'}, geometry: geom }); // Sort features to ensure changes such that changes to tile cover // order is not considered significant. result.features.sort(function (a, b) { if (a.properties.name === 'original') return 1; if (b.properties.name === 'original') return -1; return a.geometry.coordinates[0][0] < b.geometry.coordinates[0][0] ? -1 : a.geometry.coordinates[0][0] > b.geometry.coordinates[0][0] ? 1 : a.geometry.coordinates[0][1] < b.geometry.coordinates[0][1] ? -1 : a.geometry.coordinates[0][1] > b.geometry.coordinates[0][1] ? 1 : 0; }); if (REGEN) fs.writeFileSync(filepath, JSON.stringify(result, roundify, 2)); var expected = JSON.parse(JSON.stringify(JSON.parse(fs.readFileSync(filepath)), roundify, 2)); // Skip the massive deepEquals diff if feature length is not the same. if (result.features.length !== expected.features.length) { t.equal(result.features.length, expected.features.length); } else { t.deepEqual(JSON.parse(JSON.stringify(result, roundify, 2)), expected); } } function roundify(key, val) { if (typeof val !== 'number') return val; return parseFloat(val.toFixed(8)); }